/* ============================================================
   SUNSAHARA — Global Styles
   ============================================================ */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B2730;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb {
    background: #F07820;
    border-radius: 5px;
}

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

:root {
    --color-primary:   #F07820;   /* logo orange        */
    --color-secondary: #1B6B7A;   /* logo teal          */
    --color-dark:      #0B2730;   /* deep teal night    */
    --color-light:     #EEF7F9;   /* cool off-white     */
    --color-muted:     #4A8A99;   /* muted teal         */
    --color-white:     #FFFFFF;

    --font-family: 'Poppins', sans-serif;
    --navbar-height: 70px;
    --transition: 0.3s ease;
    --radius: 6px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
    padding-top: var(--navbar-height);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000000;
    height: var(--navbar-height);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.navbar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar__logo {
    background: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
}

.navbar__logo img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Desktop menu */
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.navbar__link {
    display: inline-block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: color var(--transition), background-color var(--transition);
    letter-spacing: 0.02em;
}

.navbar__link:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.08);
}

.navbar__link.active {
    color: var(--color-primary);
    background-color: rgba(240, 120, 32, 0.15);
}

/* ---- Hamburger ---- */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius);
    transition: background-color var(--transition);
}

.navbar__hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

/* Hamburger → X animation */
.navbar__hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar__hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile dropdown ---- */
.navbar__mobile-menu {
    display: none;
    background-color: #0d2f3a;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.navbar__mobile-menu.open {
    max-height: 400px;
}

.navbar__mobile-list {
    list-style: none;
    padding: 8px 0 16px;
}

.navbar__mobile-link {
    display: block;
    padding: 13px 28px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: color var(--transition), border-color var(--transition),
                background-color var(--transition);
}

.navbar__mobile-link:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-primary);
}

.navbar__mobile-link.active {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    background-color: rgba(240, 120, 32, 0.12);
}

/* ============================================================
   RESPONSIVE — show hamburger, hide desktop menu
   ============================================================ */

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

    .navbar__hamburger {
        display: flex;
    }

    .navbar__mobile-menu {
        display: block;
    }
}

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

.hero {
    position: relative;
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #040e12;
}

/* ---- Video Background ---- */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

/* ---- Dark Overlay ---- */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 14, 18, 0.45) 0%,
        rgba(4, 14, 18, 0.35) 60%,
        rgba(4, 14, 18, 0.65) 100%
    );
    pointer-events: none;
}

/* ---- Hero Content ---- */
.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 820px;
    margin-bottom: 80px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(240, 120, 32, 0.12);
    border: 1px solid rgba(240, 120, 32, 0.3);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s ease both;
}

.hero__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeSlideUp 0.8s ease 0.15s both;
}

.hero__title--accent {
    background: linear-gradient(90deg, #FFD54F, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

/* ---- Buttons ---- */
.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.45s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), background-color var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: linear-gradient(135deg, #e05e10, #F07820);
    color: var(--color-white);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #c54e08, #d96510);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ---- Info Bar ---- */
.hero__infobar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 3px solid var(--color-primary);
    padding: 20px 40px;
    gap: 0;
}

.hero__infobar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    flex: 1;
    justify-content: center;
}

.hero__infobar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e05e10, #F07820);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: #fff;
}

.hero__infobar-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    max-width: 180px;
}

.hero__infobar-divider {
    width: 1px;
    height: 48px;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* ---- Keyframes ---- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Hero Responsive ---- */
@media (max-width: 768px) {
    .hero__infobar {
        padding: 16px 20px;
    }

    .hero__infobar-item {
        padding: 0 16px;
        gap: 10px;
    }

    .hero__infobar-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .hero__infobar-item span {
        font-size: 0.82rem;
    }
}

@media (max-width: 540px) {
    .hero__infobar {
        flex-direction: column;
        gap: 12px;
        padding: 20px 16px;
    }

    .hero__infobar-divider {
        width: 80%;
        height: 1px;
    }

    .hero__infobar-item {
        padding: 0;
        justify-content: flex-start;
        width: 100%;
        max-width: 280px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 0 24px;
    }

    .hero__cta .btn {
        width: 100%;
        max-width: 320px;
        padding: 13px 24px;
        font-size: 0.95rem;
    }
}

/* ============================================================
   AIM / MISSION / VISION
   ============================================================ */

.amv-section {
    background: var(--color-white);
    padding: 88px 24px;
}

.amv-section__container {
    max-width: 1140px;
    margin: 0 auto;
}

.amv-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.amv-section__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.amv-section__subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.amv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

/* Card */
.amv-card {
    background: var(--color-light);
    border: 1px solid rgba(27, 107, 122, 0.1);
    border-radius: 14px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.amv-card--featured {
    background: linear-gradient(135deg, #030e14 0%, #114f5c 60%, #176470 100%);
    border-color: transparent;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 39, 48, 0.25);
}

/* Icon */
.amv-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27,107,122,0.12), rgba(27,107,122,0.22));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.amv-card--featured .amv-card__icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
}

