/* ==========================================================================
   Aura Finance - Core Premium CSS Stylesheet
   ========================================================================== */

/* 1. Design System Tokens & Custom Properties */
:root {
    /* Color Palette - Premium White, Navy, Gold, Green Theme */
    --bg-color: #FFFFFF; /* Pure White background */
    --bg-card: #FFFFFF;
    --bg-card-hover: #ffffff;
    --border-color: rgba(15, 15, 45, 0.08);
    --border-color-hover: rgba(255, 185, 102, 0.5);
    
    --text-primary: #0F0F2D; /* Navy Blue text */
    --text-secondary: #5F6170; /* Warm slate secondary text */
    --text-dark: #0F0F2D;
    
    /* The user's specified colors */
    --navy-color: #0F0F2D;
    --amber-color: #FFB966;
    --green-color: #193B1E;
    
    --gold-color: #FFB966; /* Main accent color mapped to user's gold */
    --gold-bright: #FFD49A;
    --gold-dark: #CC8F44;
    --gold-gradient: linear-gradient(135deg, #FFB966 0%, #E5A457 50%, #CC8F44 100%);
    --text-gradient: linear-gradient(135deg, #0F0F2D 0%, #CC8F44 100%);
    
    --blue-accent: rgba(230, 236, 245, 0.3);
    --blue-glow: rgba(255, 185, 102, 0.03);
    --gold-glow: rgba(255, 185, 102, 0.06);
    
    --success-color: #193B1E; /* Success indicator mapped to user's green */
    --warning-color: #E08B00;
    --danger-color: #C1121F;
    
    /* Typography - Unified to 'Outfit' font */
    --font-serif: 'Outfit', sans-serif;
    --font-sans: 'Outfit', sans-serif;
    
    /* Spacing & Shadows */
    --container-width: 1280px;
    --header-height: 80px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-micro: all 0.2s ease-out;
    
    --shadow-soft: 0 4px 20px rgba(15, 15, 45, 0.02);
    --shadow-premium: 0 16px 40px rgba(15, 15, 45, 0.04), 0 2px 12px rgba(255, 185, 102, 0.05);
    --shadow-hover: 0 24px 60px rgba(15, 15, 45, 0.08), 0 2px 18px rgba(255, 185, 102, 0.12);
}

/* 2. Global Resets & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative; /* Contain absolutely-positioned ambient glows */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-micro);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* 3. Utility Classes & Background Motion Effects */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4.5rem 0;
    }
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-color); }
.w-full { width: 100%; }

.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Ambient Background Glows */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;
    filter: blur(140px);
    mix-blend-mode: multiply;
    opacity: 0.08;
}

.glow-1 {
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, var(--gold-color) 0%, rgba(0,0,0,0) 70%);
    animation: floatGlow1 25s infinite alternate ease-in-out;
}

.glow-2 {
    top: 35%;
    right: -10%;
    background: radial-gradient(circle, #2a4175 0%, rgba(0,0,0,0) 70%);
    animation: floatGlow2 30s infinite alternate ease-in-out;
}

.glow-3 {
    bottom: 10%;
    left: 15%;
    background: radial-gradient(circle, var(--gold-color) 0%, rgba(0,0,0,0) 70%);
    animation: floatGlow1 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.15); }
}

@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1.2); }
    100% { transform: translate(-120px, 100px) scale(0.9); }
}

/* Premium Section Header */
.section-header {
    margin-bottom: 4.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--green-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .section-header { margin-bottom: 3rem; }
}

/* Glassmorphism Generic Card Styling */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Premium Scroll Trigger Base Classes */
.fade-up-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-init.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 4. Elegant Header & Mobile Drawer */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 15, 45, 0.06);
    z-index: 100;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(15, 15, 45, 0.04);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.logo-subtext {
    font-size: 0.55rem;
    letter-spacing: 0.42em;
    color: var(--gold-color);
    font-weight: 700;
    margin-top: 0.1rem;
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    gap: 2.2rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-color);
    transition: var(--transition-micro);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 4px solid var(--text-secondary);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .arrow-down {
    transform: rotate(180deg);
    border-top-color: var(--gold-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 15px);
    min-width: 240px;
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-micro);
}

.dropdown-menu li a:hover {
    color: var(--text-primary);
    background-color: rgba(255, 185, 102, 0.1);
    padding-left: 2.1rem;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

@media (max-width: 576px) {
    .header-actions .btn {
        display: none;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    z-index: 102;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-micro);
}

/* Mobile Drawer Overlay styles */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 15, 45, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background-color: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    z-index: 110;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
}

.mobile-drawer.open {
    transform: translateX(0);
    box-shadow: -10px 0 30px rgba(15, 15, 45, 0.05);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.drawer-close {
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-secondary);
    transition: var(--transition-micro);
}

.drawer-close:hover {
    color: var(--gold-color);
}

.drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 4rem;
}

.drawer-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-primary);
    display: block;
}

.drawer-link:hover {
    color: var(--gold-color);
    padding-left: 0.5rem;
}

/* Mobile Drawer Submenu */
.drawer-dropdown {
    position: relative;
}

.drawer-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-dropdown-toggle .arrow-down {
    border-top: 6px solid var(--text-primary);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    transition: transform 0.3s ease;
}

.drawer-dropdown-toggle.active .arrow-down {
    transform: rotate(180deg);
    border-top-color: var(--gold-color);
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin 0.4s ease;
    margin: 0;
}

.drawer-submenu.open {
    max-height: 500px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.drawer-submenu li a {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-secondary);
    display: block;
    padding: 0.3rem 0;
    transition: var(--transition-micro);
}

.drawer-submenu li a:hover {
    color: var(--gold-color);
    padding-left: 0.4rem;
}

@media (max-width: 480px) {
    .mobile-drawer {
        padding: 2rem 1.5rem;
    }
    .drawer-header {
        margin-bottom: 2.5rem;
    }
    .drawer-nav ul {
        gap: 1.4rem;
        margin-bottom: 2.5rem;
    }
    .drawer-link {
        font-size: 1.5rem;
    }
    .drawer-submenu li a {
        font-size: 1.15rem;
    }
}

@media (max-height: 660px) {
    .drawer-header {
        margin-bottom: 2rem;
    }
    .drawer-nav ul {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }
    .drawer-link {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   Subpages Common Styles
   ========================================================================== */
.subpage-hero {
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 185, 102, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.subpage-hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.subpage-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Contact page specific styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 185, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
}

.contact-info-details h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-info-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About page specific styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Page layout */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.service-content h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    padding: 2.5rem;
}

.sidebar-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}


@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .hide-mobile { display: none; }
    .menu-toggle { display: flex; }
}

/* 5. Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

/* Button Shimmer Effect */
.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-shimmer:hover::before {
    left: 150%;
}

