/* ============================================
   ANDY ILLUMINATE - COMPLETE DESIGN
   Colors: #00676d, #0099b0, #f47a20
   ============================================ */

@font-face {
    font-family: 'Inter';
    src: url('../webfonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Inter';
    src: url('../webfonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
}
@font-face {
    font-family: 'Inter';
    src: url('../webfonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
}
@font-face {
    font-family: 'Inter';
    src: url('../webfonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* GRADIENT UTILITIES */
.gradient-text {
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #00676d, #0099b0);
    color: white;
    box-shadow: 0 4px 15px rgba(0,103,109,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,103,109,0.3);
}
.btn-lg {
    padding: 14px 36px;
    font-size: 15px;
}

/* ========== SPLASH LOADER ========== */
#splash {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
#splash.hide {
    opacity: 0;
    visibility: hidden;
}
.splash-wrap {
    text-align: center;
}
.splash-logo {
    width: 80px;
    margin-bottom: 20px;
}
.splash-brand {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}
.splash-sub {
    font-size: 12px;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.dot-loader {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.dot-loader span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: bounce 1.4s infinite;
}
.dot-loader span:nth-child(1) { background: #00676d; animation-delay: 0s; }
.dot-loader span:nth-child(2) { background: #0099b0; animation-delay: 0.2s; }
.dot-loader span:nth-child(3) { background: #f47a20; animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.2); opacity: 1; }
}

#main-page {
    opacity: 0;
    transition: opacity 0.6s ease;
}
#main-page.show {
    opacity: 1;
}

/* ========== NAVBAR ========== */
.navbar-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,103,109,0.1);
}
.navbar-v2.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nav-v2-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-img-v2 {
    height: 40px;
    width: auto;
}
.logo-text-v2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}
.logo-text-v2 span {
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-v2-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-v2-link {
    text-decoration: none;
    color: #4a4a6a;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-v2-link:hover, .nav-v2-link.active {
    color: #00676d;
}
.nav-cta {
    background: linear-gradient(135deg, #00676d, #0099b0);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s;
}
.nav-cta:hover {
    transform: translateY(-2px);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #00676d;
    transition: 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ========== DROPDOWN MENU ========== */
.nav-item-dropdown {
    position: relative;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}
.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1000;
    padding: 10px 0;
    border: 1px solid #eef2f6;
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: #4a4a6a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.dropdown-menu a i {
    width: 18px;
    font-size: 14px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(0,103,109,0.05), rgba(0,153,176,0.05));
    color: #00676d;
    padding-left: 24px;
}

/* ========== HERO SECTION ========== */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(0,103,109,0.03), rgba(244,122,32,0.02));
}
.hero-v2-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,103,109,0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #00676d;
    margin-bottom: 24px;
}
.hero-chip-dot {
    width: 8px;
    height: 8px;
    background: #f47a20;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.hero-v2-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-v2-desc {
    font-size: 16px;
    color: #5a5a7a;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-v2-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-glow {
    background: linear-gradient(135deg, #00676d, #0099b0);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,103,109,0.3);
}
.btn-outline-light {
    background: transparent;
    border: 2px solid #00676d;
    color: #00676d;
    padding: 10px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-light:hover {
    background: #00676d;
    color: white;
}
.hero-v2-trust {
    display: flex;
    gap: 32px;
}
.trust-item {
    display: flex;
    flex-direction: column;
}
.trust-number {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #00676d, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.trust-label {
    font-size: 12px;
    color: #888;
}
.hero-v2-right {
    position: relative;
    min-height: 400px;
}
.floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,103,109,0.1);
    animation: float 6s ease-in-out infinite;
}
.floating-card i {
    font-size: 28px;
    background: linear-gradient(135deg, #00676d, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.floating-card strong {
    font-size: 14px;
    display: block;
}
.floating-card small {
    font-size: 11px;
    color: #888;
}
.card-1 { top: 0; left: 0; animation-delay: 0s; }
.card-2 { top: 100px; right: 0; animation-delay: 1s; }
.card-3 { bottom: 100px; left: 30px; animation-delay: 2s; }
.card-4 { bottom: 0; right: 50px; animation-delay: 3s; }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.hero-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,103,109,0.1), transparent);
    border-radius: 50%;
    z-index: -1;
}