/* Label */
.amv-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-dark);
}

.amv-card--featured .amv-card__label {
    color: rgba(255, 255, 255, 0.55);
}

/* Text */
.amv-card__text {
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--color-muted);
}

.amv-card--featured .amv-card__text {
    color: rgba(255, 255, 255, 0.78);
}

/* Responsive */
@media (max-width: 900px) {
    .amv-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .amv-card--featured {
        transform: none;
    }
}

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

.testimonials {
    background-color: var(--color-light);
    padding: 88px 24px;
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.testimonials__subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Marquee */
.testimonials__marquee-wrap {
    overflow: hidden;
    position: relative;
}

.testimonials__marquee-wrap::before,
.testimonials__marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.testimonials__marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--color-light), transparent);
}

.testimonials__marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--color-light), transparent);
}

.testimonials__marquee {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testimonials-scroll 32s linear infinite;
}

.testimonials__marquee:hover {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Card */
.testimonial-card {
    background: linear-gradient(135deg, #030e14 0%, #114f5c 60%, #176470 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    width: 360px;
    flex-shrink: 0;
    transition: box-shadow var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.testimonial-card--featured {
    border-color: rgba(240, 120, 32, 0.3);
    box-shadow: 0 16px 48px rgba(27, 107, 122, 0.35);
}

/* Stars */
.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Quote text */
.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    flex: 1;
}

/* Author */
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e05e10, #F07820);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
}

.testimonial-card__location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Responsive */
@media (max-width: 540px) {
    .testimonials__btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}

/* ============================================================
   FAQS
   ============================================================ */

.faqs {
    background: linear-gradient(135deg, #030e14 0%, #114f5c 60%, #176470 100%);
    padding: 88px 24px;
}

.faqs__container {
    max-width: 800px;
    margin: 0 auto;
}

.faqs__header {
    text-align: center;
    margin-bottom: 56px;
}

.faqs__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.faqs__subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Accordion item */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-family);
    transition: color var(--transition);
}

.faq-item__question:hover {
    color: #F07820;
}

.faq-item.open .faq-item__question {
    color: var(--color-secondary);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--color-muted);
    transition: transform var(--transition), border-color var(--transition),
                color var(--transition), background-color var(--transition);
}

.faq-item.open .faq-item__icon {
    transform: rotate(180deg);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background-color: rgba(27, 107, 122, 0.15);
}

/* Answer panel */
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item__answer p {
    padding: 0 0 22px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.faq-item__answer p strong {
    color: var(--color-secondary);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
    background: linear-gradient(135deg, #030e14 0%, #114f5c 60%, #176470 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(240, 120, 32, 0.2), transparent 65%);
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-section {
    background-color: var(--color-light);
    padding: 72px 24px 88px;
}

.gallery-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Filter buttons */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.gallery-filter {
    padding: 9px 24px;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: var(--color-white);
    color: var(--color-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-family);
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition);
}

.gallery-filter:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.gallery-filter.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(240, 120, 32, 0.35);
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Item */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: #cce8ee;
}

.gallery-item:nth-child(4n+1) {
    grid-column: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* Overlay */
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 39, 48, 0.88) 0%, rgba(11, 39, 48, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition);
    padding: 20px;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay i {
    font-size: 1.6rem;
    color: var(--color-white);
}

.gallery-item__overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    line-height: 1.4;
}

