/* =========================
   GLOBAL VARIABLES & RESET
==========================*/
:root {
    --primary-color: #0B192C; /* Deep Navy Blue */
    --secondary-color: #FFB200; /* Vibrant Gold */
    --accent-color: #3B82F6; /* Bright Blue */
    --text-dark: #1E293B;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --font-family: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 92%; max-width: 1440px; margin: auto; }
.text-gold { color: var(--secondary-color) !important; }
.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary-color) !important; }

/* =========================
   ANIMATIONS
==========================*/
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-in { opacity: 1; transform: translateY(0); }

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

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 178, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 178, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 178, 0, 0); }
}

/* =========================
   BUTTONS
==========================*/
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 28px;
    border-radius: 50px; font-weight: 600; font-size: 16px;
    transition: var(--transition); cursor: pointer; border: none;
    position: relative; overflow: hidden; z-index: 1;
}

.btn-sm { padding: 10px 22px; font-size: 15px; }

.btn-primary {
    background: var(--secondary-color); color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 178, 0, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 178, 0, 0.4);
    background: #FFC033;
}

.btn-outline {
    background: rgba(255,255,255,0.1); color: var(--white);
    border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(5px);
}
.btn-outline:hover { background: var(--white); color: var(--primary-color); }

/* =========================
   HEADER & NAVIGATION
==========================*/
.glass-header {
    width: 100%; position: fixed; top: 0; z-index: 1000;
    background: var(--white); transition: var(--transition);
    padding: 15px 0; border-bottom: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}
.glass-header.scrolled {
    padding: 10px 0;
}

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

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 80px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.logo-text h2 { color: var(--primary-color); font-size: 22px; font-weight: 800; margin-bottom: -5px; letter-spacing: -0.5px;}
.logo-text p { color: var(--secondary-color); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}

nav ul.nav-list { display: flex; list-style: none; gap: 5px; align-items: center; }
.nav-link {
    color: var(--text-dark); font-weight: 500; font-size: 15px;
    padding: 8px 16px; border-radius: 20px; transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover { background: rgba(11, 25, 44, 0.05); color: var(--primary-color); }

.dropdown { position: relative; }
.nav-arrow { font-size: 10px; margin-left: 5px; transition: transform 0.3s; }
.dropdown:hover .nav-arrow { transform: rotate(180deg); }

.glass-panel {
    background: var(--white); backdrop-filter: blur(20px);
    border: var(--glass-border); box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md); padding: 10px;
}
.dropdown-menu {
    display: block; position: absolute; top: 120%; left: 0;
    min-width: 240px; flex-direction: column; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: var(--transition);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: flex; align-items: center; gap: 10px; padding: 10px 15px;
    border-radius: 8px; color: var(--text-dark); font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--bg-light); color: var(--primary-color); padding-left: 20px; }

.nav-contact-box {
    display: flex; align-items: center; gap: 12px; padding: 8px 16px;
    border: 1px solid var(--secondary-color); border-radius: 8px;
    background: white;
}
.nav-contact-box i { font-size: 24px; color: var(--secondary-color); transform: rotate(-20deg); }
.nav-contact-box div { display: flex; flex-direction: column; }
.nav-phone { font-size: 16px; font-weight: 800; color: var(--text-dark); line-height: 1; margin-bottom: 2px; }
.nav-tollfree { font-size: 12px; color: var(--text-light); line-height: 1; }

.menu-toggle { display: none; font-size: 28px; cursor: pointer; color: var(--primary-color); }

/* =========================
   HERO SECTION
==========================*/
.hero {
    position: relative; display: flex; align-items: center;
    padding: 60px 0 40px; overflow: hidden; background: var(--primary-color);
    background: url('assets/images/home-family.png') no-repeat center right;
    background-size: contain;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(11,25,44,0.95) 0%, rgba(11,25,44,0.8) 40%, transparent 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 10; display: flex; width: 100%; }

.hero-text { max-width: 650px; padding: 20px 0; }

