/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Oswald:wght@200;300;400;500;600;700&display=swap');
/* Import Luxury Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Apply fonts */
.section-title,
.section-title em,
.hero-title,
h1, h2, h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

body, p, .why-card-text, .section-desc {
    font-family: 'Poppins', 'Arial', sans-serif;
}

/* ========== VARIABLES ========== */
:root {
    --navy: #020024;
    --navy-mid: #112240;
    --navy-light: #1a3a5c;
    --gold: #c9a84c;
    --gold-light: #e4c97a;
    --gold-pale: #f5e8c4;
    --cream: #faf8f3;
    --white: #ffffff;
    --text-dark: #0a1628;
    --text-mid: #3d4f6b;
    --text-light: #8a9bb5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: #1a2a3f;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    background-color: #f0f2f5;
    padding-bottom: 140px;
}

/* ========== HEADER ========== */
header {
    background: var(--navy);
    border-bottom: 1px solid rgba(201,168,76,.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-area a {
    display: inline-block;
    transition: transform 0.2s;
}

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

.logo-text-main {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #F7E05E 0%, #D4AF37 30%, #B87C1E 70%, #F7E05E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text-sub {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold-light);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-phone {
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-phone:hover {
    background: rgba(201,168,76,0.3);
    transform: translateY(-2px);
}

.btn-header-quote {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-header-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

#languageSwitch {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
    white-space: nowrap;
}

#languageSwitch:hover {
    color: var(--gold-light);
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }
    .header-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ========== MAIN NAVIGATION - WITH HORIZONTAL SCROLL BAR (GOOD FOR MOBILE) ========== */
.main-nav {
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.main-nav ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    list-style: none;
    padding: 0 40px;
    min-width: max-content;
}

.main-nav ul li a {
    display: block;
    padding: 14px 20px;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .2s;
    white-space: nowrap;
}

.main-nav ul li a:hover {
    color: var(--gold-light);
    border-bottom: 2px solid var(--gold);
}

@media (max-width: 900px) {
    .main-nav ul {
        padding: 0 20px;
    }
    .main-nav ul li a {
        padding: 12px 16px;
        font-size: 12px;
    }
}

/* ========== WHY CHOOSE US SECTION ========== */
/* Why Section */
.why-section {
    background: var(--white);
    padding: 20px 0;
}

.section-wrap {
    max-width: 1400px;  /* Increased from 1200px for wider cards */
    margin: 0 auto;
    padding: 0 20px;
}

.section-eyebrow {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;  /* Luxury font for title */
}

.section-title em {
    color: var(--gold);
    font-style: normal;
    font-family:'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-desc {
	font-size: 18px;
    color: var(--text-mid);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 8px;
}

/* Grid - 3 columns on desktop, wider cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* Fixed 3 columns on desktop */
    gap: 40px;  /* Increased gap between cards */
}

/* Cards - Wider and taller */
.why-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 40px 32px;  /* Increased padding for wider look */
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(201, 168, 76, 0.2);
    height: 100%;  /* Makes all cards same height */
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--gold);
}

.why-card-num {
    width: 55px;  /* Slightly larger */
    height: 55px;
    background: linear-gradient(135deg, var(--gold), #dbb85c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 auto 20px;
}

.why-card-title {
    font-size: 24px;  /* Larger title */
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.why-card-text {
    font-size: 15px;  /* Slightly larger text */
    color: var(--text-mid);
    line-height: 1.7;
    flex-grow: 1;  /* Pushes text to fill space */
}

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
    .why-grid {
        gap: 30px;
    }
    
    .why-card {
        padding: 30px 24px;
    }
    
    .why-card-title {
        font-size: 22px;
    }
}

/* Tablet Small: 768px and below (2 columns) */
@media (max-width: 768px) {
    .why-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 columns on tablet */
        gap: 20px;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .why-card-title {
        font-size: 20px;
    }
    
    .why-card-text {
        font-size: 14px;
    }
}

/* Mobile: 480px and below (1 column) */
@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;  /* 1 column on phone */
        gap: 20px;
    }
    
    .why-card {
        padding: 30px 24px;
    }
    
    .section-wrap {
        padding: 0 15px;
    }
}

/* ========== WHY CARD ========== */
.why-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.2);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.why-card-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 auto 20px;
}

.why-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.why-card-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

.tile-link {
    text-decoration: none;
    display: block;
    flex: 1;
    min-width: 200px;
}