/* ── Lightbox ── */
.lightbox__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
}

.lightbox__backdrop.active {
    display: block;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2001;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    display: block;
}

.lightbox__caption {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-align: center;
}

.lightbox__close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    z-index: 2002;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    z-index: 2002;
}

.lightbox__nav:hover {
    background: rgba(240, 120, 32, 0.5);
    border-color: var(--color-primary);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__nav.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ── Gallery Responsive ── */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
}

/* ============================================================
   CAREERS
   ============================================================ */

/* Why Join Us */
.careers-why {
    background-color: var(--color-light);
    padding: 72px 24px;
}

.careers-why__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.careers-why__perk {
    text-align: center;
    padding: 36px 24px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.careers-why__perk:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.08);
}

.careers-why__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e05e10, #F07820);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--color-white);
}

.careers-why__perk h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.careers-why__perk p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Open Positions */
.careers-positions {
    background-color: #e2f2f6;
    padding: 80px 24px;
}

.careers-positions__container {
    max-width: 1200px;
    margin: 0 auto;
}

.careers-positions__header {
    text-align: center;
    margin-bottom: 52px;
}

.careers-positions__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.careers-positions__subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Careers grid */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* Job Card */
.job-card {
    background: var(--color-white);
    border-radius: 14px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0,0,0,0.1);
}

.job-card--featured {
    background: linear-gradient(135deg, #030e14 0%, #114f5c 60%, #176470 100%);
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(27,107,122,0.3);
}

.job-card--featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 52px rgba(27,107,122,0.45);
}

/* Card header */
.job-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.job-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e05e10, #F07820);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.job-card--featured .job-card__icon {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
}

.job-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.job-card--featured .job-card__title {
    color: var(--color-white);
}

.job-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 100px;
    background: rgba(240,120,32,0.12);
    color: var(--color-primary);
    border: 1px solid rgba(240,120,32,0.25);
}

.job-card--featured .job-card__badge {
    background: rgba(240,120,32,0.2);
    color: var(--color-primary);
    border-color: rgba(240,120,32,0.35);
}

/* Details list */
.job-card__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-card__details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.job-card__details li i {
    width: 16px;
    color: var(--color-primary);
    font-size: 0.82rem;
    flex-shrink: 0;
}

.job-card--featured .job-card__details li {
    color: rgba(255,255,255,0.7);
}

.job-card--featured .job-card__details li i {
    color: var(--color-secondary);
}

/* Description */
.job-card__desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--color-muted);
    flex: 1;
}

.job-card--featured .job-card__desc {
    color: rgba(255,255,255,0.65);
}

/* Apply button */
.btn--apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #e05e10, #F07820);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background var(--transition);
}

.btn--apply:hover {
    background: linear-gradient(135deg, #c54e08, #d96510);
}

.job-card--featured .btn--apply {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: none;
}

.job-card--featured .btn--apply:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: none;
}

/* Apply CTA banner */
.careers-cta {
    background: linear-gradient(135deg, #0B2730 0%, #0d3a4a 55%, #1B6B7A 100%);
    padding: 72px 24px;
}

.careers-cta__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.careers-cta__text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
}

.careers-cta__text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
}

.careers-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.careers-cta__phones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.careers-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    transition: background var(--transition), color var(--transition);
}

.careers-cta__phone:hover {
    background: rgba(255,255,255,0.12);
    color: var(--color-white);
}

