/* =====================================================
   THEME VARIABLES
===================================================== */

:root {
    --primary: #015054;
    --primary-light: #02696f;
    --secondary: #ffffff;

    --white: #ffffff;
    --text: #015054;
    --text-muted: rgba(1, 80, 84, 0.75);

    --bg: #ffffff;
    --surface: #ffffff;
    --surface-alt: #f6f9ee;

    --border: rgba(1, 80, 84, 0.12);
    --shadow: 0 25px 60px rgba(1, 80, 84, 0.14);
    --radius: 24px;
    --container: 1180px;
}

/* =====================================================
   RESET & GLOBAL STYLES
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Plus Jakarta Sans', sans-serif;

    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

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

/* =====================================================
   HEADER / NAVIGATION
===================================================== */

.site-header {
    background: var(--secondary);
    padding: 18px 36px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--primary-light);
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
    white-space: nowrap;
}


.logo {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
}

.logo-image {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .logo-image {
        width: 34px;
        height: 34px;
    }

    .logo-text {
        font-size: 18px;
    }
}


/* Hamburger */

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 22px 24px 26px;

}

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

.mobile-menu a {
    color: var(--primary);
    font-weight: 700;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {
    min-height: calc(100vh - 78px);
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
    padding: 90px 36px;
    background: var(--secondary);
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: var(--primary-light);
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 76px);
    line-height: 0.95;
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -3px;
}

.hero-text {
    font-size: clamp(15px, 2vw, 19px);
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 570px;
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
===================================================== */

.primary-btn,
.secondary-btn {
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-block;
}

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

.primary-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.secondary-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.secondary-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* =====================================================
   HERO IMAGE / SPLASH VISUAL
===================================================== */

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
}

.hero-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.hero-circle {
    width: 110px;
    height: 110px;
    border: 18px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -35px;
    z-index: 1;
}

.happy-card {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    background: var(--white);
    padding: 12px 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 3;
    min-width: 170px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    margin-left: -12px;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    transition: transform .3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-4px);
    z-index: 5;
}

.plus {
    width: 42px;
    height: 42px;
    margin-left: -12px;

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

    border-radius: 50%;
    background: var(--primary);
    color: var(--white);

    font-weight: 700;
    font-size: 16px;

    border: 3px solid var(--white);
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
}



.happy-card strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
}

.happy-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* =====================================================
   SHARED SECTION STYLES
===================================================== */

.services,
.why-choose,
.stats {
    max-width: var(--container);
    margin: 0 auto;
    padding: 90px 36px;
}

.section-header {
    max-width: 620px;
    margin-bottom: 34px;
}

.section-header h2,
.why-content h2,
.section-center h2,
.faq-left h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--primary);
}

/* =====================================================
   SERVICES SECTION
===================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 28px;
    box-shadow: 0 12px 35px rgba(1, 80, 84, 0.06);
    transition: 0.3s ease;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    font-size: 20px;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */

.why-choose {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.why-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px dashed var(--border);
}

.why-item span {
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 800;
}

.why-item h3 {
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.why-image-card {
    min-height: 420px;
    border-radius: 34px;
    background:
        linear-gradient(rgba(1, 80, 84, 0.18), rgba(1, 80, 84, 0.18)),
        url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow);
}

.stats-badge {
    position: absolute;
    left: -28px;
    top: 40px;
    background: var(--white);
    color: var(--primary);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.stats-badge strong {
    display: block;
    font-size: 30px;
}

.stats-badge span {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================================
   STATS SECTION
===================================================== */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats div {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: 0.3s ease;
}

.stats div:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.stats h3 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 8px;
}

.stats p {
    opacity: 0.85;
}

/* =====================================================
   HOW IT WORKS SECTION
===================================================== */

.how-it-works {
    background: var(--surface-alt);
    padding: 90px 36px;
    overflow: hidden;
}

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

.steps-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.step-card {
    text-align: center;
    position: relative;
    animation: fadeUp 0.8s ease both;
}

.step-card:nth-child(2) {
    animation-delay: 0.1s;
}

.step-card:nth-child(3) {
    animation-delay: 0.2s;
}

.step-card:nth-child(4) {
    animation-delay: 0.3s;
}

.step-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 800;
    border: 8px solid rgba(1, 80, 84, 0.12);
}

