/* ==========================================================================
   SRIVARI EVENT CRAFTS & DECORS - STYLESHEET
   Brand Colors: Deep Navy, Ivory/Cream, Antique Gold, White, Subtle Charcoal
   ========================================================================== */

:root {
    --primary-navy: #0A192F;
    --navy-light: #172A45;
    --antique-gold: #C5A059;
    --gold-hover: #D4AF37;
    --bg-cream: #FDFBF7;
    --card-bg: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --text-light: #E6F1FF;
    --border-gold: rgba(197, 160, 89, 0.3);
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    font-weight: 700;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
}

.center {
    text-align: center;
}

.section-tagline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--antique-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-standard);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--antique-gold);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: var(--antique-gold);
}

.btn-secondary:hover {
    background-color: var(--antique-gold);
    color: #FFFFFF;
}

.btn-gold {
    background-color: transparent;
    color: var(--antique-gold);
    border-color: var(--antique-gold);
}

.btn-gold:hover {
    background-color: var(--antique-gold);
    color: #FFFFFF;
}

/* 1. STICKY NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-gold);
    transition: var(--transition-standard);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

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

.nav-logo {
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text small {
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 1px;
    color: var(--antique-gold);
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-item:hover {
    color: var(--antique-gold);
}

.nav-cta-mobile {
    display: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-standard);
}

/* 2. HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 0 1rem;
}

/* Inside style.css */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/homepage bg.jpg'); /* <-- ADD THIS LINE */
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 50px auto 0 auto;
    text-align: center;
}

.hero-title {
    color: #FFFFFF;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--antique-gold);
    font-size: 2.25rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: 400;
}

.hero-subtitle {
    color: var(--text-light); 
    font-size: 0.98rem; /* Made slightly smaller */ 
    line-height: 1.6; max-width: 580px; 
    margin: 0 auto 2rem auto; /* Horizontally centers paragraph block */ 
    font-weight: 300;
}

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

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--antique-gold);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--antique-gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* 3. TRUST / STATISTICS */
.stats {
    background-color: var(--primary-navy);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 3rem 0;
}

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

.stat-card {
    text-align: center;
}

.stat-number {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 700;
    color: var(--antique-gold);
}

.stat-card .plus {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--antique-gold);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* 4. ABOUT US */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.about-border-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--antique-gold);
    border-radius: 4px;
    z-index: 0;
}

.about-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-feature-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.gold-icon {
    color: var(--antique-gold);
    margin-right: 8px;
}

/* 5. SERVICES */
.services {
    background-color: rgba(10, 25, 47, 0.03);
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 3px solid transparent;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--antique-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    color: var(--antique-gold);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    flex-grow: 1;
}

.card-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--antique-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    display: inline-block;
}

/* 6. WHY CHOOSE US */
.why-us {
    background-color: var(--primary-navy);
    color: #FFFFFF;
}

.why-us h2 {
    color: #FFFFFF;
}

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

.why-item {
    background: rgba(23, 42, 69, 0.4); 
    border: 1px solid var(--border-gold); 
    padding: 2.25rem 2rem; 
    border-radius: 4px; 
    transition: var(--transition-standard); 
    position: relative;
}

.why-item:hover {
    background-color: var(--navy-light);
    border-color: var(--antique-gold); 
    transform: translateY(-4px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--antique-gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.why-item h3 {
    font-family: var(--font-heading); 
    color: var(--antique-gold); 
    font-size: 1.4rem; 
    font-weight: 600; 
    letter-spacing: 0.5px; 
    line-height: 1.3; 
    margin-bottom: 0.85rem;
}

.why-item p {
    font-family: var(--font-body); 
    color: #C0C9D7; /* Soft light-blue grey for clear contrast */ 
    font-size: 0.9rem; 
    font-weight: 300; 
    line-height: 1.6; 
    margin-bottom: 0;
}

/* 7. PORTFOLIO / OUR WORK */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch; /* Forces equal width/height across columns */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background-color: var(--primary-navy);
    border: 1px solid var(--border-gold);
    width: 100%;
}

/* Row 1: Fixed Landscape Ratio */
.gallery-item.item-image {
    aspect-ratio: 16 / 10;
}

/* Row 2: Fixed Portrait Ratio */
.gallery-item.item-reel {
    aspect-ratio: 9 / 16;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Reel Overlay Badge */
.reel-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 25, 47, 0.85);
    color: var(--antique-gold);
    border: 1px solid var(--border-gold);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
    z-index: 2;
    pointer-events: none;
}