.careers-cta__phone i {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .careers-why__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .careers-cta__container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .careers-why__container {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.main-content {
    min-height: calc(100vh - var(--navbar-height) - 260px);
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.75);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer__brand a {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    margin-bottom: 14px;
}

.footer__logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.footer__heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--color-secondary);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer__contact-icon {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 20px 24px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__designmaza {
    color: #F07820;
    text-decoration: none;
}

.footer__designmaza:hover {
    text-decoration: underline;
}

/* ── Social Icons (footer + contact) ─────────────────────── */
.footer__social,
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.contact-social {
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

.footer__social-link {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.contact-social__link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: transform 0.2s, color 0.2s;
    text-decoration: none;
}

/* Footer — no bg, brand colors */
.footer__social-link--insta {
    color: #e1306c;
}

.footer__social-link--fb {
    color: #1877f2;
}

.footer__social-link--wa {
    color: #25d366;
}

.footer__social-link:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.contact-social__link:hover {
    transform: translateY(-3px);
    opacity: 0.88;
}

/* Contact left panel — brand colors */
.contact-social__link--insta {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-social__link--fb {
    background: #1877f2;
}

.contact-social__link--wa {
    background: #25d366;
}

@media (max-width: 900px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 520px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

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

/* ── Contact Section Layout ────────────────────────────────── */
.contact-section {
    padding: 80px 24px;
    background: var(--color-white);
}

.contact-section__container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* ── Contact Info (left column) ─────────────────────────────── */
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.contact-info__cards {
    background: linear-gradient(160deg, #030e14 0%, #114f5c 100%);
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card:last-child {
    border-bottom: none;
}

.contact-card__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e05e10, #F07820);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-card__body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.contact-card__body a,
.contact-card__body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.7;
    display: inline;
}

.contact-card__body p {
    display: block;
}

.contact-card__body a:hover {
    color: var(--color-primary);
}

/* ── Contact Form (right column) ───────────────────────────── */
.contact-form-wrap {
    background: var(--color-white);
    padding: 48px 40px;
}

.contact-form-wrap__title {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--color-dark);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-form-wrap__desc {
    color: var(--color-muted);
    font-size: 0.97rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__group {
    margin-bottom: 18px;
}

.contact-form__label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.contact-form__label span {
    color: var(--color-primary);
}

.contact-form__input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(74, 138, 153, 0.3);
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: var(--color-white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.contact-form__input::placeholder {
    color: #bbb;
}

.contact-form__input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(240, 120, 32, 0.12);
}

.contact-form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A8A99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 36px;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form__submit {
    width: 100%;
    margin-top: 6px;
    font-size: 1rem;
}

/* ── Success / Error messages ──────────────────────────────── */
.contact-form__success,
.contact-form__error {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form__success {
    background: #e8f9ef;
    color: #1a7a40;
    border: 1px solid #a3d9b8;
}

.contact-form__error {
    background: #fdf0ee;
    color: #c0392b;
    border: 1px solid #f0b8b0;
}

/* ── Map ───────────────────────────────────────────────────── */
.contact-map {
    width: 100%;
    height: 380px;
    border-top: 4px solid var(--color-secondary);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .contact-section__container {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .contact-info {
        min-height: 320px;
    }

    .contact-form-wrap {
        padding: 36px 28px;
    }
}

@media (max-width: 560px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 280px;
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── About Intro ────────────────────────────────────────────── */
.about-intro {
    background: var(--color-white);
    padding: 88px 24px;
}

.about-intro__container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-intro__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(240, 120, 32, 0.1);
    border: 1px solid rgba(240, 120, 32, 0.25);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.about-intro__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-intro__body {
    font-size: 0.97rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-intro__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius);
    background: var(--color-light);
    border: 1px solid rgba(27, 107, 122, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
}

.about-intro__badge i {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

/* Image side */
.about-intro__image-wrap {
    position: relative;
}

.about-intro__image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-intro__image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #e05e10, #F07820);
    color: var(--color-white);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(240, 120, 32, 0.35);
}

.about-intro__image-number {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.about-intro__image-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.88;
    margin-top: 4px;
    white-space: nowrap;
}

/* ── Stats Strip ────────────────────────────────────────────── */
.about-stats {
    background: linear-gradient(135deg, #030e14 0%, #114f5c 60%, #176470 100%);
    padding: 52px 24px;
}

.about-stats__container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 52px;
    gap: 6px;
}

.about-stats__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.about-stats__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
    text-align: center;
}

.about-stats__divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ── What We Do ─────────────────────────────────────────────── */
.about-services {
    background: var(--color-light);
    padding: 88px 24px;
}

.about-services__container {
    max-width: 1140px;
    margin: 0 auto;
}

.about-services__header {
    text-align: center;
    margin-bottom: 52px;
}

.about-services__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.about-services__subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-service-card {
    background: var(--color-white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(27, 107, 122, 0.08);
}

.about-service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.about-service-card__body {
    padding: 28px 26px;
}

.about-service-card__body i {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
}

.about-service-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.about-service-card__body p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.75;
}

/* ── Why Choose Us ──────────────────────────────────────────── */
.about-why {
    background: var(--color-white);
    padding: 88px 24px;
}

.about-why__container {
    max-width: 1140px;
    margin: 0 auto;
}

.about-why__header {
    text-align: center;
    margin-bottom: 52px;
}

.about-why__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.about-why__subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-why__card {
    padding: 32px 28px;
    background: var(--color-light);
    border-radius: 12px;
    border: 1px solid rgba(27, 107, 122, 0.08);
}

.about-why__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(27,107,122,0.1), rgba(27,107,122,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 18px;
}

.about-why__card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.about-why__card p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.75;
}

/* ── Photo Strip ────────────────────────────────────────────── */
.about-photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 260px;
}

.about-photo-strip__item {
    overflow: hidden;
}

.about-photo-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-photo-strip__item:hover img {
    transform: scale(1.06);
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.about-cta {
    background: linear-gradient(135deg, #0B2730 0%, #0d3a4a 55%, #1B6B7A 100%);
    padding: 80px 24px;
}

.about-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-cta__text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
}

.about-cta__text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    line-height: 1.7;
}

.about-cta__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── About Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-intro__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro__image {
        height: 320px;
    }

    .about-intro__image-badge {
        bottom: -16px;
        left: 16px;
    }

    .about-services__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-stats__item {
        padding: 0 24px;
    }

    .about-photo-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 320px;
    }

    .about-cta__container {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .about-stats__container {
        flex-wrap: wrap;
        gap: 24px;
    }

    .about-stats__divider {
        display: none;
    }

    .about-photo-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 240px;
    }
}

/* ============================================================
   OUR PRODUCTS SECTION (homepage)
   ============================================================ */

.products-section {
    background: var(--color-white);
    padding: 88px 24px;
}

.products-section__container {
    max-width: 1140px;
    margin: 0 auto;
}

.products-section__header {
    text-align: center;
    margin-bottom: 52px;
}

.products-section__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.products-section__subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid — 3 cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card — entire card is a link */
.product-card {
    background: var(--color-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    border-color: rgba(240, 120, 32, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Image */
.product-card__img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.06);
}

/* Body */
.product-card__body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-card__tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: rgba(240, 120, 32, 0.12);
    border: 1px solid rgba(240, 120, 32, 0.2);
    padding: 3px 10px;
    border-radius: 100px;
    align-self: flex-start;
}

.product-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 4px;
}

.product-card__desc {
    font-size: 0.86rem;
    color: #555;
    line-height: 1.7;
    flex: 1;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 8px;
    transition: gap var(--transition);
}

.product-card:hover .product-card__cta {
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCTS PAGE — LISTING & DETAIL
═══════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ───────────────────────────────────────────── */
.prod-breadcrumb {
    background: var(--color-light);
    border-bottom: 1px solid rgba(27, 107, 122, 0.12);
}

.prod-breadcrumb__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.prod-breadcrumb__link {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.prod-breadcrumb__link:hover {
    color: var(--color-primary);
}

.prod-breadcrumb__sep {
    font-size: 0.65rem;
    color: var(--color-muted);
}

.prod-breadcrumb__current {
    color: var(--color-dark);
    font-weight: 600;
}

/* ── Listing ──────────────────────────────────────────────── */
.prod-listing {
    padding: 72px 32px;
    background: #fff;
}

.prod-listing__container {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.prod-listing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(27, 107, 122, 0.14);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.prod-listing-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(240, 120, 32, 0.14);
    transform: translateY(-4px);
}

.prod-listing-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.prod-listing-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.prod-listing-card:hover .prod-listing-card__img img {
    transform: scale(1.06);
}

.prod-listing-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.92);
    padding: 3px 10px;
    border-radius: 100px;
}

.prod-listing-card__body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.prod-listing-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.prod-listing-card__body p {
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.prod-listing-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 10px;
    transition: gap var(--transition);
}

.prod-listing-card:hover .prod-listing-card__cta {
    gap: 10px;
}

/* ── Brand header ─────────────────────────────────────────── */
.prod-brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(27, 107, 122, 0.15);
}

.prod-brand-header__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 2px;
}

.prod-brand-header__sub {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0;
}

.prod-brand-header__sub strong {
    color: var(--color-secondary);
}

.prod-brand-header__link {
    font-size: 0.82rem;
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: color var(--transition);
}

.prod-brand-header__link:hover {
    color: #F07820;
}

/* ── Section title header ─────────────────────────────────── */
.prod-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.prod-section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.prod-section-title p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ── Alt section bg ───────────────────────────────────────── */
.prod-listing--alt {
    background: var(--color-light);
}

/* ── Watt label ───────────────────────────────────────────── */
.prod-listing-card__watt {
    font-size: 1rem;
    font-weight: 700;
    color: #F07820 !important;
    margin: 0 !important;
}

/* ── Badge on image ───────────────────────────────────────── */
.prod-listing-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #e05e10, #F07820);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.03em;
}

/* ── CTA action row ───────────────────────────────────────── */
.prod-listing-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* ── Small button variant ─────────────────────────────────── */
.btn--sm {
    padding: 8px 14px;
    font-size: 0.8rem;
}

/* ── Detail layout ────────────────────────────────────────── */
.prod-detail {
    padding: 60px 32px 80px;
    background: #fff;
}

.prod-detail__container {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-detail__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ── Gallery ──────────────────────────────────────────────── */
.prod-detail__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 90px;
}

.prod-gallery__main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-light);
}