/* ========== MARQUEE ========== */
.trust-marquee-full {
    width: 100%;
    background: #f8f9fc;
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}
.marquee-content-full {
    display: flex;
    gap: 48px;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
    width: fit-content;
}
.marquee-content-full span {
    color: #00676d;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.marquee-content-full span::before {
    content: "✦";
    color: #f47a20;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trust-marquee-full:hover .marquee-content-full {
    animation-play-state: paused;
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 80px 0;
}
.bg-white { background: #ffffff; }
.bg-soft { background: #f8f9fc; }

.sec-head {
    text-align: center;
    margin-bottom: 52px;
}
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    color: #0099b0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(0,153,176,0.08);
    border: 1px solid rgba(0,153,176,0.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.sec-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.sec-sub {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== GRADIENT ICON ========== */
.gicon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    color: white;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(0,103,109,0.25);
    flex-shrink: 0;
}

/* ========== ABOUT GRID ========== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.acard {
    background: #f8f9fc;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    padding: 32px;
    transition: all 0.3s ease;
}
.acard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,109,0.08);
    border-color: rgba(0,153,176,0.3);
}
.acard h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a2e;
}
.acard h3 i {
    color: #00676d;
    margin-right: 8px;
}
.acard p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========== CARDS GRID ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.cards-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    padding: 28px;
    transition: all 0.3s ease;
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    border-color: transparent;
    box-shadow: 0 20px 35px rgba(0,103,109,0.15);
}
.card-hover:hover .card-title,
.card-hover:hover .card-desc,
.card-hover:hover .card-link,
.card-hover:hover .news-date {
    color: white !important;
}
.card-hover:hover .gicon {
    background: rgba(255,255,255,0.2);
    color: white;
}
.card-icon {
    margin-bottom: 20px;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a2e;
}
.card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ========== NEWS CARD ========== */
.news-card .news-date {
    font-size: 11px;
    font-weight: 600;
    color: #0099b0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
    color: #00676d;
    text-decoration: none;
    transition: gap 0.2s;
}
.card-link:hover {
    gap: 10px;
    color: #f47a20;
}

/* ========== ACHIEVEMENTS FIXED SPACING ========== */
.achieve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.achieve-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    padding: 32px 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.achieve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,109,0.08);
    border-color: rgba(0,153,176,0.3);
}

.achieve-icon {
    margin: 0 auto 20px;
    width: fit-content;
}

/* Fix gicon inside achieve-card */
.achieve-card .gicon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    border-radius: 16px;
}

.achieve-card .gicon i {
    font-size: 26px;
    color: white;
}

.achieve-card .counter,
.achieve-card .counter-suffix {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.achieve-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
}

/* Responsive for achievements */
@media (max-width: 992px) {
    .achieve-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .achieve-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .achieve-card {
        padding: 20px 12px;
    }
    
    .achieve-card .gicon {
        width: 50px;
        height: 50px;
    }
    
    .achieve-card .gicon i {
        font-size: 22px;
    }
    
    .achieve-card .counter,
    .achieve-card .counter-suffix {
        font-size: 28px;
    }
    
    .achieve-card p {
        font-size: 12px;
    }
}

/* ========== FOOTER ========== */
.footer-v2 {
    background: #0a0a1a;
    color: white;
    padding: 60px 0 30px;
}
.footer-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo-v2 img {
    height: 40px;
}
.footer-logo-v2 span {
    font-weight: 700;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.footer-desc-v2 {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #0099b0;
}
.social-v2 {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none !important;
    transition: all 0.2s;
}
.social-icon:hover {
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    transform: translateY(-3px);
}
.footer-contact-v2 p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-v2 p {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}
.footer-legal-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-legal-v2 a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}
.footer-legal-v2 a:hover {
    color: #0099b0;
}
.legal-sep {
    color: rgba(255,255,255,0.2);
}

