/* =========================================================
   ELDOHUB WEBSITE THEME
   ---------------------------------------------------------
   Order:
   1. Variables
   2. Base / Utilities
   3. Components
   4. Navbar + Mega Menu
   5. Hero
   6. Footer
   7. Floating WhatsApp
   8. Responsive Fixes
========================================================= */


/* =========================================================
   1. THEME VARIABLES
========================================================= */
:root {
    --primary: #008E80;
    --primary-dark: #0C3B2E;
    --secondary: #D4AF37;
    --secondary-dark: #b89024;

    --dark-text: #1f2937;
    --light-text: #6b7280;
    --text-light: #ffffff;

    --light-bg: #f8faf9;
    --muted-bg: #f3f8f6;
    --card-bg: #ffffff;
    --border-color: rgba(12, 59, 46, 0.12);

    --primary-gradient: linear-gradient(135deg, #0C3B2E, #008E80);
    --secondary-gradient: linear-gradient(135deg, #D4AF37, #f2d36b);

    --shadow-sm: 0 8px 24px rgba(12, 59, 46, 0.08);
    --shadow-md: 0 16px 40px rgba(12, 59, 46, 0.12);

    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    --bs-primary: var(--primary);
    --bs-secondary: var(--secondary);
}

body.dark-mode {
    --dark-text: #f3f4f6;
    --light-text: #d1d5db;
    --light-bg: #081f19;
    --muted-bg: #0b261f;
    --card-bg: #0f2f26;
    --border-color: rgba(255, 255, 255, 0.12);

    --primary-gradient: linear-gradient(135deg, #061f18, #008E80);
    --secondary-gradient: linear-gradient(135deg, #D4AF37, #b89024);
}


/* =========================================================
   2. GLOBAL BASE / SAFETY
========================================================= */
html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--light-bg);
    color: var(--dark-text);
    font-family: 'DM Sans', sans-serif;
    padding-top: 88px;
    margin: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn {
    font-family: 'Montserrat', sans-serif;
}

p {
    color: var(--light-text);
}

a {
    transition: all 0.25s ease;
}

img {
    max-width: 100%;
}

.text-white p,
.text-white .lead {
    color: #ffffff !important;
}


/* =========================================================
   3. UTILITIES
========================================================= */
.bg-muted {
    background: var(--muted-bg) !important;
}

.bg-primary-gradient {
    background: var(--primary-gradient) !important;
}

.bg-secondary-gradient {
    background: var(--secondary-gradient) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-muted {
    color: var(--light-text) !important;
}

.rounded-4 {
    border-radius: var(--radius-lg) !important;
}


/* =========================================================
   4. CARDS
========================================================= */
.card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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


/* =========================================================
   5. BUTTONS
========================================================= */
.btn-eldohub,
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.65rem 1.2rem;
    box-shadow: 0 8px 18px rgba(0, 142, 128, 0.18);
}

.btn-eldohub:hover,
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
}

.btn-eldohub-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    border-radius: 50px;
    padding: 0.65rem 1.2rem;
    background: transparent;
}

.btn-eldohub-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-warning {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #111827;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.65rem 1.2rem;
}

.btn-warning:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: #111827;
}


/* =========================================================
   6. NAVBAR
========================================================= */
.premium-navbar {
    background: rgba(255, 255, 255, 0.94) !important;
    padding: 0.85rem 0;
    box-shadow: 0 10px 28px rgba(12, 59, 46, 0.10);
    border-bottom: 1px solid rgba(12, 59, 46, 0.10);
    overflow: visible;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.35s ease;
    z-index: 1030;
}

