/* --- Variables --- */
:root {
    /* Branding Colors */
    --primary-bg: #0B1120;
    /* Deep Navy/Black */
    --secondary-bg: #111827;
    /* Secondary Dark */
    --card-bg: #1F2937;
    /* Card Background */
    --primary-blue: #1E3A8A;
    /* Action Blue */
    --accent-gold: #D4AF37;
    /* Gold Highlight */
    --success-green: #10B981;
    /* Success State */

    /* Text Colors */
    --text-main: #E5E7EB;
    /* White/Light Gray */
    --text-muted: #9CA3AF;
    /* Muted Gray */
    --text-dark: #111827;
    /* Dark Text (for light backgrounds if any) */

    /* Decoration */
    --border-subtle: #374151;
    --border-gold: rgba(212, 175, 55, 0.5);

    --container-width: 1200px;
    --header-height: 120px;
    --font-main: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-secondary {
    background-color: var(--secondary-bg);
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    color: var(--text-main);
    letter-spacing: -0.025em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 15px auto 0;
}

.section-title.section-title-no-border::after {
    display: none;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    /* More angular for premium feel */
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background-color: #B5932B;
    border-color: #B5932B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 105px;
    width: auto;
    transition: transform 0.3s ease;
    margin-right: 0;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.1;
    transition: color 0.3s ease;
    letter-spacing: 2px;
}

.logo-text-sub {
    font-size: 13px;
    font-weight: 400;
    color: #D4AF37;
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-transform: uppercase;
}

/* ===== Golden Contact Button ===== */
.btn-contact-gold {
    display: inline-block;
    background: #D4AF37;
    color: #0B1120;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
    border: none;
    letter-spacing: 0.5px;
}

.btn-contact-gold:hover {
    background: #F4E4C1;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: #0B1120;
}

/* ===== Phone Button (Gold Border) ===== */
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #D4AF37;
    border-radius: 6px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-phone:hover {
    background: #D4AF37;
    color: #0B1120;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo:hover .logo-text-main {
    color: #D4AF37;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    position: relative;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    background-color: var(--accent-gold);
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px 0;
}

/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(11, 17, 32, 0.45), rgba(11, 17, 32, 0.45)), url('images/hero-brisbane-skyline.jpg') no-repeat center center/cover;
    position: relative;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 800px;
}

.hero-label {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* --- Trust Bar --- */
.trust-bar {
    background-color: var(--secondary-bg);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-icon {
    margin-right: 12px;
    color: var(--accent-gold);
    width: 20px;
    height: 20px;
}

/* --- About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Profile Area */
.profile-wrapper {
    text-align: center;
    position: sticky;
    top: 150px;
    /* Adjusted for larger header */
}

.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #D4AF37, #F4E4C1) border-box;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
    margin-bottom: 20px;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 15px 0 8px;
    letter-spacing: 0.5px;
}

.profile-title {
    font-size: 16px;
    font-weight: 500;
    color: #D4AF37;
    margin: 0 0 8px;
    letter-spacing: 0.8px;
}

.profile-license {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4E4C1);
    margin: 15px 0 30px;
    border-radius: 2px;
}

.about-desc p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-desc strong {
    color: var(--text-main);
}

.about-list {
    margin-top: 2rem;
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-main);
}