/* Sound Button */
.mute-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(10, 25, 47, 0.85);
    border: 1px solid var(--border-gold);
    color: var(--antique-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-standard);
}

.mute-btn:hover {
    background-color: var(--antique-gold);
    color: #FFFFFF;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-standard);
    z-index: 3;
}

.gallery-overlay span {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-bottom: 1px solid var(--antique-gold);
    padding-bottom: 4px;
    text-align: center;
    pointer-events: none;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* LIGHTBOX MODAL STYLING */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    border: 2px solid var(--antique-gold);
    border-radius: 4px;
}

#lightbox-video {
    background-color: #000000;
    outline: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #FFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

#lightbox-caption {
    color: var(--text-light);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}
/* 8. EVENT MANAGEMENT PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-card {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
}

.process-step {
    width: 50px;
    height: 50px;
    background-color: var(--primary-navy);
    color: var(--antique-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

/* 9. SERVICE AREAS */
.service-areas {
    background-color: rgba(10, 25, 47, 0.03);
}

.areas-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.primary-location {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border: 1px solid var(--border-gold);
    display: inline-block;
    border-radius: 4px;
}

.loc-badge {
    font-size: 0.65rem;
    background-color: var(--antique-gold);
    color: #FFFFFF;
    padding: 2px 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.primary-location h3 {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

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

.state-box {
    background-color: var(--primary-navy);
    padding: 1.25rem 1rem;
    border-radius: 4px;
}

.state-box h4 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* 10. FINAL CALL TO ACTION */
.final-cta {
    background: linear-gradient(180deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: #FFFFFF;
    padding: 6rem 0;
}

.final-cta h2 {
    color: #FFFFFF;
    font-size: 2.75rem;
}

.final-cta p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

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

/* 11. CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--antique-gold);
    margin-bottom: 0.25rem;
}

.contact-item p, .contact-item a {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-item a:hover {
    color: var(--antique-gold);
}

.map-container {
    height: 100%;
    min-height: 350px;
    border: 1px solid var(--border-gold);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* 12. FOOTER & FLOATING WHATSAPP */
./* FOUNDERS SECTION */
.founders-section {
    padding: 5rem 0;
    background-color: #F8F9FA;
}

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

.founder-card {
    background: #FFFFFF;
    border: 1px solid var(--border-gold, #D4AF37);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.founder-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--antique-gold, #D4AF37);
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-navy, #0A192F);
    margin-bottom: 0.25rem;
}

.founder-role {
    display: inline-block;
    color: var(--antique-gold, #D4AF37);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.founder-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FLOATING SOCIAL MEDIA WIDGET */
.floating-socials {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFFFFF;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #FFFFFF;
}

.floating-btn svg {
    width: 26px;
    height: 26px;
}
/* FOOTER BOTTOM & AGENCY CREDIT */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2); /* Soft gold divider */
    font-size: 0.875rem;
    color: var(--text-muted, #A0AEC0);
}

.agency-credit a {
    color: var(--antique-gold, #D4AF37);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.agency-credit a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Mobile responsive layout */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
/* SECTION SCROLL ANIMATION */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
}
/* Mobile responsive layout */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* RESPONSIVE DESIGN (MOBILE-FIRST BREAKPOINTS) */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .states-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--primary-navy);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-standard);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-cta-mobile {
        display: inline-flex;
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-title .highlight {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-border-accent {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}
/* GEOGRAPHIC COVERAGE SECTION */
.geographic-coverage {
    padding: 5rem 0;
    background-color: #F8F6F0; /* Soft luxury off-white background */
    text-align: center;
}

/* Primary Hub Box Wrapper */
.primary-hub-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0 2.5rem 0;
}

.primary-hub-card {
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 1.5rem 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: inline-block;
}

.hub-tag {
    display: inline-block;
    background-color: var(--antique-gold, #D4AF37);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 2px;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.primary-hub-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-navy, #0A192F);
    margin: 0;
}

/* 4 State Cards Grid */
.states-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.state-card {
    background-color: var(--primary-navy, #0A192F);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.state-card:hover {
    transform: translateY(-4px);
    border-color: var(--antique-gold, #D4AF37);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .primary-hub-card {
        padding: 1.25rem 1.5rem;
        width: 100%;
    }
}

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