body.dark-mode .premium-navbar {
    background: rgba(15, 47, 38, 0.94) !important;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.premium-navbar .container,
.premium-navbar .container-fluid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.premium-navbar .navbar-brand {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}

.premium-navbar .navbar-brand img,
.eldohub-logo {
    height: 50px;
    max-width: 175px;
    width: auto;
    display: block;
    object-fit: contain;
}

.premium-navbar .navbar-nav {
    align-items: center;
    gap: 0.35rem;
}

.premium-navbar .nav-item {
    display: flex;
    align-items: center;
}

.premium-navbar .nav-link {
    color: var(--dark-text) !important;
    font-weight: 700;
    font-size: 0.96rem;
    line-height: 1.1;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.78rem 1rem;
    border-radius: 0.9rem;
    white-space: nowrap;
    transition: all 0.28s ease;
}

.premium-navbar .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(0, 142, 128, 0.08);
    transform: translateY(-1px);
}

.premium-navbar .nav-link.active {
    color: var(--primary-dark) !important;
    font-weight: 800;
    background: rgba(0, 142, 128, 0.10);
}

body.dark-mode .premium-navbar .nav-link.active {
    color: var(--secondary) !important;
}

.premium-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 9px;
    height: 2px;
    border-radius: 999px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.premium-navbar .nav-link:hover::after,
.premium-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.premium-navbar .dropdown-toggle::after {
    margin-left: 0.45rem;
    vertical-align: middle;
    border-top-color: currentColor;
}

.premium-navbar .navbar-toggler {
    border: 1px solid rgba(12, 59, 46, 0.14);
    background: rgba(0, 142, 128, 0.08);
    border-radius: 14px;
    padding: 0.45rem 0.65rem;
    box-shadow: none;
}

.premium-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 142, 128, 0.15);
}


/* =========================================================
   7. DROPDOWN + MEGA MENU
========================================================= */
.premium-navbar .dropdown {
    position: relative;
}

.premium-navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.75rem;
    border: 1px solid rgba(12, 59, 46, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    padding: 0.55rem;
    min-width: 245px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown-mega .mega-menu {
    width: 430px;
    min-width: 430px;
    padding: 0.8rem !important;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.25s ease;
}

.mega-menu-item:hover {
    background: rgba(0, 142, 128, 0.08);
    transform: translateX(4px);
}

.mega-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    background: rgba(0, 142, 128, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.mega-menu-item strong {
    display: block;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--dark-text);
}

.mega-menu-item small {
    display: block;
    color: var(--light-text);
    line-height: 1.45;
    font-size: 0.85rem;
}

.premium-navbar .dropdown-item.active,
.premium-navbar .mega-menu-item.active {
    background: rgba(0, 142, 128, 0.15);
    color: var(--primary) !important;
    font-weight: 700;
}

.premium-navbar .mega-menu-item.active .mega-icon {
    background: var(--primary);
    color: #ffffff;
}

/* Desktop hover */
@media (min-width: 992px) {
    .premium-navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        pointer-events: none;
        transition: all 0.25s ease;
    }

    .premium-navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Mobile dropdown */
@media (max-width: 991.98px) {
    .premium-navbar .dropdown-menu {
        position: static !important;
        width: 100%;
        min-width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .dropdown-mega .mega-menu {
        width: 100%;
        min-width: 100%;
        padding: 0.6rem !important;
    }

    .mega-menu-item {
        background: rgba(0, 142, 128, 0.05);
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .mega-menu-item:last-child {
        margin-bottom: 0;
    }
}
/* Desktop hover dropdown - no runaway gap */
@media (min-width: 992px) {
    .premium-navbar .dropdown {
        position: relative;
    }

    .premium-navbar .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        pointer-events: none;
        transition: all 0.22s ease;
    }

    .premium-navbar .dropdown:hover > .dropdown-menu,
    .premium-navbar .dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* invisible bridge so mouse can move down safely */
    .premium-navbar .dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
    }

    .dropdown-mega .mega-menu {
        margin-top: 0.55rem;
    }
}


/* =========================================================
   8. SWIPER
========================================================= */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8);
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
}

.testimonialSwiper .swiper-pagination {
    position: relative;
    margin-top: 1.5rem;
}