.step-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -50px;
    width: 52px;
    height: 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='28' viewBox='0 0 52 28' fill='none'%3E%3Cpath d='M2 3C7 20 23 26 38 18L49 10' stroke='%2399A3A4' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M42 5L50 10L44 18' stroke='%2399A3A4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUpArrow 0.8s ease forwards;
}

.step-card:nth-child(1)::after {
    animation-delay: 0.4s;
}

.step-card:nth-child(2)::after {
    animation-delay: 0.7s;
}

.step-card:nth-child(3)::after {
    animation-delay: 1s;
}

/* =====================================================
   TESTIMONIALS SLIDER
===================================================== */

.testimonials {
    background: var(--white);
    padding: 90px 36px;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    animation: fadeUp 0.6s ease both;
}

.testimonial-slide.active {
    display: grid;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    min-height: 210px;
    transition: 0.35s ease;
    border-radius: 18px;
}

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

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-user img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-user h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 3px;
}

.testimonial-user span {
    font-size: 11px;
    color: var(--text-muted);
}

.stars {
    color: #f7b500;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 4px;
}

.quote-mark {
    font-size: 38px;
    line-height: 1;
    color: rgba(1, 80, 84, 0.08);
    font-weight: 800;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
}

.dot {
    width: 7px;
    height: 4px;
    border: none;
    border-radius: 999px;
    background: rgba(1, 80, 84, 0.2);
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    width: 22px;
    background: var(--primary);
}


/* =====================================================
   PARTNERS MARQUEE SECTION
===================================================== */
.partners {
    background:
        linear-gradient(
            rgba(1, 80, 84, 0.92),
            rgba(1, 80, 84, 0.92)
        ),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1200&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    padding: 90px 30px;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 45px;
    font-size: 15px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.partners-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;

    /* subtle movement */
    animation: partnersFloat 8s ease-in-out infinite;
}

.partner-logo-card {
    width: 170px;
    min-height: 120px;

    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);

    border-radius: 20px;

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

    padding: 20px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.12);

    transition: all 0.35s ease;
}

.partner-logo-card:hover {
    transform: translateY(-10px);
    background: var(--white);
}

.partner-logo-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;

    /* Keep original colors */
    filter: none;

    transition: transform 0.35s ease;
}

.partner-logo-card:hover img {
    transform: scale(1.08);
}
.partner-logo-card {
    width: 170px;
    min-height: 120px;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);

    border-radius: 20px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);

    transition: all 0.35s ease;
}

.partner-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.18);
}
.partner-logo-card span {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
}

/* Gentle movement */
@keyframes partnersFloat {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-35px);
    }

    100% {
        transform: translateX(0);
    }
}
.partners-track:hover {
    animation-play-state: paused;
}
@media (max-width: 768px) {
    .partners-track {
        gap: 16px;
        animation: none; /* disable movement on mobile */
    }

    .partner-logo-card {
        width: 140px;
        min-height: 105px;
    }

    .partner-logo-card img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .partner-logo-card {
        width: calc(50% - 8px);
    }
}

@media (max-width: 640px) {
    .partners {
        padding: 70px 0;
    }

    .partners-track {
        gap: 18px;
        animation-duration: 18s;
    }

    .partner-logo-card {
        width: 140px;
        min-height: 105px;
        padding: 16px;
        border-radius: 18px;
    }

    .partner-logo-card img {
        width: 44px;
        height: 44px;
    }
}
/* =====================================================
   NEWSLETTER SECTION
===================================================== */