.btn-outline {
    border: 1px solid var(--border-color-hover);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.15);
}

/* 6. Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    flex-grow: 1;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 185, 102, 0.08);
    border: 1px solid rgba(255, 185, 102, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.badge-icon {
    stroke: var(--gold-color);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.8rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3.2rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Hero Visuals & Glassmorphism Card Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-card-glow {
    position: absolute;
    width: 80%;
    height: 70%;
    background: radial-gradient(circle, var(--blue-glow) 0%, rgba(0,0,0,0) 80%);
    filter: blur(40px);
    z-index: 0;
}

.hero-glass-card {
    position: relative;
    width: 320px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2;
    transform: rotate3d(1, -1, 0, 8deg);
    animation: floatingCard 6s infinite alternate ease-in-out;
}

@keyframes floatingCard {
    0% { transform: rotate3d(1, -1, 0, 8deg) translate(0, 0); }
    100% { transform: rotate3d(1, -1, 0, 5deg) translate(-10px, -15px); }
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.gold-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold-color);
    box-shadow: 0 0 10px var(--gold-color);
}

.brand-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.card-illustration {
    margin-bottom: 2.2rem;
}

.trend-chart {
    overflow: visible;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(28, 29, 33, 0.06);
    padding-bottom: 0.5rem;
}

.detail-label {
    color: var(--text-secondary);
}

.detail-val {
    font-weight: 600;
}

/* Floating Statistics Bubble Grid */
.floating-stats-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    animation: floatingBubbles 7s infinite alternate ease-in-out;
}

.bubble-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.bubble-3 {
    top: 15%;
    right: -10%;
    animation-delay: 0.8s;
}

.bubble-4 {
    bottom: 10%;
    right: -5%;
    animation-delay: 2.2s;
}

@keyframes floatingBubbles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

.stat-num {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 0.1rem;
}

.stat-icon-wrapper {
    color: var(--gold-color);
}

.stat-rating {
    display: flex;
    gap: 0.15rem;
    color: var(--gold-color);
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

/* Hero Scroll Mouse Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelMouse 2s infinite ease-in-out;
}

@keyframes scrollWheelMouse {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

.scroll-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    animation: scrollArrowMotion 2s infinite ease-in-out;
}

@keyframes scrollArrowMotion {
    0% { transform: rotate(45deg) translateY(-3px); opacity: 0.2; }
    50% { transform: rotate(45deg) translateY(3px); opacity: 1; }
    100% { transform: rotate(45deg) translateY(-3px); opacity: 0.2; }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .bubble-1 { left: -5%; }
    .bubble-3 { right: -5%; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

/* 7. Why Investors Choose Us Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2.2rem;
    position: relative;
    overflow: hidden;
}

.card-icon-container {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 8. Journey Timeline Styles */
.journey-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 4rem auto 0;
}

.timeline-line {
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--gold-color); /* Solid gold connector line */
    z-index: 1;
}

.timeline-progress {
    display: none; /* Progress animation hidden for static display */
}

.timeline-grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    margin-bottom: 0;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: default; /* Non-clickable/static styling */
}

.timeline-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 2px solid rgba(197, 168, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 6px var(--bg-color);
}

.node-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-node {
    border-color: var(--gold-bright);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

.timeline-step:hover .node-icon {
    transform: scale(1.15);
}

.timeline-step.active .timeline-node {
    border-color: var(--gold-color);
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 0 0 6px var(--bg-color), 0 0 15px rgba(197, 168, 128, 0.4);
}

.timeline-step.active .node-icon {
    color: var(--text-dark);
}

.step-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.timeline-step.active .step-title {
    color: var(--text-primary);
}

.step-short {
    font-size: 0.72rem;
    color: var(--text-secondary);
    max-width: 120px;
    margin: 0 auto;
}

/* Selected Journey Details Panel */
.timeline-details-panel {
    padding: 3rem;
    min-height: 240px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: panelTransition 0.5s ease-out;
    background: #FFFFFF !important; /* Premium dashboard card style */
    border-top: 4px solid var(--gold-color) !important;
    border-radius: 16px !important;
    box-shadow: var(--shadow-premium) !important;
}

.timeline-details-panel:hover {
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--border-color) !important;
    border-top-color: var(--gold-color) !important;
}

@keyframes panelTransition {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-step-indicator {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

.panel-step-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.panel-step-description {
    color: var(--text-secondary);
    max-width: 850px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Panel Step Footer styling */
.panel-step-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.2rem;
    padding-top: 2.2rem;
    border-top: 1px solid rgba(15, 15, 45, 0.05);
    gap: 2rem;
}

.panel-step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-details-panel .badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-primary);
    font-weight: 500;
    background: rgba(15, 15, 45, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(15, 15, 45, 0.05);
    transition: var(--transition-micro);
}

.timeline-details-panel .badge-mini svg {
    color: var(--gold-color);
    flex-shrink: 0;
}

.timeline-details-panel .badge-mini:hover {
    background: rgba(255, 185, 102, 0.08);
    border-color: rgba(255, 185, 102, 0.25);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .timeline-line { display: none; }
    .timeline-grid {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 0;
        position: relative;
        padding-left: 1rem;
    }
    .timeline-grid::before {
        content: '';
        position: absolute;
        top: 25px;
        bottom: 25px;
        left: calc(1rem + 25px); /* Centers connector line under the 50px timeline node */
        width: 2px;
        background: var(--gold-color);
        z-index: 1;
    }
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 1.8rem;
        align-items: center;
        z-index: 2;
    }
    .timeline-node {
        margin-bottom: 0;
        flex-shrink: 0;
        box-shadow: 0 0 0 6px var(--bg-color), 0 0 15px rgba(197, 168, 128, 0.4);
    }
    .step-short {
        max-width: none;
        margin: 0;
    }
}

/* 9. Mortgage Solutions Interactive Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

.solution-card {
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
    background: linear-gradient(135deg, #0F0F2D 0%, #17173F 100%);
    border: 1px solid rgba(255, 185, 102, 0.15);
    border-radius: 12px;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    background: linear-gradient(135deg, #193B1E 0%, #25522B 100%) !important;
    border-color: var(--gold-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 15, 45, 0.25), 0 0 30px rgba(255, 185, 102, 0.15);
}

/* 6th Card - Mortgage Solutions Intro Card */
.solution-card-intro {
    background: linear-gradient(135deg, #193B1E 0%, #25522B 100%) !important;
    border: 1px solid rgba(255, 185, 102, 0.25) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3.5rem 2rem !important;
    min-height: 420px;
}

.solution-card-intro:hover {
    background: linear-gradient(135deg, #0F0F2D 0%, #17173F 100%) !important;
    border-color: var(--gold-color) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 15, 45, 0.25), 0 0 30px rgba(255, 185, 102, 0.15);
}

.solution-intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.solution-intro-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 1.2rem 0;
    color: #FFFFFF;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.solution-intro-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 240px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-intro-icon {
    color: var(--gold-color);
    transition: var(--transition-smooth);
}

