/* ========== 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');

/* ========== 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-top {
    background: var(--navy);
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201,168,76,.3);
    flex-wrap: wrap;
    gap: 15px;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text-main {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    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-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-phone a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

.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 .2s;
}

.btn-header-quote:hover { transform: translateY(-2px); }

/* ========== NAVIGATION ========== */
.main-nav {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
}

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

.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;
}

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

/* ========== MAIN CONTENT (NO SIDEBAR) ========== */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.main-content {
    width: 100%;
}

/* Image Grid */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.image-grid a {
    display: block;
}

.image-grid img {
    height: 50px;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #020024 0%, #090979 50%, #002a5e 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: center;
    position: relative;
    z-index: 1;
}

.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 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 h1 em { font-style: italic; color: var(--gold); }

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

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    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: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    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); }

/* ========== HERO CARD ========== */
.hero-card {
    background: var(--white);
    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: var(--navy);
    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); }

/* ========== STATS SECTION ========== */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: var(--text-mid);
    margin-top: 8px;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 80px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-pale), var(--cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

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

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

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    text-align: center;
    border-radius: 16px;
    margin: 40px 0;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(10,22,40,0.7);
    margin-bottom: 30px;
}

.btn-cta-dark {
    background: var(--navy);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .2s;
}

.btn-cta-dark:hover { transform: translateY(-2px); background: var(--navy-mid); }

/* ========== CITY TICKER ========== */
.city-ticker {
    position: fixed;
    bottom: 92px;
    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: 36px;
    display: flex;
    align-items: center;
    z-index: 997;
}

.city-ticker::before,
.city-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.city-ticker::before {
    left: 0;
    background: linear-gradient(to right, #0a1628, transparent);
}

.city-ticker::after {
    right: 0;
    background: linear-gradient(to left, #0a1628, transparent);
}

.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: 36px;
}

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

.city-ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: cityScroll 150s linear infinite;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 36px;
}

.city-ticker:hover .city-ticker-content {
    animation-play-state: paused;
}

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

.city-county {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin: 0 12px;
    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); }

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

/* ========== MARQUEE BAR ========== */
.marquee-bar {
    position: fixed;
    bottom: 52px;
    left: 0;
    right: 0;
    height: 40px;
    background: #800000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
}

.marquee-bar::before,
.marquee-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-bar::before {
    left: 0;
    background: linear-gradient(to right, #800000 0%, transparent 100%);
}

.marquee-bar::after {
    right: 0;
    background: linear-gradient(to left, #800000 0%, transparent 100%);
}

.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: 17px;
    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; }

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

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

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

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

@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 Colors */
.marquee-bar .mc .white { color: #FFFFFF; }
.marquee-bar .mc .cream { color: #FFFFCC; }
.marquee-bar .mc .ivory { color: #FFFDD0; }
.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; }

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

.fbb-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.fbb-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.fbb-btn {
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
    white-space: nowrap;
}

.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 WITH ALL LINKS ========== */
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;
}

.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; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .header-top { flex-direction: column; text-align: center; }
    .hero { padding: 50px 20px; }
}

@media (max-width: 768px) {
    body { padding-bottom: 118px; }
    .fbb { height: 46px; }
    .marquee-bar { bottom: 46px; height: 36px; }
    .marquee-bar .mw { height: 36px; }
    .marquee-bar .mc { font-size: 13px; line-height: 36px; }
    .city-ticker { bottom: 82px; height: 30px; }
    .city-ticker-content { font-size: 11px; line-height: 30px; }
    .stats-grid { grid-template-columns: 1fr; }
    .main-nav ul { justify-content: center; }
    .main-nav ul li a { padding: 10px 12px; font-size: 11px; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    body { padding-bottom: 110px; }
    .fbb { height: 42px; }
    .marquee-bar { bottom: 42px; height: 32px; }
    .marquee-bar .mc { font-size: 12px; line-height: 32px; }
    .city-ticker { bottom: 74px; height: 28px; }
    .city-ticker-content { font-size: 10px; line-height: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; justify-content: center; }
}