.tile-link .tile {
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.tile-link:hover .tile {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.why-card:nth-child(1) { background: #e8f0fe; }  /* Blue - Trust */
.why-card:nth-child(2) { background: #e6f4ea; }  /* Green - Growth */
.why-card:nth-child(3) { background: #fef9e6; }  /* Yellow - Warmth */
/* ========== HERO SECTION (Simple Banner) ========== */
.hero-section {
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    text-align: center;
    padding: 60px 20px;
    border-radius: 20px;
    margin: 40px 20px;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.4); }

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.btn-outline:hover { background: rgba(201,168,76,0.1); }

/* ========== VALUE CARDS ========== */
.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.value-card {
    background: white;
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.2);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 16px;
}

.value-card strong {
    display: block;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-mid);
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== WELCOME BOX ========== */
.welcome-box {
    background: linear-gradient(115deg, #FFF8F0, #FFFFFF);
    border-radius: 24px;
    padding: 32px;
    margin: 40px 0;
    border-left: 6px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ========== CALCULATOR GRID ========== */
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.calc-card {
    background: #FEFAF5;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    border: 1px solid #f0e6df;
    transition: all 0.3s;
}

.calc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.calc-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}

.calc-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy);
}

.calc-card p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.calc-card a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

/* ========== FEATURE GRID ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.feature-card {
    background: white;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #f0e6df;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--navy);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-mid);
}

/* ========== COST GRID ========== */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.cost-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold);
}

.cost-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.cost-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--navy);
}

.cost-card p {
    font-size: 12px;
    color: var(--text-mid);
}

/* ========== WARNING BOX ========== */
.warning-box {
    background: #FFF5E6;
    border-radius: 24px;
    padding: 28px;
    margin: 32px 0;
    border-left: 6px solid var(--gold);
}

.warning-box i {
    font-size: 32px;
    color: var(--gold);
    float: left;
    margin-right: 20px;
}

.warning-box h3 {
    color: #A1421A;
    margin-bottom: 12px;
}

/* ========== CTA BOX ========== */
.cta-box {
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-radius: 28px;
    padding: 48px 32px;
    text-align: center;
    color: white;
    margin: 48px 0;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.cta-box .phone {
    font-size: 28px;
    font-weight: 800;
    margin: 20px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.15);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
}

.testimonial-loc {
    font-size: 12px;
    color: var(--text-light);
}

/* ========== HERO SECTION (Full Width with Form) ========== */
.hero {
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.15) 0%, transparent 60%);
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-content {
    color: white;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-eyebrow span {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Miguel Visual */
.miguel-visual {
    background: #FFFDD1;
    background: linear-gradient(90deg, rgba(255, 253, 209, 1) 50%, rgba(246, 232, 177, 1) 100%);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.miguel-visual-icon img {
    width: 180px;
    height: auto;
    border-radius: 0%;
    margin-bottom: 16px;
    border: 3px solid var(--gold);
}

.miguel-visual h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.miguel-visual-title {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.license-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.license-badge {
    font-size: 15px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.license-badge i {
    color: var(--gold);
    width: 20px;
}

/* Hero Card Form */
.hero-card {
    background: #020024;
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(140, 7, 7, 1) 100%);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #FDBB2D;
    margin-bottom: 6px;
    text-align: center;
}

.hero-card-sub {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 28px;
}

.hero-card input,
.hero-card select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 15px;
    font-size: 14px;
    outline: none;
}

.hero-card input:focus,
.hero-card select:focus { border-color: var(--gold); }

.hero-card .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    margin-top: 10px;
}

.hero-card .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,.4); }

.privacy-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 12px;
}

/* Final CTA */
.final-cta {
    padding: 25px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 16px;
    margin: 40px 20px;
}

/* ========== CITY TICKER ========== */
/* ========== CITY TICKER ========== */
.city-ticker {
    position: fixed;
    bottom: 88px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #0a1628, #112240);
    overflow: hidden;
    border-top: 1px solid rgba(201,168,76,0.3);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    height: 40px;
    display: flex;
    align-items: center;
    z-index: 997;
}