.prod-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

.prod-gallery__thumbs {
    display: flex;
    gap: 10px;
}

.prod-gallery__thumb {
    width: calc(33.33% - 7px);
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition), opacity var(--transition);
    opacity: 0.65;
}

.prod-gallery__thumb:hover {
    opacity: 1;
}

.prod-gallery__thumb.active {
    border-color: var(--color-primary);
    opacity: 1;
}

/* ── Info panel ───────────────────────────────────────────── */
.prod-detail__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prod-detail__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: rgba(240, 120, 32, 0.1);
    border: 1px solid rgba(240, 120, 32, 0.2);
    padding: 3px 12px;
    border-radius: 100px;
    align-self: flex-start;
    margin-bottom: 12px;
}

.prod-detail__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin: 0 0 16px;
}

.prod-detail__desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.75;
    margin: 0 0 24px;
}

/* ── Types ────────────────────────────────────────────────── */
.prod-detail__types {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.prod-detail__type {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--color-light);
    border: 1px solid rgba(27, 107, 122, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
}

.prod-detail__type > i {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.prod-detail__type > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prod-detail__type strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-dark);
}

.prod-detail__type span {
    font-size: 0.83rem;
    color: var(--color-muted);
    line-height: 1.55;
}

/* ── Specs table ──────────────────────────────────────────── */
.prod-detail__specs {
    margin-bottom: 24px;
}