/* =========================================================
   9. PREMIUM HERO
========================================================= */
.premium-hero-wrapper {
    margin-top: -88px;
}

.premiumHeroSwiper {
    width: 100%;
    height: 100vh;
    min-height: 680px;
}

.premium-hero-slide {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.premium-hero-slide.swiper-slide-active {
    animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 108%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 59, 46, 0.88) 0%, rgba(12, 59, 46, 0.70) 42%, rgba(0, 0, 0, 0.35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.min-vh-hero {
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(212, 175, 55, 0.18);
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.45);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 1.02;
    font-weight: 800;
    max-width: 920px;
    margin-bottom: 1.35rem;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    max-width: 760px;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 2rem;
}

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

.premiumHeroSwiper .swiper-pagination {
    bottom: 28px !important;
}

.premiumHeroSwiper .swiper-pagination-bullet {
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    opacity: 1;
}

.premiumHeroSwiper .swiper-pagination-bullet-active {
    width: 46px;
    background: var(--secondary);
}

.premiumHeroSwiper .swiper-button-next,
.premiumHeroSwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.premiumHeroSwiper .swiper-button-next:hover,
.premiumHeroSwiper .swiper-button-prev:hover {
    background: var(--secondary);
}

.premiumHeroSwiper .swiper-button-next::after,
.premiumHeroSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}


/* =========================================================
   10. PREMIUM FOOTER
========================================================= */
.footer-eldohub {
    background: #081f19 !important;
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    height: 52px;
    object-fit: contain;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 420px;
}

.footer-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col h6 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--secondary) !important;
}

.footer-cta-box {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: 1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-mini-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
}

.footer-mini-links a:hover {
    color: var(--secondary) !important;
}


/* =========================================================
   11. FOOTER SOCIAL ICONS
========================================================= */
.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-social .social-icon,
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover,
.social-icon:hover {
    background: var(--secondary);
    color: #ffffff !important;
    transform: translateY(-3px);
}


/* =========================================================
   12. FLOATING WHATSAPP
========================================================= */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #ffffff;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 1050;
    transition: all 0.25s ease;
}

.floating-whatsapp i {
    font-size: 1.6rem;
}

.whatsapp-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.floating-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   13. TABLET / MOBILE NAVBAR
========================================================= */
@media (max-width: 991.98px) {
    body {
        padding-top: 82px;
    }

    .premium-navbar {
        padding: 0.7rem 0;
        overflow: visible;
    }

    .premium-navbar .container,
    .premium-navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        flex-wrap: wrap;
    }

    .premium-navbar .navbar-brand {
        max-width: calc(100% - 76px);
        margin-right: 0;
    }

    .premium-navbar .navbar-brand img,
    .eldohub-logo {
        height: 44px !important;
        max-width: 145px;
    }

    .premium-navbar .navbar-toggler {
        margin-left: auto;
        flex-shrink: 0;
        border-radius: 14px;
        padding: 0.42rem 0.62rem;
    }

    .premium-navbar .navbar-collapse {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        margin-top: 0.95rem;
        overflow-x: hidden;
    }

    .premium-navbar .mobile-nav-card {
        width: 100%;
        max-width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 249, 0.96));
        border: 1px solid rgba(12, 59, 46, 0.12);
        border-radius: 1.35rem;
        padding: 0.9rem;
        box-shadow: 0 18px 40px rgba(12, 59, 46, 0.14);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        overflow: hidden;
    }

    body.dark-mode .premium-navbar .mobile-nav-card {
        background: linear-gradient(135deg, rgba(15, 47, 38, 0.96), rgba(8, 31, 25, 0.96));
        border-color: rgba(255, 255, 255, 0.12);
    }

    .premium-navbar .navbar-nav {
        width: 100%;
        max-width: 100%;
        gap: 0.5rem;
        align-items: stretch !important;
        margin: 0 !important;
    }

    .premium-navbar .nav-item {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .premium-navbar .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 54px;
        padding: 0.9rem 1rem;
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
        border-radius: 1rem;
        background: rgba(0, 142, 128, 0.06);
        margin: 0;
    }

    .premium-navbar .nav-link.active {
        background: rgba(0, 142, 128, 0.14);
    }

    .premium-navbar .nav-link::after {
        display: none;
    }

    .premium-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        min-width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(12, 59, 46, 0.10);
        opacity: 1;
        visibility: visible;
    }

    .premium-navbar .dropdown-item {
        text-align: center;
    }

    .premium-navbar .btn-eldohub,
    .premium-navbar .btn-eldohub-outline {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
    }

    .mega-menu {
        min-width: 100%;
        width: 100%;
        padding: 0.6rem !important;
    }

    .mega-menu-item {
        align-items: flex-start;
        text-align: left;
        background: rgba(0, 142, 128, 0.05);
        margin-bottom: 0.5rem;
    }

    .mega-menu-item:last-child {
        margin-bottom: 0;
    }

    .mega-menu-item:hover {
        transform: none;
    }

    .nav-cta-group {
        width: 100%;
        flex-direction: column;
    }
}