.bullet-gold {
    color: #D4AF37;
    font-size: 0.8em;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Balanced 2x2 Grid */
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    /* Requested */
    padding: 40px;
    /* Increased padding (requested min 32px) */
    box-shadow: var(--shadow-md);
    /* Subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align content left */
    height: 100%;
    /* Consistent height */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.05);
    /* Glass Effect */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle Gold Border */
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-icon svg {
    /* Stroke is handled via HTML defs (#gold-gradient) */
    width: 36px;
    height: 36px;
    filter: drop-shadow(0px 4px 10px rgba(212, 175, 55, 0.2));
    /* Metal Luster */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover .service-icon {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.service-card:hover .service-icon svg {
    transform: scale(1.05);
    filter: drop-shadow(0px 4px 15px rgba(212, 175, 55, 0.4));
}

.section-quote {
    text-align: center;
    margin-top: 40px;
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 500;
    font-style: italic;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* --- Areas Section --- */
.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-wrapper {
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.areas-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.areas-list-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.area-column h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.area-column ul li {
    margin-bottom: 8px;
    color: var(--text-muted);
    padding-left: 15px;
    position: relative;
}

.area-column ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* --- Landlords Section --- */
.landlord-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.landlord-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
    display: inline-block;
}

.step-card {
    background: var(--card-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    border-left: 3px solid var(--accent-gold);
}

.step-card h5 {
    color: var(--text-main);
    margin-bottom: 5px;
    font-size: 1rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--text-main);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* --- Footer --- */
.footer {
    background-color: #000;
    padding: 40px 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--text-muted);
}

.footer-contact a {
    margin-left: 20px;
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .areas-content {
        grid-template-columns: 1fr;
    }

    .landlord-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .btn-contact-gold {
        padding: 10px 22px;
        font-size: 14px;
    }

    .phone-text {
        display: none;
        /* Icon only on tablet */
    }

    .btn-phone {
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {

    /* Mobile Header & Logo Optimization */
    .header {
        height: 70px;
    }

    .logo-img {
        height: 50px;
    }

    .logo-text-main {
        font-size: 18px;
    }

    .logo-text-sub {
        font-size: 11px;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        /* Matched to mobile header height */
        right: 0;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: var(--secondary-bg);
        flex-direction: column;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-left: 1px solid var(--border-subtle);
    }

    .nav.active .nav-list {
        transform: translateX(0);
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    /* Mobile Menu Buttons */
    .btn-contact-gold,
    .btn-phone {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .phone-text {
        display: inline;
        /* Show number on mobile menu */
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-wrapper {
        position: relative;
        top: 0;
    }

    .profile-image {
        width: 180px;
        height: 180px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .areas-content {
        grid-template-columns: 1fr;
    }
}

/* --- New Section Styles (Added for Content Update) --- */

/* Utilities */
.text-gold {
    color: var(--accent-gold);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Comparison Section */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.comparison-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    height: 100%;
}

.comparison-card.problem h3 {
    color: #f87171;
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(248, 113, 113, 0.2);
    padding-bottom: 15px;
}

.comparison-card.solution h3 {
    color: var(--success-green);
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding-bottom: 15px;
}

.comparison-card.solution {
    border-color: var(--accent-gold);
    background: linear-gradient(to bottom right, var(--card-bg), rgba(212, 175, 55, 0.08));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-card ul li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.comparison-card.solution ul li {
    color: var(--text-main);
    font-weight: 500;
}

/* Offer Section */
.offer-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #000;
    padding: 8px 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.offer-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    margin-top: 10px;
}

.offer-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.offer-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.check-gold {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.4rem;
}

.offer-note {
    font-size: 0.9rem !important;
    margin-top: 30px;
    margin-bottom: 0 !important;
    font-style: italic;
    opacity: 0.7;
}

/* Seamless Transition */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.step-column {
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    /* Match bg to hide line */
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.step-column h4 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.step-column p {
    color: var(--text-muted);
    line-height: 1.6;
}



/* Responsive adjustments */
@media (max-width: 900px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-card.solution {
        transform: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offer-details {
        flex-direction: column;
        gap: 15px;
    }

    .offer-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .offer-box {
        padding: 50px 20px;
    }

    .offer-box h2 {
        font-size: 1.8rem;
    }
}

/* --- Updated About Typography --- */
.modern-headline {
    font-weight: 800;
    /* Extra bold */
    letter-spacing: -0.04em;
    /* Tight spacing for modern feel */
    font-size: 2.8rem;
    /* Slightly larger */
    line-height: 1.1;
}

.extra-breathing-room {
    padding: 20px 0;
    /* Vertical breathing room */
}

.extra-breathing-room p {
    line-height: 2.0;
    /* Increased line-height for readability */
    margin-bottom: 2rem;
    /* More space between paragraphs */
    font-size: 1.1rem;
    /* Slightly larger text */
}

/* --- High-End CTA Section --- */
.cta-box {
    background: linear-gradient(135deg, #111827 0%, #1e3a8a 100%);
    border-radius: 8px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Update Services for floating icon look */
.service-icon {
    background: transparent !important;
    /* Override previous box */
    border-radius: 0 !important;
    padding: 0;
    justify-content: flex-start;
    /* Align left */
    width: auto;
    height: auto;
    margin-bottom: 30px;
}

.service-icon svg {
    width: 60px;
    /* Larger icon */
    height: 60px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    /* Float effect */
}

/* --- Logo Updates --- */
.logo-text {
    align-items: center;
    /* Center PROPERTY relative to Fortune Key */
    line-height: 1;
}

.logo-text-sub {
    font-size: 20px;
    /* Match Main Title */
    font-weight: 700;
    /* Match Main Title */
    color: #D4AF37;
    letter-spacing: 2px;
    /* Adjust to create block look */
    margin-top: 0;
    text-transform: uppercase;
}

/* --- Calculator Styles --- */
.rental-calculator {
    margin-top: 30px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect attempt or just dark card */
    background: var(--card-bg);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.calc-title {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.calc-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.calc-group {
    flex: 1;
}

.calc-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.calc-group input {
    width: 100%;
    background: var(--primary-bg);
    border: 1px solid var(--border-subtle);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
}

.calc-result {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    border: 1px dashed var(--accent-gold);
}

.calc-result span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.calc-result small {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Easy Switch Icons --- */
.step-icon {
    margin-bottom: 15px;
    display: inline-flex;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 1px solid var(--border-gold);
}

/* --- SEO Areas Grid --- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-category h3 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
}

.area-category ul li {
    margin-bottom: 8px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.area-category ul li:hover {
    color: #fff;
    cursor: default;
}

/* --- WeChat Contact --- */
.wechat-contact {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wechat-qr {
    max-width: 140px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 10px;
}

.wechat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.wechat-id {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .wechat-contact {
        align-items: center;
        /* Center on mobile */
        text-align: center;
        width: 100%;
    }
}

/* Hero Content Adjustment to fit calculator */
.hero-content {
    max-width: 900px;
    /* widen slightly */
}

/* --- Logo Refinement (Round 2) --- */
.logo-text {
    align-items: center;
    /* Center align items horizontally */
    justify-content: center;
    text-align: center;
    line-height: 1.1;
}

.logo-text-main {
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
    display: block;
    /* Ensure breaks line */
}

.logo-text-sub {
    font-size: 20px;
    /* Exact match to Main */
    font-weight: 700;
    /* Exact match to Main */
    color: #D4AF37;
    letter-spacing: 1px;
    margin-top: 0;
    text-transform: uppercase;
    display: block;
    /* Ensure breaks line */
}

/* --- Savings Calculator Section --- */
.calculator-container {
    background: var(--card-bg);
    /* Dark bg */
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.control-group {
    margin-bottom: 30px;
}

.control-group label {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-highlight {
    color: var(--text-muted);
}

.value-highlight-gold {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Range Input Styling */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #374151;
    /* Dark gray track */
    border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -9px;
    /* center thumb */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    border: 2px solid #fff;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Calc Outcome Styling */
.calc-outcome {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.calc-outcome h3 {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.savings-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--success-green);
    /* Green for Money Saved */
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.savings-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.calc-quote {
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calculator-container {
        padding: 30px;
    }

    .savings-amount {
        font-size: 2.5rem;
    }
}

/* --- 4 Pillars Icons Animations --- */

/* 定义雷达旋转的关键帧 */
@keyframes radar-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 将动画应用于雷达指针 */
.radar-pointer {
    /* 设置旋转中心点为 SVG 的中心 (12px 12px) */
    transform-origin: 12px 12px;
    /* 应用动画：名称 | 时长 | 速度曲线 | 无限循环 */
    animation: radar-spin 5s linear infinite;
}

/* 额外的通用交互：鼠标悬停时图标微微上浮 */
.service-card:hover .service-icon {
    transform: translateY(-5px);
    /* 向上移动 5px */
    transition: transform 0.3s ease;
    /* 平滑过渡 */
    /* 可选：增加一点金色光晕增强效果 */
    filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.4));
}

/* --- Easy Switch Step Icons Styling --- */
.step-icon {
    display: inline-flex;
    /* Changed from flex to inline-flex to prevent full-width stretching */
    justify-content: center;
    align-items: center;
    width: 72px;
    /* Fixed width */
    height: 72px;
    /* Fixed height */
    border-radius: 50%;
    /* Enforce circle */
    margin-bottom: 15px;
    padding: 0;
    /* Reset padding as we have fixed size */
}

.step-svg {
    filter: drop-shadow(0px 3px 5px rgba(212, 175, 55, 0.3));
    /* Soft Gold Glow */
    transition: all 0.3s ease;
}

.step-column:hover .step-svg {
    transform: scale(1.1) translateY(-3px);
    /* Scale and Float */
    filter: drop-shadow(0px 5px 8px rgba(212, 175, 55, 0.5));
    /* Enhanced Glow */
}