.prod-detail__specs h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-dark);
    margin: 0 0 10px;
}

.prod-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.prod-specs-table tr:nth-child(odd) td {
    background: var(--color-light);
}

.prod-specs-table td {
    padding: 9px 14px;
    border: 1px solid rgba(27, 107, 122, 0.1);
    color: #4a5568;
}

.prod-specs-table td:first-child {
    font-weight: 600;
    color: var(--color-dark);
    width: 46%;
}

/* ── Features list ────────────────────────────────────────── */
.prod-detail__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prod-detail__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #4a5568;
}

.prod-detail__features li i {
    color: var(--color-secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ── CTA row ──────────────────────────────────────────────── */
.prod-detail__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .prod-listing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .prod-detail__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .prod-detail__gallery {
        position: static;
    }
}

@media (max-width: 600px) {
    .prod-listing {
        padding: 48px 20px;
    }

    .prod-listing__grid {
        grid-template-columns: 1fr;
    }

    .prod-detail {
        padding: 40px 20px 60px;
    }

    .prod-detail__title {
        font-size: 1.55rem;
    }

    .prod-breadcrumb__container {
        padding: 10px 20px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   WHATSAPP CHATBOT WIDGET
═══════════════════════════════════════════════════════════════ */

.chatbot {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* ── Trigger button ───────────────────────────────────────── */
.chatbot__trigger {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.chatbot__trigger:hover {
    transform: scale(1.08);
}

.chatbot__icon-open,
.chatbot__icon-close {
    position: absolute;
    font-size: 1.7rem;
    color: #fff;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chatbot__icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

/* When popup is open, swap icons */
.chatbot.open .chatbot__icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.chatbot.open .chatbot__icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

/* ── Popup window ─────────────────────────────────────────── */
.chatbot__popup {
    width: 300px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(11, 39, 48, 0.18);
    transform: scale(0.85) translateY(16px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.chatbot.open .chatbot__popup {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ── Header ───────────────────────────────────────────────── */
.chatbot__header {
    background: #25D366;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot__header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.chatbot__name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.chatbot__status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
}

.chatbot__online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    animation: chatbot-pulse 2s infinite;
}

@keyframes chatbot-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.chatbot__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.15s ease, background 0.15s ease;
}

.chatbot__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* ── Body / message bubble ────────────────────────────────── */
.chatbot__body {
    padding: 18px 16px 14px;
    background: #f0f4f6;
}

.chatbot__bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 12px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 90%;
}

.chatbot__bubble p {
    font-size: 0.88rem;
    color: #2d3748;
    margin: 0;
    line-height: 1.55;
}

.chatbot__time {
    font-size: 0.72rem;
    color: #a0aec0;
    margin-top: 4px;
    align-self: flex-end;
}

/* ── Footer / CTA button ──────────────────────────────────── */
.chatbot__footer {
    padding: 12px 16px 16px;
    background: #fff;
}

.chatbot__wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: #25D366;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.chatbot__wa-btn:hover {
    background: #1ebe5d;
}

.chatbot__wa-btn i {
    font-size: 1.1rem;
}

/* ── Mobile adjustment ────────────────────────────────────── */
@media (max-width: 480px) {
    .chatbot {
        bottom: 18px;
        right: 18px;
    }

    .chatbot__popup {
        width: calc(100vw - 36px);
    }
}

/* ============================================================
   WHAT WE OFFER — index.html
   ============================================================ */

.what-we-offer {
    background: linear-gradient(135deg, #030e14 0%, #114f5c 60%, #176470 100%);
    padding: 88px 24px;
}

.what-we-offer__container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

.what-we-offer__heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.what-we-offer__heading span {
    color: var(--color-primary);
}

.what-we-offer__text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.what-we-offer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wwo-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 24px 20px;
}

.wwo-card__icon {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.wwo-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.wwo-card__text {
    font-size: 0.83rem;
    color: #555;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .what-we-offer__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 540px) {
    .what-we-offer__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   WHY CHOOSE SUNSAHARA — index.html
   ============================================================ */

.why-choose {
    background: var(--color-white);
    padding: 88px 24px;
}

.why-choose__container {
    max-width: 1140px;
    margin: 0 auto;
}

.why-choose__header {
    text-align: center;
    margin-bottom: 56px;
}

.why-choose__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.why-choose__subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wc-card {
    background: var(--color-light);
    border-radius: 10px;
    padding: 28px 24px;
    transition: background var(--transition), box-shadow var(--transition);
}

.wc-card:hover {
    background: linear-gradient(135deg, #030e14 0%, #114f5c 60%, #176470 100%);
    box-shadow: 0 8px 28px rgba(3, 14, 20, 0.25);
}

.wc-card__icon {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 14px;
    transition: color var(--transition);
}

.wc-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.wc-card__text {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.7;
    transition: color var(--transition);
}

.wc-card:hover .wc-card__icon {
    color: var(--color-primary);
}

.wc-card:hover .wc-card__title {
    color: var(--color-white);
}

.wc-card:hover .wc-card__text {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .why-choose__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   OUR TRUSTED PARTNERS — index.html
   ============================================================ */

.partners {
    background: var(--color-white);
    padding: 64px 24px;
    overflow: hidden;
}

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

.partners__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
}

.partners__track-wrap {
    overflow: hidden;
    position: relative;
}

/* fade edges */
.partners__track-wrap::before,
.partners__track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}

.partners__track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.partners__track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.partners__track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: partners-scroll 28s linear infinite;
}

.partners__track:hover {
    animation-play-state: paused;
}

.partners__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes partners-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
