/* ==================================
   VARS & MODERN RESET
   ================================== */
:root {
    /* Brand Colors (extracted from logo approx) */
    --clr-blue: #085098;
    --clr-blue-light: #e6f0fa;
    --clr-blue-dark: #053b72;
    --clr-green: #31a141;
    --clr-green-light: #eaf6ec;
    --clr-green-dark: #237a30;
    --clr-yellow: #ecd02a;
    --clr-yellow-light: #fefbeb;
    --clr-orange: #f97316;
    --clr-orange-light: #fff7ed;

    /* Neutrals */
    --clr-bg: #ffffff;
    --clr-bg-light: #f8fafc;
    --clr-text-main: #0f172a;
    --clr-text-muted: #475569;
    --clr-text-light: #94a3b8;
    --clr-border: #e2e8f0;

    /* Typograpy */
    --font-main: 'Outfit', system-ui, -apple-system, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Utils */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
}

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

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

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

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

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

/* ==================================
   UTILITIES & LAYOUT
   ================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.bg-light { background-color: var(--clr-bg-light); }
.text-center { text-align: center; }

/* Text Colors */
.text-blue { color: var(--clr-blue) !important; }
.text-green { color: var(--clr-green) !important; }
.text-yellow { color: var(--clr-yellow) !important; }
.text-white { color: white !important; }
.text-dark { color: var(--clr-text-main) !important; }

/* Backgrounds */
.bg-blue-light { background-color: var(--clr-blue-light); }
.bg-green-light { background-color: var(--clr-green-light); }
.bg-yellow-light { background-color: var(--clr-yellow-light); }
.bg-green { background-color: var(--clr-green) !important; color: white !important;}
.bg-yellow { background-color: var(--clr-yellow) !important; color: #000 !important; }
.bg-blue { background-color: var(--clr-blue) !important; color: white !important; }
.bg-orange { background-color: var(--clr-orange) !important; color: white !important; }

.mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; }

/* Grid Systems */
.grid {
    display: grid;
    gap: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--clr-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--clr-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--clr-text-main);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--clr-green);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--clr-blue);
    color: var(--clr-blue);
}

.btn-outline-primary:hover {
    background-color: var(--clr-blue);
    color: white;
}

/* ==================================
   HEADER & NAVBAR
   ================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--clr-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links .nav-link {
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-green);
    transition: var(--transition);
}

.nav-links .nav-link:hover {
    color: var(--clr-blue);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-main);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    background-color: white;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--clr-border);
    font-weight: 500;
}

/* ==================================
   HERO SECTION
   ================================== */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 8rem;
    background: linear-gradient(135deg, var(--clr-bg-light) 0%, white 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pill-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--clr-green-light);
    color: var(--clr-green-dark);
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
}

.highlight-text-green { color: var(--clr-green); }
.highlight-text-blue { color: var(--clr-blue); }

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-blue);
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--clr-border);
}

/* Hero Image & Decorations */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    z-index: 1;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    height: 600px;
    width: 100%;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -10%;
}

.badge-2 {
    bottom: 10%;
    right: -10%;
    animation-delay: 2s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-blue-light);
    color: var(--clr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.badge-icon.green {
    background-color: var(--clr-green-light);
    color: var(--clr-green);
}

.floating-badge strong {
    display: block;
    font-size: 1rem;
    color: var(--clr-text-main);
}

.floating-badge span {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

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

/* Waves */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: #ffffff;
}

/* ==================================
   FEATURES / SERVICES
   ================================== */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
}

.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--clr-border);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.blue-icon { background-color: var(--clr-blue-light); color: var(--clr-blue); }
.green-icon { background-color: var(--clr-green-light); color: var(--clr-green); }
.yellow-icon { background-color: var(--clr-yellow-light); color: #d0b000; }
.orange-icon { background-color: var(--clr-orange-light); color: var(--clr-orange); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==================================
   PROMOTIONS
   ================================== */
.promo-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.promo-header {
    position: relative;
    height: 200px;
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.promo-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon {
    font-size: 5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.promo-card:hover .promo-icon {
    transform: scale(1.1);
}

.promo-details {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promo-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-details p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* ==================================
   LOCATIONS
   ================================== */
.locations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.locations-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.locations-text p {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.states-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.state-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--clr-bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.state-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.state-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.state-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Interactive Google Map */
.real-map {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    background-color: var(--clr-bg-light);
}

.real-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.map-overlay h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-blue);
    margin-bottom: 0.5rem;
}

.map-overlay p {
    margin: 0;
    font-size: 0.95rem;
}

/* ==================================
   FOOTER
   ================================== */
.footer {
    background-color: var(--clr-blue-dark);
    color: white;
    padding-top: 5rem;
}

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

.footer-slogan {
    color: var(--clr-text-light);
    margin-bottom: 2rem;
    max-width: 300px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--clr-green);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links a {
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--clr-green);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--clr-text-light);
}

.contact-info i {
    color: var(--clr-green);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    color: var(--clr-text-light);
    font-size: 0.875rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: white;
}

/* ==================================
   ANIMATIONS & REVEALS
   ================================== */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Para JS scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==================================
   RESPONSIVE
   ================================== */
@media (max-width: 1024px) {
    .hero-content, .locations-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        padding-top: 120px;
    }

    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .badge-1 {
        left: 0;
        top: 5%;
    }

    .badge-2 {
        right: 0;
        bottom: 5%;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-badge {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .floating-badge strong {
        font-size: 0.85rem;
    }
    
    .floating-badge span {
        font-size: 0.75rem;
    }
}

/* ==================================
   GEOLOCATION BANNER
   ================================== */
.geolocation-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: var(--clr-blue-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: max-content;
    max-width: 90%;
}

.geolocation-banner.show {
    transform: translateX(-50%) translateY(0);
}

.geolocation-banner.hidden {
    display: none !important;
}

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

.banner-icon {
    font-size: 1.5rem;
    color: var(--clr-green);
}

.banner-content p {
    margin: 0;
    font-size: 1.1rem;
}

.banner-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .geolocation-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    .banner-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* ==================================
   UNAVAILABLE OVERLAY
   ================================== */
.promo-card {
    position: relative;
}

.unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text-main);
    transition: var(--transition);
}

.unavailable-overlay.hidden {
    display: none !important;
}