.solution-card-intro:hover .solution-intro-icon {
    transform: scale(1.15) rotate(-15deg);
}

.card-glow-highlight {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--blue-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.solution-card:hover .card-glow-highlight {
    transform: scale(2);
    opacity: 0.25;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.solution-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
}

.solution-tag-small {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-color);
    background: rgba(255, 185, 102, 0.1);
    border: 1px solid rgba(255, 185, 102, 0.25);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.solution-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-features {
    margin-bottom: auto; /* Pushes button to bottom */
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 2.5rem;
}

.solution-features li {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
}

.solution-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gold-color);
}

.solution-card .btn-outline {
    border-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

.solution-card .btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
}

@media (max-width: 480px) {
    .solution-card {
        padding: 2rem 1.8rem;
        min-height: auto;
    }
}

/* 10. Interactive Yield Calculator */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2rem;
}

.calculator-inputs {
    padding: 3rem;
}

.calc-section-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
}

.input-group {
    margin-bottom: 2.2rem;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.input-labels label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-val-display {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-color);
}

/* Slider Controls Styling */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(28, 29, 33, 0.1);
    outline: none;
    transition: var(--transition-micro);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-gradient);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
    transition: transform 0.15s ease-in-out;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-gradient);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
    transition: transform 0.15s ease-in-out;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.slider-markers {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 0.5rem;
}

/* Calculator Outputs Card styling */
.calculator-outputs {
    position: relative;
}

.calculator-outputs .glow-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, var(--blue-glow) 0%, rgba(0,0,0,0) 80%);
    filter: blur(25px);
    z-index: 0;
    pointer-events: none;
}

.output-card {
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.outputs-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.output-block {
    background: rgba(28, 29, 33, 0.02);
    border: 1px solid rgba(28, 29, 33, 0.06);
    padding: 1.8rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.block-highlight {
    border-color: rgba(197, 168, 128, 0.2);
    background: rgba(197, 168, 128, 0.02);
}

.output-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.output-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.divider {
    height: 1px;
    background: rgba(28, 29, 33, 0.08);
    margin: 1.5rem 0;
}

.outputs-sub-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.sub-block {
    display: flex;
    flex-direction: column;
}

.sub-label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.sub-val {
    font-size: 1.4rem;
    font-weight: 700;
}

.sub-helper {
    font-size: 0.65rem;
    color: rgba(28, 29, 33, 0.4);
    margin-top: 0.15rem;
}

.sub-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
}

/* Calculator Dynamic Status Indicators */
.status-healthy { color: var(--success-color); }
.status-warning { color: var(--warning-color); }
.status-danger { color: var(--danger-color); }

.calc-disclaimer {
    font-size: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .calculator-inputs, .output-card {
        padding: 2rem;
    }
    
    .outputs-main-grid {
        grid-template-columns: 1fr;
    }
}

/* 11. Investment Showcase Gallery (Parallax properties) */
.parallax-gallery {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 4rem;
}

.gallery-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.gallery-item:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.gallery-item:nth-child(even) .image-wrapper {
    order: 2;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 440px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease-out;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(250, 249, 246, 0.8) 0%, rgba(250, 249, 246, 0) 50%);
    pointer-events: none;
}

.property-info {
    padding: 3.5rem;
    position: relative;
    margin-left: -5rem;
    z-index: 2;
}

.gallery-item:nth-child(even) .property-info {
    margin-left: 0;
    margin-right: -5rem;
}

.prop-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.prop-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.prop-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

.prop-stats span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
}

.prop-stats span strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

@media (max-width: 1024px) {
    .parallax-gallery { gap: 5rem; }
    .gallery-item, .gallery-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-item:nth-child(even) .image-wrapper {
        order: 0;
    }
    
    .image-wrapper { height: 320px; }
    .property-info, .gallery-item:nth-child(even) .property-info {
        padding: 2.2rem;
        margin: 0;
    }
}

/* 12. Trust checklist section */
.trust-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 3rem;
}

.checklist-item {
    display: flex;
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.checklist-item:hover {
    background: #FFFFFF;
    border-color: rgba(15, 15, 45, 0.05);
    box-shadow: var(--shadow-soft);
    transform: translateX(5px);
}

.check-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

/* Unique color themes for check icons */
.check-icon.icon-gold {
    background: rgba(255, 185, 102, 0.12);
    color: var(--gold-color);
    border: 1px solid rgba(255, 185, 102, 0.25);
}

.checklist-item:hover .check-icon.icon-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 0 12px rgba(255, 185, 102, 0.4);
}

.check-icon.icon-blue {
    background: rgba(42, 65, 117, 0.08);
    color: #4A6fa5;
    border: 1px solid rgba(42, 65, 117, 0.15);
}

.checklist-item:hover .check-icon.icon-blue {
    background: linear-gradient(135deg, #4A6fa5 0%, #355070 100%);
    color: #FFFFFF;
    box-shadow: 0 0 12px rgba(74, 111, 165, 0.4);
}

.check-icon.icon-green {
    background: rgba(25, 59, 30, 0.08);
    color: #2b5c32;
    border: 1px solid rgba(25, 59, 30, 0.15);
}

.checklist-item:hover .check-icon.icon-green {
    background: linear-gradient(135deg, #2b5c32 0%, #193B1E 100%);
    color: #FFFFFF;
    box-shadow: 0 0 12px rgba(43, 92, 50, 0.4);
}

.check-icon.icon-amber {
    background: rgba(224, 139, 0, 0.08);
    color: #d88a00;
    border: 1px solid rgba(224, 139, 0, 0.15);
}

.checklist-item:hover .check-icon.icon-amber {
    background: linear-gradient(135deg, #e08b00 0%, #b87200 100%);
    color: #FFFFFF;
    box-shadow: 0 0 12px rgba(224, 139, 0, 0.4);
}

.check-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.check-text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Trust Badge Cards - Horizontal Layout Redesign */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.badge-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.2rem;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.badge-graphic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 15, 45, 0.03);
    border: 1px solid rgba(15, 15, 45, 0.06);
    transition: var(--transition-smooth);
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.badge-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.badge-id {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-color);
    font-weight: 700;
}

/* Trustpilot Rating and Stars */
.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    color: #00B67A; /* Trustpilot Green */
}

.badge-score {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00B67A;
}

/* Hover States & Glows */
.fca-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 185, 102, 0.1), var(--shadow-hover);
}

.fca-card:hover .badge-graphic {
    background: rgba(255, 185, 102, 0.1);
    border-color: rgba(255, 185, 102, 0.25);
    color: var(--gold-color);
}

.trustpilot-card:hover {
    border-color: #00B67A;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 182, 122, 0.1), var(--shadow-hover);
}