/* =========================================================
   14. TABLET / MOBILE HERO
========================================================= */
@media (max-width: 991.98px) {
    .premium-hero-wrapper {
        margin-top: -82px;
    }

    .premiumHeroSwiper,
    .premium-hero-slide {
        min-height: 86vh;
        height: 86vh;
    }

    .min-vh-hero {
        min-height: 86vh;
        padding-top: 115px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.1rem, 10vw, 3.4rem);
        line-height: 1.08;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(12, 59, 46, 0.88), rgba(12, 59, 46, 0.68)),
            rgba(0, 0, 0, 0.25);
    }
}

/* =========================================================
   HOME — PREMIUM PROGRAM CARDS
========================================================= */
.premium-program-card img {
    transition: transform 0.55s ease;
}

.premium-program-card:hover img {
    transform: scale(1.06);
}

.program-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 59, 46, 0.9),
        rgba(12, 59, 46, 0.15)
    );
}

.program-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
}

/* =========================================================
   15. MOBILE FOOTER
========================================================= */
@media (max-width: 768px) {
    .footer-eldohub {
        text-align: left;
        padding-top: 2.5rem !important;
    }

    .footer-eldohub .footer-top {
        text-align: center;
        margin-bottom: 2rem !important;
    }

    .footer-eldohub .footer-logo {
        height: 46px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-eldohub .footer-top p,
    .footer-text {
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }

    .footer-col {
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-col h6 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-col ul li {
        margin-bottom: 0.55rem;
        font-size: 0.92rem;
        line-height: 1.4;
    }

    .footer-bottom {
        text-align: center;
        gap: 0.5rem;
    }

    .footer-mini-links {
        justify-content: center;
    }

    .footer-cta-box {
        margin-top: 1rem;
    }

    .floating-whatsapp {
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-label {
        display: none !important;
    }
}


/* =========================================================
   16. SMALL PHONE FIXES
========================================================= */
@media (max-width: 576px) {
    .premiumHeroSwiper,
    .premium-hero-slide {
        min-height: 84vh;
        height: 84vh;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.45rem 0.8rem;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions .btn {
        max-width: 100%;
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .footer-links-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.8rem 1rem;
    }

    .footer-col h6 {
        font-size: 0.98rem;
    }

    .footer-col ul li {
        font-size: 0.88rem;
    }
}

/* =========================================================
   PARTNERS SECTION
========================================================= */
.partners-grid {
    margin-top: 20px;
}

.partner-logo {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 142, 128, 0.08);
    transition: all 0.3s ease;
}

.partner-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
    opacity: 1;
}
/* Mobile tweak */
@media (max-width: 575.98px) {
    .partner-logo {
        height: 80px;
        padding: 12px;
    }

    .partner-logo img {
        max-height: 40px;
    }
}