.newsletter {
    max-width: var(--container);
    margin: 0 auto;
    padding: 100px 36px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--primary);
    margin-bottom: 20px;
}

.newsletter-content p {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px;
    max-width: 520px;
    box-shadow: 0 14px 35px rgba(1, 80, 84, 0.08);
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--primary);
    background: transparent;
}

.newsletter-form input::placeholder {
    color: rgba(1, 80, 84, 0.45);
}

.newsletter-form button {
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.newsletter-image {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.newsletter-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Responsive */

@media (max-width: 980px) {
    .newsletter {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-content p,
    .newsletter-form {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .partners {
        padding: 55px 0;
    }

    .partners-track {
        gap: 42px;
        animation-duration: 16s;
    }

    .partners-track span {
        font-size: 15px;
    }

    .newsletter {
        padding: 70px 22px;
    }

    .newsletter-form {
        border-radius: 24px;
        flex-direction: column;
        padding: 10px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-image img {
        height: 300px;
    }
}
/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 100px 36px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
    align-items: start;
}

.faq-left p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-list details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 12px 35px rgba(1, 80, 84, 0.05);
    transition: 0.3s ease;
}

.faq-list details:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    font-size: 20px;
    color: var(--primary);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin-top: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}



/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUpArrow {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE: TABLET
===================================================== */

@media (max-width: 980px) {
    .hero,
    .why-choose,
    .faq-section {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
        padding-top: 70px;
        min-height: auto;
    }

    .hero-text {
        margin: 0 auto;
    }

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

    .hero-visual {
        margin: 40px auto 0;
    }

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

    .step-card::after {
        display: none;
    }

    .why-content {
        text-align: left;
    }

    .why-image-card {
        min-height: 360px;
    }

    .stats-badge {
        left: 24px;
    }

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

/* =====================================================
   RESPONSIVE: MOBILE
===================================================== */

@media (max-width: 768px) {
    .site-header {
        padding: 18px 22px;
    }

    .navbar {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo {
        font-size: 20px;
        font-weight: 900;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero,
    .services,
    .why-choose,
    .stats,
    .how-it-works,
    .testimonials,
    .faq-section {
        padding: 60px 22px;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-visual {
        max-width: 360px;
    }

    .hero-photo {
        height: 420px;
        border-radius: 24px;
    }

    .hero-circle {
        width: 90px;
        height: 90px;
        border-width: 14px;
        right: -15px;
        top: -15px;
    }

    .happy-card {
        bottom: -15px;
        padding: 10px 14px;
    }

    .section-header,
    .section-center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .service-grid,
    .stats,
    .steps-grid,
    .testimonial-slide,
    .testimonial-slide.active,
    .footer {
        grid-template-columns: 1fr;
    }

    .why-image-card {
        min-height: 320px;
        border-radius: 24px;
    }

    .stats-badge {
        left: 18px;
        top: 18px;
    }

    .testimonial-card {
        padding: 26px;
    }
}

/* =====================================================
   RESPONSIVE: SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
    .site-header {
        padding: 14px 16px;
    }

    .logo {
        font-size: 20px;
    }

    .hero,
    .services,
    .why-choose,
    .stats,
    .how-it-works,
    .testimonials,
    .faq-section {
        padding: 50px 16px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-text {
        font-size: 15px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        max-width: 100%;
    }

    .hero-photo {
        height: 350px;
        border-radius: 22px;
    }

    .hero-circle {
        width: 70px;
        height: 70px;
        border-width: 10px;
        right: -8px;
        top: -10px;
    }

    .happy-card {
        width: 88%;
        justify-content: center;
        gap: 10px;
    }

    .avatars span {
        width: 28px;
        height: 28px;
    }

    .why-image-card {
        min-height: 280px;
        border-radius: 22px;
    }

    .service-card,
    .testimonial-card,
    .faq-list details {
        padding: 24px 20px;
    }

    .footer {
        padding: 50px 16px;
    }
}


/* =====================================================
   INNER PAGE HERO
===================================================== */

.page-hero {
    position: relative;
    min-height: 70vh;

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

    text-align: center;

     padding: 120px 36px 180px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(1, 80, 84, 0.65);

    z-index: 1;
}

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

    max-width: 850px;
}

.page-hero .eyebrow {
    color: rgba(255,255,255,.85);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -2px;
    color: var(--white);

    margin-bottom: 24px;
}

.page-hero p {
    color: rgba(255,255,255,.9);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}
.hero-divider {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-divider svg {
    display: block;
    width: 100%;
    height: 150px;
}

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

.divider-back {
    position: absolute;
    bottom: 35px;
    height: 110px;
}

.divider-front {
    position: relative;
    height: 140px;
}


.page-hero-image {
    display: flex;
    justify-content: center;
}

.page-hero-image img {
    width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;

    border-radius: 32px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);

    transition: 0.4s ease;
}

.page-hero-image img:hover {
    transform: translateY(-8px);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {
    .page-hero {
        min-height: 70vh;
        padding: 110px 30px 170px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 70vh;
        padding: 110px 24px 170px;
    }

    .hero-divider {
        bottom: -35px;
    }

    .hero-divider svg {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 75vh;
        padding: 100px 22px 160px;
    }

    .page-hero h1 {
        font-size: 38px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .hero-divider {
        bottom: -30px;
    }

    .hero-divider svg {
        height: 100px;
    }
}
/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 36px 100px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-page h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: var(--primary);
    margin-bottom: 18px;
}

.about-page p {
    color: var(--text-muted);
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.about-values div,
.contact-card,
.faq-page details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 12px 35px rgba(1, 80, 84, 0.06);
}

.about-values h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.about-page-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow);
}
/* =====================================================
   ABOUT VALUE CARDS
===================================================== */

/* =====================================================
   ABOUT VALUE CARDS
===================================================== */

.about-values {
    display: grid;

    /* Wider cards */
    grid-template-columns: repeat(3, minmax(340px, 1fr));

    gap: 32px;
    margin-top: 48px;
}

.about-values div {
    position: relative;
    overflow: hidden;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;

    /* More breathing space */
    padding: 42px 38px;

    /* Wider and taller */
    min-height: 290px;

    box-shadow: 0 18px 45px rgba(1, 80, 84, 0.08);

    transition: all 0.35s ease;
}

.about-values div:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(1, 80, 84, 0.12);
}
/* Decorative circle */

.about-values div::after {
    content: "";
    position: absolute;

    top: -50px;
    right: -50px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(1, 80, 84, 0.08);
}

/* Check Icon Box */

.about-values div::before {
    content: "✓";

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

    width: 56px;
    height: 56px;

    margin-bottom: 28px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color: var(--white);

    font-size: 28px;
    font-weight: 800;

    box-shadow: 0 10px 25px rgba(1, 80, 84, 0.2);
}

.about-values h3 {
    color: var(--primary);

    font-size: 28px;
    font-weight: 800;

    margin-bottom: 16px;
}

.about-values p {
    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.9;
}

/* Tablet */

@media (max-width: 992px) {
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
    }

    .about-values div {
        min-height: auto;
        padding: 34px 28px;
    }

    .about-values h3 {
        font-size: 24px;
    }
}
/* =====================================================
   FAQ PAGE
===================================================== */

.faq-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 36px 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-page summary {
    cursor: pointer;
    list-style: none;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.faq-page summary::-webkit-details-marker {
    display: none;
}

.faq-page summary::after {
    content: "+";
    font-size: 22px;
}

.faq-page details[open] summary::after {
    content: "−";
}

.faq-page p {
    margin-top: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
    max-width: var(--container);
    margin: 0 auto;
    padding: 50px 36px 100px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: clamp(30px, 4vw, 46px);
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-card {
    margin-bottom: 16px;
}

.contact-card strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-card span {
    color: var(--text-muted);
}

.contact-form {
    background: var(--surface-alt);
    border-radius: 34px;
    padding: 34px;
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 14px;
    color: var(--primary);
    background: var(--white);
}

.contact-form textarea {
    height: 160px;
    resize: none;
}

.contact-form button {
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* =====================================================
   INNER PAGE RESPONSIVE
===================================================== */

@media (max-width: 980px) {
    .about-page,
    .contact-page {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-page-image img {
        height: 360px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 70px 22px 40px;
    }

    .page-hero h1 {
        letter-spacing: -1.5px;
    }

    .about-page,
    .faq-page,
    .contact-page {
        padding-left: 22px;
        padding-right: 22px;
    }

    .contact-form {
        padding: 24px;
        border-radius: 24px;
    }
}
.dots {
    display: flex;
    gap: 10px;
}

.dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out;
}

.dots span:nth-child(1),
.dots span:nth-child(3) {
    background: #015054;
}

.dots span:nth-child(2),
.dots span:nth-child(4) {
    background: #EBF1CF;
}

.dots{
    display:flex;
    gap:12px;
}

.dots span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#015054;
    opacity:0.25;
    transform:scale(.8);
    animation:dotPulse 1.2s infinite ease-in-out;
}

.dots span:nth-child(1){
    animation-delay:0s;
}

.dots span:nth-child(2){
    animation-delay:0.2s;
}

.dots span:nth-child(3){
    animation-delay:0.4s;
}

.dots span:nth-child(4){
    animation-delay:0.6s;
}

@keyframes dotPulse{
    0%, 100%{
        opacity:0.25;
        transform:scale(.8);
        background:#015054;
    }

    50%{
        opacity:1;
        transform:scale(1.3);
        background:#17b8bb;
    }
}
#loader{
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;

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

.dots{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}


/* =====================================================
   FOOTER
===================================================== */
/* ==========================
   PROFILE FOOTER
========================== */

.profile-footer{
    max-width:1300px;
    margin:50px auto 0;
    background:#015054;
    color:#fff;
    border-radius:30px;
    padding:40px;
}

.profile-footer .footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.profile-footer h3{
    margin-bottom:20px;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.profile-footer a,
.profile-footer p{
    display:block;
    color:#ddd;
    margin-bottom:10px;
    text-decoration:none;
    line-height:1.7;
    transition:.3s ease;
}

.profile-footer a:hover{
    color:#EBF1CF;
}

.profile-footer .socials{
    margin-top:20px;
    display:flex;
    gap:12px;
}

.profile-footer .socials a{
    width:40px;
    height:40px;
    background:#EBF1CF;
    color:#015054;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s ease;
}

.profile-footer .socials a:hover{
    transform:translateY(-4px);
    background:#fff;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:1000px){
    .profile-footer .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:700px){
    .profile-footer{
        padding:30px 22px;
        border-radius:24px;
    }

    .profile-footer .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
    }
}
.profile-footer .footer-bottom{
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
}

.profile-footer .footer-bottom p{
    color: #ddd;
    margin: 0;
    font-size: 14px;
}
/* =====================================================
   POLICY PAGES
===================================================== */

.policy-page{
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 36px 120px;
}

.policy-card{
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(180deg, #ffffff, #f8fbf3);

    border: 1px solid rgba(1,80,84,.10);
    border-radius: 34px;

    padding: 55px 60px;

    box-shadow:
        0 30px 80px rgba(1,80,84,.10);
}

.policy-card::before{
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(1,80,84,.06);

    top: -90px;
    right: -80px;
}

.policy-card h2{
    position: relative;
    z-index: 1;

    color: var(--primary);

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.5px;

    margin-bottom: 18px;
}

.policy-card > p{
    position: relative;
    z-index: 1;

    max-width: 780px;

    color: var(--text-muted);

    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 35px;
}

.policy-card h3{
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--primary);

    font-size: 22px;
    font-weight: 900;

    margin-top: 34px;
    margin-bottom: 12px;
}

.policy-card h3::before{
    content: "✓";

    width: 32px;
    height: 32px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color: #fff;

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

    font-size: 15px;
    font-weight: 900;

    flex-shrink: 0;
}

.policy-card h3 + p{
    position: relative;
    z-index: 1;

    padding-left: 44px;

    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.9;

    max-width: 850px;
}

/* Optional spacing between policy blocks */
.policy-card h3:not(:first-of-type){
    padding-top: 22px;
    border-top: 1px dashed rgba(1,80,84,.14);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:768px){
    .policy-page{
        padding: 60px 22px 90px;
    }

    .policy-card{
        padding: 38px 28px;
        border-radius: 28px;
    }

    .policy-card h2{
        font-size: 32px;
    }

    .policy-card > p{
        font-size: 15px;
        margin-bottom: 28px;
    }

    .policy-card h3{
        font-size: 19px;
        align-items: flex-start;
    }

    .policy-card h3 + p{
        padding-left: 0;
        font-size: 15px;
    }
}

@media(max-width:480px){
    .policy-page{
        padding: 45px 16px 75px;
    }

    .policy-card{
        padding: 30px 20px;
        border-radius: 24px;
    }

    .policy-card h3::before{
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }
}
/* Language Selector */
.language-wrap{
    position:relative;
}

.language{
    display:flex;
    align-items:center;
    gap:8px;
    background:transparent;
    border:none;
    cursor:pointer;
    font:inherit;
    color:inherit;
}

.language-dropdown{
    position:absolute;
    top:120%;
    right:0;
    width:190px;
    background:#fff;
    border:1px solid rgba(1,80,84,.12);
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    padding:8px;
    display:none;
    z-index:9999;
}

.language-wrap.open .language-dropdown{
    display:grid;
    gap:4px;
}

.language-dropdown button,
.mobile-language-list button{
    border:0;
    background:transparent;
    cursor:pointer;
    padding:10px 12px;
    border-radius:10px;
    text-align:left;
    font:inherit;
    color:#015054;
}

.language-dropdown button:hover,
.mobile-language-list button:hover{
    background:#EBF1CF;
}

.mobile-language-list{
    display:grid;
    gap:4px;
    padding:8px 0;
}

/* Hide Google Translate UI */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt{
    display:none !important;
}

body{
    top:0 !important;
}

.skiptranslate{
    display:none !important;
}

.goog-logo-link,
.goog-te-gadget span{
    display:none !important;
}
.language-dropdown{
    max-height:420px;
    overflow-y:auto;
}
.mobile-language-list{
    display:none;
}

@media (max-width:768px){
    .mobile-language-list{
        display:none;
    }

    .mobile-language-list.show{
        display:grid;
    }
}
.mobile-language-wrap{
    display:none;
    position:absolute;
    right:52px;
    top:50%;
    transform:translateY(-50%);
    z-index:1002;
}

.mobile-language-btn{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#f6f9ee;
    color:var(--primary);
    font-size:18px;
    cursor:pointer;
}

.mobile-language-dropdown{
    position:absolute;
    top:48px;
    right:0;
    width:230px;
    max-height:320px;
    overflow-y:auto;
    display:none;
    background:#fff;
    border:1px solid rgba(1,80,84,.12);
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    padding:8px;
    z-index:10000;
}

.mobile-language-dropdown.show{
    display:grid;
    gap:4px;
}

.mobile-language-dropdown button{
    border:0;
    background:transparent;
    cursor:pointer;
    padding:10px 12px;
    border-radius:10px;
    text-align:left;
    font:inherit;
    color:#015054;
}

.mobile-language-dropdown button:hover{
    background:#EBF1CF;
}

@media(max-width:768px){
    .mobile-language-wrap{
        display:block;
    }
}