.trustpilot-card:hover .badge-graphic {
    background: rgba(0, 182, 122, 0.1);
    border-color: rgba(0, 182, 122, 0.25);
    color: #00B67A;
}

.fca-card .regulatory-shield {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.fca-card:hover .regulatory-shield {
    color: var(--gold-color);
    transform: scale(1.1);
}

.trustpilot-card .trust-stars-svg {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.trustpilot-card:hover .trust-stars-svg {
    color: #00B67A;
    transform: scale(1.1) rotate(15deg);
}

@media (max-width: 1024px) {
    .trust-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 600px) {
    .badge-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .trustpilot-rating {
        justify-content: center;
    }
}

/* 13. Testimonials Carousel */
.testimonials-wrapper {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
    z-index: 2;
}

.testimonial-card {
    padding: 3.5rem;
    border-radius: 16px;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.1;
    color: rgba(197, 168, 128, 0.22);
    margin-top: 1.5rem;
    display: inline-block;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(28, 29, 33, 0.08);
    padding-top: 1.8rem;
    text-align: left;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.case-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-color);
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

/* Testimonials Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-micro);
    color: var(--text-secondary);
}

.carousel-btn:hover {
    border-color: var(--gold-color);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(28, 29, 33, 0.2);
    cursor: pointer;
    transition: var(--transition-micro);
}

.dot.active {
    background: var(--gold-color);
    transform: scale(1.25);
}

@media (max-width: 768px) {
    .testimonial-card { padding: 2.2rem 1.8rem; }
    .testimonial-text { font-size: 1.25rem; }
    .testimonial-author {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        align-items: center;
    }
}

/* 14. Property Investment Insights (Blog) */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
}

.blog-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease-out;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(250, 249, 246, 0.7) 0%, rgba(250, 249, 246, 0) 50%);
    z-index: 1;
    pointer-events: none;
}

.blog-tag {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    z-index: 2;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-meta .bullet {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--text-secondary);
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: var(--transition-micro);
}

.blog-title a:hover {
    color: var(--gold-color);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.blog-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto; /* Push link to the bottom */
}

.arrow-icon {
    transition: transform 0.3s ease-out;
}

.blog-card:hover .arrow-icon {
    transform: translateX(5px);
}

/* 15. Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 60%;
    height: 150%;
    top: -25%;
    left: 20%;
    background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0,0,0,0) 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .cta-content { padding: 3rem 1.8rem; }
    .cta-title { font-size: 2.2rem; }
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* 16. Sticky Consultation Float Button */
.floating-consultation-btn {
    position: fixed;
    bottom: 2.2rem;
    right: 2.2rem;
    z-index: 90;
    transition: var(--transition-smooth);
}

.floating-consultation-btn:hover {
    transform: translateY(-4px);
}

.floating-consultation-btn .btn {
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.35);
}

.btn-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .floating-consultation-btn {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-consultation-btn .btn {
        padding: 0.8rem;
    }
    
    .btn-text { display: none; }
}

/* 17. Modal Lead Intake Form (High fidelity window popup) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 29, 33, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    padding: 1.5rem;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 100%;
    max-width: 650px;
    padding: 3rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-color) var(--bg-color);
    background: #ffffff;
    color: var(--text-primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(30px) scale(0.98);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-micro);
}

.modal-close:hover {
    color: var(--gold-color);
}

.modal-header {
    margin-bottom: 2.5rem;
}

.modal-headline {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.modal-tagline {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(28, 29, 33, 0.01);
    border: 1px solid rgba(28, 29, 33, 0.12);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition-micro);
    width: 100%;
}

.form-group select option {
    background-color: #ffffff;
    color: var(--text-primary);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 8px rgba(197, 168, 128, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 0.2rem;
    accent-color: var(--gold-color);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.modal-footer {
    border-top: 1px solid rgba(28, 29, 33, 0.08);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.compliance-text {
    font-size: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 650px) {
    .modal-container { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .modal-headline { font-size: 1.8rem; }
}

/* Success Toast Alert */
.success-toast {
    position: fixed;
    bottom: 2.2rem;
    left: 2.2rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--success-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    z-index: 130;
    color: var(--text-primary);
    box-shadow: var(--shadow-hover);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.success-toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--success-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.toast-message h4 {
    font-size: 0.85rem;
    font-weight: 700;
}

.toast-message p {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

/* 18. Footer Compliance & Structures */
.main-footer {
    background-color: #f3f2ee;
    border-top: 1px solid rgba(28, 29, 33, 0.05);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.brand-pitch {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 1.8rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(28, 29, 33, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-micro);
}

.social-links a:hover {
    color: var(--gold-color);
    border-color: var(--gold-color);
    background: rgba(197, 168, 128, 0.04);
}

.footer-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--gold-color);
}

.footer-links li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-compliance {
    margin-top: 4rem;
}

.regulatory-warning {
    background: rgba(197, 168, 128, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 2.2rem;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.regulatory-warning strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.compliance-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.6;
    gap: 2rem;
}

.compliance-meta p {
    max-width: 750px;
}

.compliance-links {
    display: flex;
    gap: 1.5rem;
    white-space: nowrap;
}

.compliance-links a {
    color: var(--text-secondary);
}

.compliance-links a:hover {
    color: var(--gold-color);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .main-footer { padding: 4rem 0 2rem; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3.5rem;
    }
    
    .footer-compliance { margin-top: 2.5rem; }
    .compliance-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Luxury Theme Custom Overrides
   ========================================================================== */

/* Logo Image Styling */
.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-micro);
}

.logo-image:hover {
    transform: scale(1.02);
}

/* Why Choose Us Section - Deep Navy Background Accent */
.why-us-section {
    background-color: var(--navy-color);
    color: #FFFFFF;
}
.why-us-section .section-tag {
    color: #FFFFFF;
}
.why-us-section .section-title {
    color: #FFFFFF;
}
.why-us-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}
.why-us-section .feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}
.why-us-section .feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--amber-color);
}
.why-us-section .feature-title {
    color: #FFFFFF;
}
.why-us-section .feature-desc {
    color: rgba(255, 255, 255, 0.7);
}
.why-us-section .card-icon-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Interactive Yield Calculator - Deep Green Background Accent */
.calculator-section {
    background-color: var(--green-color);
    color: #FFFFFF;
}
.calculator-section .section-title {
    color: #FFFFFF;
}
.calculator-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}
.calculator-section .calculator-inputs {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}
.calculator-section .calc-section-title {
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.calculator-section .input-labels label {
    color: #FFFFFF;
}
.calculator-section .input-val-display {
    color: var(--amber-color);
}
.calculator-section .slider {
    background: rgba(255, 255, 255, 0.2);
}
.calculator-section .slider-markers {
    color: rgba(255, 255, 255, 0.4);
}
.calculator-section .output-card {
    background-color: var(--navy-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    box-shadow: none;
}
.calculator-section .output-card .calc-section-title {
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.calculator-section .output-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.calculator-section .block-highlight {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}
.calculator-section .output-label {
    color: rgba(255, 255, 255, 0.6);
}
.calculator-section .divider {
    background: rgba(255, 255, 255, 0.1);
}
.calculator-section .sub-label {
    color: rgba(255, 255, 255, 0.6);
}
.calculator-section .sub-helper {
    color: rgba(255, 255, 255, 0.4);
}
.calculator-section .calc-disclaimer {
    color: rgba(255, 255, 255, 0.4);
}

/* Final CTA Section - Navy Blue Background Accent */
.final-cta-section {
    background-color: var(--navy-color);
    color: #FFFFFF;
}
.final-cta-section .cta-title {
    color: #FFFFFF;
}
.final-cta-section .cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
}
.final-cta-section .cta-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}
.final-cta-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}
.final-cta-section .btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
}

