@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    height: 56px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transform: translateY(10px);
}

.nav-logo span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2BB5B2;
    background: rgba(43,181,178,0.08);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #2BB5B2;
    border-radius: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, #E4572E, #c9421e) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(228,87,46,0.4);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228,87,46,0.5) !important;
    background: linear-gradient(135deg, #c9421e, #a83618) !important;
}

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

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #0f172a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span {
    background: #ffffff;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 60px;
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a2540;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.88) 0%, rgba(43,181,178,0.5) 50%, rgba(10,37,64,0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 8%;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43,181,178,0.2);
    border: 1px solid rgba(43,181,178,0.3);
    color: #7edcd9;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '✦';
    font-size: 0.7rem;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #2BB5B2, #F5A623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2BB5B2, #1A9E9A);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(43,181,178,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(43,181,178,0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 8%;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-indicators .dot.active {
    background: #E4572E;
    width: 36px;
    border-radius: 6px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 4;
    margin-top: 30px;
    margin-left: 5%;
    margin-right: 5%;
    border-radius: 16px;
    overflow: hidden;
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: #f0f7ff; }

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2BB5B2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 90px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2BB5B2, #F5A623);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e6f9f8, #ccf3f1);
    color: #1A9E9A;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.card-link:hover { gap: 12px; }

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
}

.about-feature .check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2BB5B2, #E4572E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.team-card .role {
    color: #2BB5B2;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.contact-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #334155;
    transition: border-color 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a2540;
    color: #94a3b8;
    padding: 60px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand .nav-logo img {
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2BB5B2;
    color: #fff;
    transform: translateY(-3px);
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer ul a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    margin-top: 60px;
    background: linear-gradient(135deg, #0a2540 0%, #1A9E9A 100%);
    padding: 80px 8% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(43,181,178,0.15);
    top: -200px;
    right: -100px;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.page-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: #cbd5e1;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #334155, #475569);
}

.why-card .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* White background variant for why-card */
.why-card[style*="background:#fff"] {
    background: #fff !important;
}

.why-card[style*="background:#fff"]:hover {
    background: #f8fafc !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-card[style*="background:#fff"] .icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    filter: grayscale(0);
}

.why-card[style*="background:#fff"] h3 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card[style*="background:#fff"] p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #E4572E, #F5A623);
    padding: 80px 8%;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -250px;
    left: -100px;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #E4572E;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 0 5%; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: auto;
        background: #0a2540;
        flex-direction: column;
        padding: 80px 20px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

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

    .nav-links a {
        width: 100%;
        padding: 16px 20px;
        font-size: 1.1rem;
        color: #cbd5e1;
        text-align: center;
        border-radius: 8px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #ffffff;
        background: rgba(255,255,255,0.1);
    }

    .hamburger { display: flex; }

    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-content { padding: 0 6%; }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 4%;
        margin-right: 4%;
        margin-top: 20px;
        gap: 12px;
    }

    .stat-item {
        padding: 20px 16px;
        border-right: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section { padding: 60px 6%; }
    .section-header h2 { font-size: 2rem; }

    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .page-header h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .stats-bar { 
        grid-template-columns: repeat(2, 1fr); 
        margin-left: 4%; 
        margin-right: 4%;
        margin-top: 20px;
        gap: 10px;
    }
    .stat-item { 
        border-right: none;
        padding: 18px 12px;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .cta-section h2 { font-size: 1.8rem; }
    .about-features { grid-template-columns: 1fr; }
    .nav-logo span { font-size: 0.95rem; }
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-overlay.show { display: block; }

/* ===== PARTNER REGISTRATION FORM ===== */
.registration-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e6f9f8, #ccf3f1);
    color: #1A9E9A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.info-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    color: #334155;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-list li:last-child {
    border-bottom: none;
}

.contact-details {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    margin-top: 12px;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #334155;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: #2BB5B2;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.registration-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 12px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
    position: relative;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: #2BB5B2;
    background: #f0f9f9;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2.5px solid #cbd5e1;
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #2BB5B2, #1A9E9A);
    border-color: #2BB5B2;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-text {
    color: #2BB5B2;
    font-weight: 600;
}

.checkbox-text {
    transition: all 0.3s ease;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E4572E, #F5A623);
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(228,87,46,0.4);
    margin-top: 12px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(228,87,46,0.5);
    background: linear-gradient(135deg, #c9421e, #d88e1a);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #eff6ff;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #1e40af;
    line-height: 1.6;
    margin-top: 8px;
}

.form-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Registration Form */
@media (max-width: 1024px) {
    .registration-container {
        grid-template-columns: 1fr;
    }

    .registration-info {
        flex-direction: row;
    }

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

@media (max-width: 768px) {
    .registration-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .registration-info {
        flex-direction: column;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 16px;
    }

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

    .form-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .registration-form-wrapper {
        padding: 24px 16px;
    }

    .info-card {
        padding: 24px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 32px;
    }
}

/* ===== TRUST STATS SECTION ===== */
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #F5A623;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2BB5B2, #1A9E9A);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-location {
    font-size: 0.85rem;
    color: #64748b;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
    font-size: 1.05rem;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2BB5B2;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== CTA SECTION PARTNER ===== */
.cta-section-partner {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    padding: 80px 8%;
    position: relative;
    overflow: hidden;
}

.cta-section-partner::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(43,181,178,0.1);
    top: -300px;
    right: -200px;
}

.cta-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text-section p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-feature {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cta-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cta-contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-card-label {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-card-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    word-break: break-word;
}

.cta-download {
    background: linear-gradient(135deg, #E4572E, #F5A623);
    border: none;
}

.cta-download:hover {
    background: linear-gradient(135deg, #c9421e, #d88e1a);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .trust-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text-section {
        text-align: center;
    }

    .cta-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-stat {
        padding: 24px 16px;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

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

    .cta-text-section h2 {
        font-size: 1.8rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-stat {
        padding: 20px 12px;
    }

    .trust-icon {
        font-size: 2rem;
    }

    .trust-number {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 24px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2BB5B2, #F5A623);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e6f9f8, #ccf3f1);
    color: #1A9E9A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.service-detail-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.service-detail-card > p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-features li {
    font-size: 0.9rem;
    color: #475569;
    padding: 8px 0;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2BB5B2;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #1A9E9A;
}

/* Responsive for Services Detail */
@media (max-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .service-detail-card {
        padding: 32px 24px;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .service-detail-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-detail-grid {
        grid-template-columns: 1fr !important;
    }
}