.subtitle {
    display: block; font-size: 14px; font-weight: 700; letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero-text h1 {
    font-size: 56px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 25px;
}
.hero-text p {
    font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 30px; font-weight: 300; line-height: 1.8;
}
.hero-features-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.h-feat { color: var(--white); font-size: 17px; display: flex; align-items: center; gap: 15px; }

.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-outline-gold {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 28px;
    border-radius: 50px; font-weight: 600; font-size: 16px;
    transition: var(--transition); cursor: pointer;
    background: transparent; color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}
.btn-outline-gold:hover { background: var(--secondary-color); color: var(--primary-color); }

/* =========================
   STATS BAR
==========================*/
.stats-wrapper { margin-top: -60px; position: relative; z-index: 20; }
.stats-grid {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 40px 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.02);
}
.stat-box { display: flex; align-items: center; gap: 20px; position: relative; }
.stat-box:not(:last-child)::after {
    content: ''; position: absolute; right: -15px; top: 10%; height: 80%;
    width: 1px; background: #E2E8F0;
}
.stat-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: rgba(11, 25, 44, 0.05); color: var(--primary-color);
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    transition: var(--transition);
}
.stat-box:hover .stat-icon { background: var(--primary-color); color: var(--secondary-color); transform: rotate(5deg); }
.stat-info h2 { font-size: 32px; font-weight: 800; color: var(--primary-color); line-height: 1; margin-bottom: 5px;}
.stat-info p { color: var(--text-light); font-size: 14px; font-weight: 500;}

/* =========================
   SECTION HEADERS
==========================*/
.section-padding { padding: 100px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-subtitle {
    display: inline-block; color: var(--accent-color); font-weight: 600; font-size: 14px;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
    background: rgba(59, 130, 246, 0.1); padding: 6px 15px; border-radius: 50px;
}
.section-title { font-size: 42px; font-weight: 800; color: var(--primary-color); margin-bottom: 20px; line-height: 1.2;}
.section-desc { color: var(--text-light); font-size: 16px; }

/* =========================
   INSURANCE PLANS CARDS
==========================*/
.premium-plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.premium-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px 30px;
    box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition); position: relative; overflow: hidden; z-index: 1;
}
.premium-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    transition: height 0.4s ease; z-index: -1;
}
.premium-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.premium-card:hover::before { height: 100%; }

.card-icon {
    width: 70px; height: 70px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center; font-size: 32px;
    margin-bottom: 25px; transition: var(--transition);
}
.premium-card:hover .card-icon { background: rgba(255,255,255,0.1) !important; color: var(--secondary-color) !important; }
.premium-card h3 { font-size: 22px; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; transition: var(--transition);}
.premium-card p { color: var(--text-light); font-size: 15px; margin-bottom: 25px; transition: var(--transition); line-height: 1.6;}
.premium-card:hover h3, .premium-card:hover p { color: var(--white); }

.card-link {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 600;
    color: var(--accent-color); transition: var(--transition);
}
.premium-card:hover .card-link { color: var(--secondary-color); }
.card-link i { transition: transform 0.3s; }
.premium-card:hover .card-link i { transform: translateX(5px); }