/* ========== SCROLL TOP ========== */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
#scrollTop.show {
    opacity: 1;
    visibility: visible;
}
#scrollTop:hover {
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-v2-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-v2-desc {
        margin: 0 auto 32px;
    }
    .hero-v2-buttons, .hero-v2-trust {
        justify-content: center;
    }
    .floating-card {
        position: relative;
        margin: 10px auto;
        max-width: 280px;
    }
    .hero-v2-right {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .card-1, .card-2, .card-3, .card-4 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-v2-title {
        font-size: 32px;
    }
    .hero-v2-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-glow, .btn-outline-light {
        text-align: center;
        justify-content: center;
    }
    .hero-v2-trust {
        flex-wrap: wrap;
        justify-content: center;
    }
    .sec-title {
        font-size: 28px;
    }
    .achieve-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
/* Mobile Dropdown Styles - COMPACT VERSION */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-v2-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 20px 24px;
        transition: left 0.3s ease;
        gap: 4px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-v2-menu.open {
        left: 0;
    }
    
    /* Nav links */
    .nav-v2-link {
        padding: 10px 0;
        width: 100%;
        display: block;
        font-size: 16px;
        font-weight: 500;
    }
    
    /* Dropdown styling */
    .nav-item-dropdown {
        width: 100%;
        margin: 0;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
        display: flex;
        align-items: center;
    }
    
    .dropdown-arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .nav-item-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Dropdown menu items - PROPERLY INDENTED */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid rgba(0,103,109,0.2);
        border-radius: 0;
        margin: 4px 0 8px 20px;
        padding: 4px 0;
        display: none;
        background: transparent;
        width: calc(100% - 20px);
    }
    
    .nav-item-dropdown.open .dropdown-menu {
        display: block;
    }
    
    /* Dropdown items with proper left padding */
    .dropdown-menu a {
        padding: 8px 0 8px 16px;
        font-size: 14px;
        color: #5a5a7a;
        display: flex;
        align-items: center;
        gap: 12px;
        background: transparent;
    }
    
    .dropdown-menu a i {
        width: 20px;
        font-size: 14px;
        margin-right: 4px;
        color: #0099b0;
    }
    
    .dropdown-menu a:hover {
        padding-left: 22px;
        background: rgba(0,103,109,0.05);
        color: #00676d;
    }
    
    /* CTA button on mobile */
    .nav-cta {
        margin-top: 16px;
        text-align: center;
        display: inline-block;
        width: fit-content;
        padding: 10px 24px;
    }
    
    /* Section padding */
    .section {
        padding: 60px 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-grid.two-col {
        grid-template-columns: 1fr;
    }
    
    .footer-v2-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-v2 {
        justify-content: center;
    }
    
    .footer-logo-v2 {
        justify-content: center;
    }
    
    .footer-bottom-v2 {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .footer-legal-v2 {
        justify-content: center;
    }
}
/* ========== NAVBAR ACTIVE LINK UNDERLINE (FIXED) ========== */

.nav-v2-link {
    position: relative;
    text-decoration: none;
    color: #4a4a6a;
    font-weight: 500;
    transition: color 0.2s;
    padding-bottom: 4px;
}

/* Active link */
.nav-v2-link.active {
    color: #00676d;
}

/* Default underline (desktop) */
.nav-v2-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00676d, #0099b0, #f47a20);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Show underline on hover + active */
.nav-v2-link:hover::after,
.nav-v2-link.active::after {
    width: 100%;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .nav-v2-link:hover::after,
    .nav-v2-link.active::after {
        width: 40px; /* you can tweak this */
    }
}

/* Dropdown parent should NOT have underline */
.nav-item-dropdown .dropdown-toggle::after {
    display: none !important;
}

/* Dropdown links should NOT have underline */
.dropdown-menu a::after {
    display: none !important;
}