.city-ticker-label {
    flex-shrink: 0;
    padding: 0 16px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    border-right: 1px solid rgba(201,168,76,0.3);
    z-index: 3;
    background: linear-gradient(135deg, #0a1628, #112240);
    line-height: 40px;
}

.city-ticker-track {
    overflow: hidden;
    flex: 1;
}

.city-ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: cityScroll 200s linear infinite;  /* THIS MAKES IT RUN */
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.city-ticker:hover .city-ticker-content {
    animation-play-state: paused;  /* Pause on hover */
}

/* IMPORTANT: The animation keyframes */
@keyframes cityScroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.city-miami { color: #87CEEB; }
.city-broward { color: #90EE90; }
.city-palm { color: #FFD700; }
.city-sep { color: rgba(255,255,255,0.2); margin: 0 6px; font-size: 9px; }

.city-county {
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin: 0 8px;
    vertical-align: middle;
    display: inline-block;
}

.city-county.miami { background: rgba(135,206,235,0.15); color: #87CEEB; border: 1px solid rgba(135,206,235,0.3); }
.city-county.broward { background: rgba(144,238,144,0.15); color: #90EE90; border: 1px solid rgba(144,238,144,0.3); }
.city-county.palm { background: rgba(255,215,0,0.15); color: #FFD700; border: 1px solid rgba(255,215,0,0.3); }

/* ========== MARQUEE BAR ========== */
/* MARQUEE BAR - MIDDLE */
.marquee-bar {
    position: fixed;
    bottom: 52px;
    left: 0;
    right: 0;
    height: 36px;
    background: #800000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(201,168,76,0.3);
    border-bottom: none;
    z-index: 998;
    margin: 0;
    padding: 0;
}

.marquee-bar .mw {
    width: 100%;
    max-width: 1200px;
    height: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.marquee-bar .mm { width: 100%; overflow: hidden; }

.marquee-bar .mc {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 20px;
    white-space: nowrap;
    display: inline-block;
    line-height: 40px;
    animation: marqueeScroll 150s linear infinite;
    padding-left: 100vw;
}

.marquee-bar:hover .mc { animation-play-state: paused; }

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-bar .mc span {
    display: inline-block;
    white-space: nowrap;
    margin: 0 4px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.marquee-bar .mc .sep {
    color: #FFD700;
    opacity: 0.45;
    font-size: 8px;
    margin: 0 3px;
}

.marquee-bar .mc .cta {
    background: #FFD700;
    color: #800000;
    font-weight: 700;
    font-size: 20px;
    padding: 3px 12px;
    border-radius: 20px;
    margin: 0 10px;
    text-shadow: none;
    display: inline-block;
    vertical-align: middle;
    animation: cta-pulse 1.4s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.7); }
    50% { box-shadow: 0 0 0 7px rgba(255,215,0,0); }
}

.marquee-bar .mc .white { color: #FFFFFF; }
.marquee-bar .mc .ivory { color: #FFFDD0; }
.marquee-bar .mc .cream { color: #FFFFCC; }
.marquee-bar .mc .gold { color: #FFD700; }
.marquee-bar .mc .light-gold { color: #F9A602; }
.marquee-bar .mc .bright-yellow { color: #FFFF00; }
.marquee-bar .mc .lime { color: #CCFF00; }
.marquee-bar .mc .light-cyan { color: #CCFFFF; }
.marquee-bar .mc .aqua { color: #00FFFF; }
.marquee-bar .mc .turquoise { color: #40E0D0; }
.marquee-bar .mc .cream-yellow { color: #FFFACD; }
.marquee-bar .mc .lime-soft { color: #D0F0C0; }
.marquee-bar .mc .lemon { color: #FFF700; }
.marquee-bar .mc .mint { color: #98FB98; }
.marquee-bar .mc .sky-blue { color: #87CEEB; }
.marquee-bar .mc .yellow-soft { color: #FFF59D; }

/* ========== FLOATING BUTTON BAR ========== */
/* FLOATING BUTTON BAR - BOTTOM */
/* ========== FLOATING BUTTON BAR - VERTICALLY CENTERED ========== */
.fbb {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #020024;
    border-top: 1px solid rgba(201,168,76,.3);
    display: flex;
    align-items: center;  /* This centers vertically */
    justify-content: center;
    z-index: 999;
}

.fbb-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;  /* This centers vertically */
    justify-content: center;
    padding: 0 10px;
}

.fbb-buttons {
    display: flex;
    align-items: center;  /* This centers vertically */
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

.fbb-btn {
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
    white-space: nowrap;
    line-height: 1;  /* This removes extra spacing */
}

.fbb-btn:hover { transform: translateY(-2px); }
.fbb-btn.gold { background: linear-gradient(135deg, #c9a84c, #e4c97a); color: #020024; }
.fbb-btn.green { background: #25d366; color: #fff; }
.fbb-btn.blue { background: #1a3a8f; color: #fff; }

/* ========== FOOTER ========== */
footer {
    background: var(--navy);
    padding: 60px 40px 30px;
    color: rgba(255,255,255,.5);
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 16px;
    color: rgba(68, 219, 227, 1);
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: rgba(176,244,247,.7);
    text-decoration: none;
    font-size: 12px;
    padding: 5px 0;
    transition: color .2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

.social-icons a img {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icons a:hover img {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Responsive for bottom bars */
@media (max-width: 768px) {
    .city-ticker { bottom: 98px; height: 32px; }
    .city-ticker-content { font-size: 10px; line-height: 32px; }
    .marquee-bar { bottom: 46px; height: 46px; }
    .marquee-bar .mc { font-size: 11px; line-height: 46px; }
    .fbb { height: 46px; }
    .fbb-btn { padding: 5px 8px; font-size: 9px; }
}

@media (max-width: 480px) {
    .city-ticker { bottom: 92px; height: 28px; }
    .city-ticker-content { font-size: 9px; line-height: 28px; }
    .marquee-bar { bottom: 44px; height: 44px; }
    .marquee-bar .mc { font-size: 10px; line-height: 44px; }
    .fbb { height: 44px; }
}
/* Responsive Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-container iframe,
.video-container video,
#player {
    width: 100%;
    height: auto;
    min-height: 300px;
    aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
    .video-container {
        margin: 15px auto;
        border-radius: 12px;
    }
}

/* ========== CTA STRIP ========== */
.cta-strip {
    background: rgba(211, 13, 72, 1.0);
background: linear-gradient(315deg, rgba(211, 13, 72, 1.0), rgba(142, 16, 26, 1.0));
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%);
}

.cta-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.5vw, 42px);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

.cta-strip h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-strip-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cta-call {
    background: #fff;
    color: var(--navy);
    padding: 16px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .2s;
}

.btn-cta-call:hover {
    background: var(--gold-pale);
    transform: translateY(-2px);
}

.btn-cta-wa {
    background: #25d366;
    color: #fff;
    padding: 16px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .2s;
}

.btn-cta-wa:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}
/* ========== ADD THIS AT THE VERY BOTTOM ========== */
/* Fix for mobile - remove gaps between bars */
@media (max-width: 768px) {
    .city-ticker {
        bottom: 82px !important;
        height: 32px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .marquee-bar {
        bottom: 46px !important;
        height: 36px !important;
        margin: 0 !important;
        padding: 0 !important;
        border-top: 1px solid rgba(201,168,76,0.3);
        border-bottom: none;
    }
    
    .fbb {
        height: 46px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .city-ticker-track,
    .marquee-bar .mw,
    .marquee-bar .mm,
    .fbb-inner {
        margin: 0 !important;
        padding: 0 !important;
    }
}


/* Hero Section - Clean white like eMortgage */
.hero-section {
    background: white;
    padding: 48px 24px 64px;
    text-align: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    max-width: 800px;
    margin: 0 auto 16px;
}

.hero-title span {
    color: #0056b3;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 48px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.highlight {
    color: #ffd700;
}

.tiles-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tile {
    flex: 1;
    min-width: 200px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #eef2f6;
    cursor: pointer;
}

.tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
    border-color: #0056b3;
}

.tile-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tile-title {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.tile-arrow {
    color: #0056b3;
    font-size: 20px;
    margin-top: 12px;
    display: inline-block;
}

/* How It Works */
.how-it-works {
    background: var(--gray-light);
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2, .testimonials h2, .application-embed h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark);
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step-card h3 {
    margin-bottom: 10px;
}

/* Video */

.video-section {
    padding: 60px 0;
    background: var(--cream);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

#player {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 40px 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
}

.badge-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

/* How It Works */
.how-it-works {
    background: var(--gray-light);
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2, .testimonials h2, .application-embed h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark);
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step-card h3 {
    margin-bottom: 10px;
}

/* Add to your CSS or use inline styles */
.feature-card:nth-child(1) { background: #e8f0fe; }  /* Soft Blue */
.feature-card:nth-child(2) { background: #e6f4ea; }  /* Soft Green */
.feature-card:nth-child(3) { background: #fef9e6; }  /* Soft Yellow */
.feature-card:nth-child(4) { background: #f3e8ff; }  /* Soft Purple */
.feature-card:nth-child(5) { background: #ffe8e8; }  /* Soft Pink */
.feature-card:nth-child(6) { background: #e0f7fa; }  /* Soft Cyan */
.feature-card:nth-child(7) { background: #fff3e0; }  /* Soft Orange */
.feature-card:nth-child(8) { background: #e8f5e9; }  /* Soft Mint */
.feature-card:nth-child(9) { background: #fce4ec; }  /* Soft Rose */
.feature-card:nth-child(10) { background: #e3f2fd; } /* Soft Light Blue */