/* Main Footer - Deep Navy Background Accent */
.main-footer {
    background-color: #08081A;
    color: rgba(255, 255, 255, 0.6);
}
.main-footer .logo-image {
    height: 80px; /* Enlarged from 64px */
}
.main-footer .footer-section-title {
    color: #FFFFFF;
}
.main-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
}
.main-footer .footer-links a:hover {
    color: var(--amber-color);
}
.main-footer .brand-pitch {
    color: rgba(255, 255, 255, 0.6);
}
.main-footer .regulatory-warning {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
}
.main-footer .regulatory-warning strong {
    color: #FFFFFF;
}
.main-footer .compliance-meta {
    color: rgba(255, 255, 255, 0.4);
}
.main-footer .compliance-links a {
    color: rgba(255, 255, 255, 0.5);
}
.main-footer .compliance-links a:hover {
    color: var(--amber-color);
}
.main-footer .social-links a {
    border-color: rgba(255, 255, 255, 0.15);
}
.main-footer .social-links a:hover {
    color: var(--amber-color);
    border-color: var(--amber-color);
    background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   Hero Realistic 3D Mansion Illustration
   ========================================================================== */
.hero-mansion-image-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium), 0 0 35px rgba(255, 185, 102, 0.08);
    border: 1px solid rgba(255, 185, 102, 0.15);
    animation: imageFloat 6s infinite alternate ease-in-out;
}

.mansion-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.hero-mansion-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 45, 0.15) 0%, rgba(255, 185, 102, 0.05) 100%);
    pointer-events: none;
}

@keyframes imageFloat {
    0% {
        transform: translateY(0px);
        box-shadow: 0 16px 40px rgba(15, 15, 45, 0.1), 0 0 30px rgba(255, 185, 102, 0.05);
    }
    100% {
        transform: translateY(-12px);
        box-shadow: 0 28px 60px rgba(15, 15, 45, 0.15), 0 0 50px rgba(255, 185, 102, 0.12);
    }
}