/* Color variants for icons */
.c-blue .card-icon { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.c-green .card-icon { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.c-purple .card-icon { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.c-orange .card-icon { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

/* =========================
   WHY US SPLIT SECTION
==========================*/
.split-wrap { display: flex; align-items: center; gap: 60px; }
.split-image { flex: 1; position: relative; }
.split-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.floating-box {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--white); padding: 30px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 20px;
    animation: float 5s infinite;
}
.floating-box i { font-size: 40px; color: var(--secondary-color); }
.floating-box h4 { font-size: 20px; color: var(--primary-color); }

.split-text { flex: 1; }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px;}
.f-item { display: flex; align-items: flex-start; gap: 15px; }
.f-icon {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--primary-color); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.f-item p { color: var(--text-dark); font-weight: 500; font-size: 16px; margin-top: 3px;}

/* =========================
   GALLERY
==========================*/
.gallery-slider-container {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
}
.gallery-track {
    display: flex;
    width: max-content;
    gap: 20px;
}
.gallery-track:hover {
    animation-play-state: paused;
}
.gallery-track-left {
    animation: slide-left 35s linear infinite;
}
.gallery-track-right {
    animation: slide-right 35s linear infinite;
}

@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes slide-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.gallery-img {
    height: 250px; width: 350px; flex-shrink: 0;
    border-radius: var(--radius-md); overflow: hidden;
    position: relative; cursor: zoom-in;
}
.gallery-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.gallery-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,25,44,0.6), transparent);
    opacity: 0; transition: var(--transition); pointer-events: none;
}
.gallery-img:hover img { transform: scale(1.1); }
.gallery-img:hover::after { opacity: 1; }

/* =========================
   LIGHTBOX
==========================*/
.lightbox {
    display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); align-items: center; justify-content: center; backdrop-filter: blur(5px);
}
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 10px; box-shadow: 0 0 30px rgba(0,0,0,0.5); object-fit: contain; }
.lightbox.active { display: flex; }
.lightbox-close { position: absolute; top: 20px; right: 40px; color: white; font-size: 50px; cursor: pointer; transition: 0.3s; }
.lightbox-close:hover { color: var(--secondary-color); transform: scale(1.1); }

/* =========================
   FOOTER
==========================*/
.premium-footer { background: var(--primary-color); color: var(--white); padding: 80px 0 20px; position: relative; overflow: hidden; }
.premium-footer::before {
    content: ''; position: absolute; top: 0; right: 0; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,178,0,0.1) 0%, rgba(0,0,0,0) 70%); border-radius: 50%;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px;}

.footer-desc { color: rgba(255,255,255,0.7); margin: 20px 0; font-size: 15px; max-width: 400px; }
.social-links { display: flex; gap: 15px; }
.social-icon {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; color: var(--white);
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover { background: var(--secondary-color); color: var(--primary-color); transform: translateY(-3px); }

.footer-links h3, .footer-contact h3 { font-size: 20px; color: var(--white); margin-bottom: 25px; font-weight: 600;}
.footer-links ul li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); }
.footer-links a i { font-size: 12px; color: var(--secondary-color); }
.footer-links a:hover { color: var(--secondary-color); transform: translateX(5px); }

.contact-item { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-item .icon-box {
    width: 40px; height: 40px; border-radius: 10px; background: rgba(255,178,0,0.1);
    color: var(--secondary-color); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 2px;}
.contact-item p { font-size: 15px; color: var(--white); }

.footer-partners { text-align: center; margin-bottom: 40px; }
.footer-partners p { color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; margin-bottom: 20px;}
.partner-logos-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; align-items: center;}
.partner-logos-grid img { height: 40px; max-width: 130px; object-fit: contain; background: white; padding: 5px; border-radius: 5px; transition: var(--transition); }
.partner-logos-grid img:hover { transform: scale(1.05); }

.footer-bottom { text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; }

/* =========================
   PAGE BANNERS
==========================*/
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    padding: 120px 0 80px; text-align: center; color: var(--white);
    position: relative; overflow: hidden;
}
.page-banner::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}
.page-banner h1 { font-size: 48px; font-weight: 800; margin-bottom: 15px; position: relative; z-index: 2;}
.page-banner p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; margin: auto; position: relative; z-index: 2;}

/* =========================
   SUBPAGE SPECIFICS
==========================*/
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info-card {
    background: var(--primary-color); color: var(--white); padding: 40px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.contact-info-card h3 { font-size: 28px; margin-bottom: 30px; color: var(--secondary-color);}
.c-info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.c-info-item i { font-size: 24px; color: var(--secondary-color); margin-top: 5px;}
.c-info-item h4 { font-size: 18px; margin-bottom: 5px; color: var(--white);}
.c-info-item p { color: rgba(255,255,255,0.7); }

.contact-form-wrap { background: var(--white); padding: 50px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 25px; position: relative; }
.form-control {
    width: 100%; padding: 15px 20px; border: 1px solid #E2E8F0; border-radius: var(--radius-md);
    background: var(--bg-light); font-family: var(--font-family); font-size: 16px;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--accent-color); background: var(--white); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); }
textarea.form-control { resize: vertical; min-height: 150px; }

/* Grid blocks for About / Why us */
.grid-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card {
    background: var(--white); padding: 40px 30px; border-radius: var(--radius-lg);
    text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition);
    border-bottom: 4px solid var(--secondary-color);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card i { font-size: 40px; color: var(--primary-color); margin-bottom: 20px; }
.info-card h3 { font-size: 20px; color: var(--primary-color); margin-bottom: 15px; }

/* =========================
   RESPONSIVE
==========================*/
@media (max-width: 1350px) {
    .nav-link { padding: 8px 10px; font-size: 14px; }
    .logo-text h2 { font-size: 20px; }
    .nav-contact-box { padding: 6px 12px; }
    .nav-contact-box i { font-size: 20px; }
    .nav-phone { font-size: 14px; }
    .hero-text h1 { font-size: 48px; }
}

@media (max-width: 1024px) {
    /* Mobile Menu Activated at 1024px */
    .menu-toggle { display: block; }
    .nav-list {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0;
        width: 100%; background: var(--white); padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); opacity: 0; visibility: hidden;
        transform: translateY(-10px); transition: var(--transition);
    }
    .nav-list.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; background: transparent; border: none; padding-left: 15px;}
    .dropdown:hover .dropdown-menu { display: flex; }
    .nav-link { display: block; padding: 12px 15px; font-size: 16px; border-radius: 8px; }
    .nav-contact-box { display: none; }
    
    .hero-text h1 { font-size: 42px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 30px; }
    .stat-box:nth-child(2)::after { display: none; }
    .split-wrap { flex-direction: column; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .gallery-img { height: 200px; width: 280px; }
    .grid-cards-3 { grid-template-columns: repeat(2, 1fr); }
}

/* =========================
   EXACT FRONT PAGE LAYOUT CLASSES
==========================*/
.main-layout { display: flex; gap: 40px; align-items: stretch; }
.plans-area { flex: 6.5; }
.why-us-area { flex: 3.5; }

.image-plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.image-plan-card {
    background: white; border-radius: 8px; padding: 25px; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; align-items: center; text-align: center;
    border: 1px solid #f0f0f0; transition: 0.3s;
}
.image-plan-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: #EAEAEA; }
.image-plan-card .icon-wrap {
    width: 60px; height: 60px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 15px;
}

@media (max-width: 992px) {
    .main-layout { flex-direction: column; }
    .cta-logos-wrap { flex-direction: column; }
    .cta-side, .logos-side { border-right: none; border-bottom: 1px solid #EAEAEA; width: 100%; }
    .logos-side { flex-wrap: wrap; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; row-gap: 20px; }
    .stat-box { border-right: none !important; }
}

@media (max-width: 768px) {
    .hero { background-position: 70% center; padding: 120px 0 60px; }
    .hero::before { background: linear-gradient(to right, rgba(11,25,44,0.95) 0%, rgba(11,25,44,0.9) 60%, rgba(11,25,44,0.4) 100%); }
    .hero-text h1 { font-size: 36px !important; }
    
    .stats-wrapper { margin-top: 30px !important; }
    .stats-grid { grid-template-columns: 1fr !important; }
    .stat-box { border-right: none !important; }
    
    .image-plans-grid { grid-template-columns: 1fr; }
    .cta-side { flex-direction: column; text-align: center; }
    
    .footer-top { grid-template-columns: 1fr; }
    .grid-cards-3 { grid-template-columns: 1fr; }
    .gallery-img { height: 150px; width: 220px; }
}