/* Mobile responsive optimizations */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.25rem !important;
    }
    .section-title {
        font-size: 1.8rem !important;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Comprehensive Mobile Responsiveness Overrides
   ========================================================================== */
@media (max-width: 767px) {
    /* Force hero to single column — belt-and-suspenders override */
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }
    .hero-content, .hero-visual {
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-visual {
        min-height: auto !important;
    }
    .hero-mansion-image-container {
        max-width: 100% !important;
    }
    /* Hide decorative elements that cause overflow */
    .ambient-glow {
        display: none !important;
    }
    .floating-stats-container {
        display: none !important;
    }
    /* Subpage headings */
    .subpage-hero-title {
        font-size: 2rem !important;
    }
    .subpage-hero-subtitle {
        font-size: 0.95rem !important;
    }
    /* Timeline panel */
    .timeline-details-panel {
        padding: 1.5rem !important;
    }
    .panel-step-footer {
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: flex-start !important;
    }
    .panel-step-title {
        font-size: 1.4rem !important;
    }
    /* Contact layout */
    .contact-layout {
        grid-template-columns: 1fr !important;
    }
    /* Service detail layout */
    .service-detail-layout {
        grid-template-columns: 1fr !important;
    }
    .service-sidebar {
        position: static !important;
    }
    /* About grid */
    .about-grid {
        grid-template-columns: 1fr !important;
    }
    .values-grid {
        grid-template-columns: 1fr !important;
    }
    /* Trust container */
    .trust-container {
        grid-template-columns: 1fr !important;
    }
    /* Gallery */
    .parallax-gallery {
        gap: 3rem !important;
    }
    .gallery-item, .gallery-item:nth-child(2n) {
        grid-template-columns: 1fr !important;
    }
    .image-wrapper {
        height: 240px !important;
    }
    .property-info, .gallery-item:nth-child(2n) .property-info {
        margin: 0 !important;
        padding: 1.5rem !important;
    }
    /* Solutions */
    .solutions-grid {
        grid-template-columns: 1fr !important;
    }
    /* Calculator */
    .calculator-grid {
        grid-template-columns: 1fr !important;
    }
    .outputs-main-grid {
        grid-template-columns: 1fr !important;
    }
    /* CTA */
    .cta-content {
        padding: 2.5rem 1.2rem !important;
    }
    .cta-title {
        font-size: 1.9rem !important;
    }
    .cta-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .cta-buttons .btn {
        width: 100% !important;
    }
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    /* Section padding reduction */
    .section-padding {
        padding: 3.5rem 0 !important;
    }
    /* Hero actions */
    .hero-actions {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    .hero-actions .btn {
        width: 100% !important;
    }
}

/* ==========================================================================
   Buy-to-Let Mortgage Redesign Styles
   ========================================================================== */

/* Layout wrapper */
.btl-page-content {
    background-color: #FFFFFF;
}

.btl-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* SECTION 1: HERO BANNER */
.btl-hero {
    position: relative;
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    background-image: url('assets/images/luxury_london_penthouse.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.btl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 45, 0.92) 0%, rgba(15, 15, 45, 0.78) 100%);
    z-index: 1;
}

.btl-hero-container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.btl-hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.btl-hero-subtitle {
    font-size: 1.25rem;
    max-width: 750px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.btl-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}

.btl-hero-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.btl-hero-features .checkmark {
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.btl-hero-cta {
    margin-top: 1rem;
}

/* SECTION 2: INTRODUCTION */
.btl-intro {
    background-color: #FFFFFF;
}

.btl-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.btl-intro-content {
    text-align: left;
}

.btl-section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--navy-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.btl-section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btl-intro-visual {
    position: relative;
}

.btl-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.btl-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.btl-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.btl-image-wrapper:hover img {
    transform: scale(1.03);
}

/* SECTION 3: WHO WE HELP */
.btl-who {
    background-color: #FAFAF9;
}

.btl-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.btl-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.2rem 1.8rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.btl-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.btl-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.btl-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 4: OUR BUY-TO-LET SOLUTIONS */
.btl-solutions {
    background-color: #FFFFFF;
}

.btl-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.btl-solution-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btl-solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.btl-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(15, 15, 45, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--navy-color);
    transition: var(--transition-smooth);
}

.btl-solution-card:hover .btl-icon-box {
    background: var(--navy-color);
    color: var(--gold-color);
}

.btl-icon {
    width: 26px;
    height: 26px;
}

.btl-solution-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--navy-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.btl-solution-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 5: SIMPLE PROCESS */
.btl-process {
    background-color: #FAFAF9;
}

.btl-timeline-wrapper {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.btl-timeline-line {
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(15, 15, 45, 0.08);
    z-index: 1;
    transform: translateY(-50%);
}

.btl-timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.btl-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FAFAF9;
    padding: 0 1rem;
}

.btl-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--navy-color);
    color: var(--navy-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.btl-timeline-step:hover .btl-step-number {
    background: var(--navy-color);
    color: #FFFFFF;
    transform: scale(1.1);
}

.btl-step-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-color);
    line-height: 1.4;
}

/* SECTION 6: FINAL CTA */
.btl-final-cta {
    position: relative;
    padding: 8rem 0;
    background-image: url('assets/images/luxury_country_manor.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.btl-final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 15, 45, 0.85) 0%, rgba(15, 15, 45, 0.9) 100%);
    z-index: 1;
}

.btl-final-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.btl-final-cta-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.btl-final-cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btl-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-white {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.btn-white:hover {
    border-color: transparent;
    color: var(--text-dark);
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
    .btl-hero-title {
        font-size: 3.2rem;
    }
    
    .btl-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .btl-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .btl-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .btl-intro-content {
        text-align: center;
    }
    
    .btl-intro-cta {
        display: flex;
        justify-content: center;
    }
    
    .btl-hero-title {
        font-size: 3rem;
    }
    
    .btl-final-cta-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .btl-hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    .btl-hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .btl-hero-title {
        font-size: 2.4rem;
    }
    
    .btl-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btl-hero-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
        text-align: left;
        width: 100%;
        max-width: 280px;
    }
    
    .btl-hero-cta {
        width: 100%;
    }
    
    .btl-hero-cta .btn {
        width: 100%;
    }
    
    .btl-section-title {
        font-size: 2rem;
    }
    
    .btl-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .btl-solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .btl-timeline-line {
        display: none;
    }
    
    .btl-timeline-steps {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .btl-timeline-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0;
        background: transparent;
        position: relative;
    }
    
    .btl-timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        left: 25px;
        width: 2px;
        height: 35px;
        background: rgba(15, 15, 45, 0.1);
    }
    
    .btl-step-number {
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    .btl-step-title {
        font-size: 1.15rem;
    }
    
    .btl-final-cta {
        padding: 5rem 0;
    }
    
    .btl-final-cta-title {
        font-size: 2rem;
    }
    
    .btl-final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .btl-final-cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Bridging Loans Mortgage Redesign Styles
   ========================================================================== */

/* Layout wrapper */
.brg-page-content {
    background-color: #FFFFFF;
}

.brg-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* SECTION 1: HERO BANNER */
.brg-hero {
    position: relative;
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    background-image: url('assets/images/luxury_modern_development.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.brg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 45, 0.92) 0%, rgba(15, 15, 45, 0.78) 100%);
    z-index: 1;
}

.brg-hero-container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.brg-hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.brg-hero-subtitle {
    font-size: 1.25rem;
    max-width: 750px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.brg-hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}

.brg-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.brg-hero-highlights .checkmark {
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.brg-hero-cta {
    margin-top: 1rem;
}

/* SECTION 2: WHAT IS A BRIDGING LOAN? */
.brg-intro {
    background-color: #FFFFFF;
}

.brg-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.brg-intro-content {
    text-align: left;
}

.brg-section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--navy-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.brg-section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.brg-intro-visual {
    position: relative;
}

.brg-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.brg-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.brg-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.brg-image-wrapper:hover img {
    transform: scale(1.03);
}

/* SECTION 3: COMMON USES */
.brg-uses {
    background-color: #FAFAF9;
}

.brg-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.brg-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.2rem 1.8rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.brg-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.brg-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.brg-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 4: WHY CHOOSE A BRIDGING LOAN? */
.brg-why {
    background-color: #FFFFFF;
}

.brg-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.brg-solution-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brg-solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.brg-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(15, 15, 45, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--navy-color);
    transition: var(--transition-smooth);
}

.brg-solution-card:hover .brg-icon-box {
    background: var(--navy-color);
    color: var(--gold-color);
}

.brg-icon {
    width: 26px;
    height: 26px;
}

.brg-solution-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--navy-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.brg-solution-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 5: SIMPLE PROCESS */
.brg-process {
    background-color: #FAFAF9;
}

.brg-timeline-wrapper {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.brg-timeline-line {
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(15, 15, 45, 0.08);
    z-index: 1;
    transform: translateY(-50%);
}

.brg-timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.brg-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FAFAF9;
    padding: 0 1rem;
}

.brg-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--navy-color);
    color: var(--navy-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.brg-timeline-step:hover .brg-step-number {
    background: var(--navy-color);
    color: #FFFFFF;
    transform: scale(1.1);
}

.brg-step-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-color);
    line-height: 1.4;
}

/* SECTION 6: FINAL CTA */
.brg-final-cta {
    position: relative;
    padding: 8rem 0;
    background-image: url('assets/images/luxury_london_penthouse.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.brg-final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 15, 45, 0.85) 0%, rgba(15, 15, 45, 0.9) 100%);
    z-index: 1;
}

.brg-final-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.brg-final-cta-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.brg-final-cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.brg-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
    .brg-hero-title {
        font-size: 3.2rem;
    }
    
    .brg-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .brg-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .brg-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .brg-intro-content {
        text-align: center;
    }
    
    .brg-intro-cta {
        display: flex;
        justify-content: center;
    }
    
    .brg-hero-title {
        font-size: 3rem;
    }
    
    .brg-final-cta-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .brg-hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    .brg-hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .brg-hero-title {
        font-size: 2.4rem;
    }
    
    .brg-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .brg-hero-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
        text-align: left;
        width: 100%;
        max-width: 280px;
    }
    
    .brg-hero-cta {
        width: 100%;
    }
    
    .brg-hero-cta .btn {
        width: 100%;
    }
    
    .brg-section-title {
        font-size: 2rem;
    }
    
    .brg-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .brg-solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .brg-timeline-line {
        display: none;
    }
    
    .brg-timeline-steps {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .brg-timeline-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0;
        background: transparent;
        position: relative;
    }
    
    .brg-timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        left: 25px;
        width: 2px;
        height: 35px;
        background: rgba(15, 15, 45, 0.1);
    }
    
    .brg-step-number {
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    .brg-step-title {
        font-size: 1.15rem;
    }
    
    .brg-final-cta {
        padding: 5rem 0;
    }
    
    .brg-final-cta-title {
        font-size: 2rem;
    }
    
    .brg-final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .brg-final-cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   First-Time Buyer Mortgage Redesign Styles
   ========================================================================== */

/* Layout wrapper */
.ftb-page-content {
    background-color: #FFFFFF;
}

.ftb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* SECTION 1: HERO BANNER */
.ftb-hero {
    position: relative;
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    background-image: url('assets/images/young_couple_first_home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.ftb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 45, 0.92) 0%, rgba(15, 15, 45, 0.78) 100%);
    z-index: 1;
}

.ftb-hero-container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.ftb-hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.ftb-hero-subtitle {
    font-size: 1.25rem;
    max-width: 750px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.ftb-hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}

.ftb-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.ftb-hero-highlights .checkmark {
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.ftb-hero-cta {
    margin-top: 1rem;
}

/* SECTION 2: WHY CHOOSE US */
.ftb-why-us {
    background-color: #FFFFFF;
}

.ftb-why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.ftb-why-content {
    text-align: left;
}

.ftb-section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--navy-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.ftb-section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ftb-why-visual {
    position: relative;
}

.ftb-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.ftb-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ftb-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.ftb-image-wrapper:hover img {
    transform: scale(1.03);
}

/* SECTION 3: WHAT YOU NEED TO KNOW */
.ftb-knowledge {
    background-color: #FAFAF9;
}

.ftb-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ftb-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.2rem 1.8rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.ftb-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.ftb-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.ftb-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 4: THE HOME BUYING JOURNEY */
.ftb-journey {
    background-color: #FFFFFF;
}

.ftb-timeline-wrapper {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.ftb-timeline-line {
    position: absolute;
    top: 35px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(15, 15, 45, 0.08);
    z-index: 1;
}

.ftb-timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.ftb-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    padding: 0 1rem;
}

.ftb-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--navy-color);
    color: var(--navy-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.ftb-timeline-step:hover .ftb-step-number {
    background: var(--navy-color);
    color: #FFFFFF;
    transform: scale(1.1);
}

.ftb-step-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-color);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.ftb-step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* SECTION 5: WHY FIRST-TIME BUYERS TRUST US */
.ftb-trust {
    background-color: #FAFAF9;
}

.ftb-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ftb-trust-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ftb-trust-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.ftb-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(15, 15, 45, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--navy-color);
    transition: var(--transition-smooth);
}

.ftb-trust-card:hover .ftb-icon-box {
    background: var(--navy-color);
    color: var(--gold-color);
}

.ftb-icon {
    width: 26px;
    height: 26px;
}

.ftb-trust-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--navy-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.ftb-trust-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 6: FINAL CTA */
.ftb-final-cta {
    position: relative;
    padding: 8rem 0;
    background-image: url('assets/images/family_new_home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.ftb-final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 15, 45, 0.85) 0%, rgba(15, 15, 45, 0.9) 100%);
    z-index: 1;
}

.ftb-final-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.ftb-final-cta-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.ftb-final-cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.ftb-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
    .ftb-hero-title {
        font-size: 3.2rem;
    }
    
    .ftb-knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .ftb-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .ftb-why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ftb-why-content {
        text-align: center;
    }
    
    .ftb-why-cta {
        display: flex;
        justify-content: center;
    }
    
    .ftb-hero-title {
        font-size: 3rem;
    }
    
    .ftb-final-cta-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .ftb-hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    .ftb-hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ftb-hero-title {
        font-size: 2.4rem;
    }
    
    .ftb-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ftb-hero-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
        text-align: left;
        width: 100%;
        max-width: 280px;
    }
    
    .ftb-hero-cta {
        width: 100%;
    }
    
    .ftb-hero-cta .btn {
        width: 100%;
    }
    
    .ftb-section-title {
        font-size: 2rem;
    }
    
    .ftb-knowledge-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .ftb-trust-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .ftb-timeline-line {
        display: none;
    }
    
    .ftb-timeline-steps {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .ftb-timeline-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0;
        background: transparent;
        position: relative;
    }
    
    .ftb-timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        left: 25px;
        width: 2px;
        height: 35px;
        background: rgba(15, 15, 45, 0.1);
    }
    
    .ftb-step-number {
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    .ftb-step-title {
        font-size: 1.15rem;
        margin-bottom: 0.2rem;
    }
    
    .ftb-final-cta {
        padding: 5rem 0;
    }
    
    .ftb-final-cta-title {
        font-size: 2rem;
    }
    
    .ftb-final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .ftb-final-cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Remortgage Mortgage Redesign Styles
   ========================================================================== */

/* Layout wrapper */
.rmg-page-content {
    background-color: #FFFFFF;
}

.rmg-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* SECTION 1: HERO BANNER */
.rmg-hero {
    position: relative;
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    background-image: url('assets/images/family_new_home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.rmg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 45, 0.92) 0%, rgba(15, 15, 45, 0.78) 100%);
    z-index: 1;
}

.rmg-hero-container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.rmg-hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.rmg-hero-subtitle {
    font-size: 1.25rem;
    max-width: 750px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.rmg-hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}

.rmg-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.rmg-hero-highlights .checkmark {
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.rmg-hero-cta {
    margin-top: 1rem;
}

/* SECTION 2: WHAT IS A REMORTGAGE? */
.rmg-intro {
    background-color: #FFFFFF;
}

.rmg-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.rmg-intro-content {
    text-align: left;
}

.rmg-section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--navy-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.rmg-section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.rmg-intro-visual {
    position: relative;
}

.rmg-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.rmg-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.rmg-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.rmg-image-wrapper:hover img {
    transform: scale(1.03);
}

/* SECTION 3: WHY REMORTGAGE? */
.rmg-why {
    background-color: #FAFAF9;
}

.rmg-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.rmg-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.2rem 1.8rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.rmg-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.rmg-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.rmg-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 4: OUR SIMPLE PROCESS */
.rmg-process {
    background-color: #FFFFFF;
}

.rmg-timeline-wrapper {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.rmg-timeline-line {
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(15, 15, 45, 0.08);
    z-index: 1;
    transform: translateY(-50%);
}

.rmg-timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.rmg-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    padding: 0 1rem;
}

.rmg-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--navy-color);
    color: var(--navy-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.rmg-timeline-step:hover .rmg-step-number {
    background: var(--navy-color);
    color: #FFFFFF;
    transform: scale(1.1);
}

.rmg-step-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-color);
    line-height: 1.4;
}

/* SECTION 5: WHY CHOOSE US? */
.rmg-choose {
    background-color: #FAFAF9;
}

.rmg-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.rmg-choose-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rmg-choose-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.rmg-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(15, 15, 45, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--navy-color);
    transition: var(--transition-smooth);
}

.rmg-choose-card:hover .rmg-icon-box {
    background: var(--navy-color);
    color: var(--gold-color);
}

.rmg-icon {
    width: 26px;
    height: 26px;
}

.rmg-choose-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--navy-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.rmg-choose-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 6: FINAL CTA */
.rmg-final-cta {
    position: relative;
    padding: 8rem 0;
    background-image: url('assets/images/luxury_country_manor.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.rmg-final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 15, 45, 0.85) 0%, rgba(15, 15, 45, 0.9) 100%);
    z-index: 1;
}

.rmg-final-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.rmg-final-cta-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.rmg-final-cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.rmg-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
    .rmg-hero-title {
        font-size: 3.2rem;
    }
    
    .rmg-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .rmg-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .rmg-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .rmg-intro-content {
        text-align: center;
    }
    
    .rmg-intro-cta {
        display: flex;
        justify-content: center;
    }
    
    .rmg-hero-title {
        font-size: 3rem;
    }
    
    .rmg-final-cta-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .rmg-hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    .rmg-hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .rmg-hero-title {
        font-size: 2.4rem;
    }
    
    .rmg-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .rmg-hero-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
        text-align: left;
        width: 100%;
        max-width: 280px;
    }
    
    .rmg-hero-cta {
        width: 100%;
    }
    
    .rmg-hero-cta .btn {
        width: 100%;
    }
    
    .rmg-section-title {
        font-size: 2rem;
    }
    
    .rmg-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .rmg-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .rmg-timeline-line {
        display: none;
    }
    
    .rmg-timeline-steps {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .rmg-timeline-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0;
        background: transparent;
        position: relative;
    }
    
    .rmg-timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        left: 25px;
        width: 2px;
        height: 35px;
        background: rgba(15, 15, 45, 0.1);
    }
    
    .rmg-step-number {
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    .rmg-step-title {
        font-size: 1.15rem;
    }
    
    .rmg-final-cta {
        padding: 5rem 0;
    }
    
    .rmg-final-cta-title {
        font-size: 2rem;
    }
    
    .rmg-final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .rmg-final-cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Moving Home Mortgage Redesign Styles
   ========================================================================== */

/* Layout wrapper */
.mvh-page-content {
    background-color: #FFFFFF;
}

.mvh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* SECTION 1: HERO BANNER */
.mvh-hero {
    position: relative;
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    background-image: url('assets/images/family_moving_home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.mvh-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 45, 0.92) 0%, rgba(15, 15, 45, 0.78) 100%);
    z-index: 1;
}

.mvh-hero-container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.mvh-hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.mvh-hero-subtitle {
    font-size: 1.25rem;
    max-width: 750px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.mvh-hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}

.mvh-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.mvh-hero-highlights .checkmark {
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.mvh-hero-cta {
    margin-top: 1rem;
}

/* SECTION 2: WHAT IS A MOVING HOME MORTGAGE? */
.mvh-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.mvh-intro-content {
    text-align: left;
}

.mvh-section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--navy-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.mvh-section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mvh-intro-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style: none;
}

.mvh-intro-list li {
    position: relative;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.mvh-intro-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
}

.mvh-intro-visual {
    position: relative;
}

.mvh-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.mvh-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mvh-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.mvh-image-wrapper:hover img {
    transform: scale(1.03);
}

/* SECTION 3: YOUR MAIN OPTIONS */
.mvh-options {
    background-color: #FAFAF9;
}

.mvh-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvh-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.mvh-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.mvh-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.mvh-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 4: MOVING HOME PROCESS */
.mvh-process {
    background-color: #FFFFFF;
}

.mvh-timeline-wrapper {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.mvh-timeline-line {
    position: absolute;
    top: 25px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(15, 15, 45, 0.08);
    z-index: 1;
}

.mvh-timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.mvh-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    padding: 0 1rem;
}

.mvh-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--navy-color);
    color: var(--navy-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.mvh-timeline-step:hover .mvh-step-number {
    background: var(--navy-color);
    color: #FFFFFF;
    transform: scale(1.1);
}

.mvh-step-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-color);
    line-height: 1.4;
}

/* SECTION 5: THINGS TO CONSIDER */
.mvh-consider {
    background-color: #FAFAF9;
}

.mvh-consider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mvh-consider-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mvh-consider-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-premium);
}

.mvh-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(15, 15, 45, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--navy-color);
    transition: var(--transition-smooth);
}

.mvh-consider-card:hover .mvh-icon-box {
    background: var(--navy-color);
    color: var(--gold-color);
}

.mvh-icon {
    width: 26px;
    height: 26px;
}

.mvh-consider-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--navy-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.mvh-consider-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 6: FINAL CTA */
.mvh-final-cta {
    position: relative;
    padding: 8rem 0;
    background-image: url('assets/images/luxury_country_manor.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.mvh-final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 15, 45, 0.85) 0%, rgba(15, 15, 45, 0.9) 100%);
    z-index: 1;
}

.mvh-final-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.mvh-final-cta-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.mvh-final-cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.mvh-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .mvh-hero-title {
        font-size: 3.2rem;
    }

    .mvh-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .mvh-consider-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .mvh-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mvh-intro-content {
        text-align: center;
    }

    .mvh-intro-list {
        display: inline-block;
        text-align: left;
    }

    .mvh-intro-cta {
        display: flex;
        justify-content: center;
    }

    .mvh-hero-title {
        font-size: 3rem;
    }

    .mvh-final-cta-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .mvh-hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
        min-height: auto;
    }

    .mvh-hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mvh-hero-title {
        font-size: 2.4rem;
    }

    .mvh-hero-subtitle {
        font-size: 1.1rem;
    }

    .mvh-hero-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
        text-align: left;
        width: 100%;
        max-width: 280px;
    }

    .mvh-hero-cta {
        width: 100%;
    }

    .mvh-hero-cta .btn {
        width: 100%;
    }

    .mvh-section-title {
        font-size: 2rem;
    }

    .mvh-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .mvh-consider-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .mvh-timeline-line {
        display: none;
    }

    .mvh-timeline-steps {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        align-items: flex-start;
        text-align: left;
    }

    .mvh-timeline-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0;
        background: transparent;
        position: relative;
    }

    .mvh-timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        left: 25px;
        width: 2px;
        height: 35px;
        background: rgba(15, 15, 45, 0.1);
    }

    .mvh-step-number {
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .mvh-step-title {
        font-size: 1.15rem;
    }

    .mvh-final-cta {
        padding: 5rem 0;
    }

    .mvh-final-cta-title {
        font-size: 2rem;
    }

    .mvh-final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .mvh-final-cta-buttons .btn {
        width: 100%;
    }
}

