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

:root {
    /* Pantone C 7546 — Dark Steel Blue */
    --primary-blue: #465561;
    /* Pantone C 2995 — Bright Cyan */
    --secondary-blue: #00A5DB;
    /* Pantone C 1585 — Orange */
    --orange: #FF6A14;
    --light-blue: #E8F7FD;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --border-gray: #e5e7eb;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

.ltr {
    direction: ltr;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.icon-svg {
    width: 24px;
    height: 24px;
}

/* Header */
header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Offset scroll so sticky header doesn't hide section headings */
section[id] {
    scroll-margin-top: 80px;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

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

/* Nav — centered */
nav {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 4px;
    position: relative;
    transition: color 0.3s;
}

/* Underline hover effect */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-blue);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--secondary-blue);
}

nav a:hover::after {
    width: 100%;
}

/* CTA Button wrapper */
.header-cta {
    display: flex;
    align-items: center;
}

.contact-btn {
    background-color: var(--orange);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

.contact-btn:hover {
    background-color: #ea580c;
}

/* ==============================
   Hero Section — Full Carousel
   ============================== */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Slides --- */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

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

/* --- Overlay --- */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* --- Arrow Buttons --- */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    right: 24px;
}

.hero-arrow-next {
    left: 24px;
}

/* --- Hero Content --- */
.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 860px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.05rem;
    opacity: 0.92;
    line-height: 1.85;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

/* --- Dot Indicators --- */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
    background: white;
    transform: scale(1.25);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}


.buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

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

/* Why Choose Us Section */
.why-choose {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.why-choose h3 {
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-icon {
    width: 28px;
    height: 28px;
    background-color: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Services Section */
.services-section {
    max-width: 100%;
    margin: 0;
    padding: 5rem 2rem;
}

.services-section#services {
    background-color: #eaf2f8;
}

.services-section#services .section-header {
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Why Us Cards (Dark Section) */
.why-card {
    background-color: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: right;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--border-gray);
    border-top: 4px solid rgba(255, 106, 20, 0.2);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 1 1 320px;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-top-color: var(--orange);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 106, 20, 0.05) 0%, rgba(255, 106, 20, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--orange);
    transition: all 0.4s ease;
}

.service-icon .icon-svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

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

/* Statistics Section */
.stats-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    border-radius: 12px;
}

.stats-title {
    font-size: 24px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stats-subtitle {
    font-size: 14px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Sectors Marquee */
.sectors-section {
    width: 100%;
    margin: 0;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
    padding: 1rem 0 2rem;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 2rem;
    min-width: 100%;
    animation: scroll-rtl 40s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100% + 2rem));
    }
}

.sector-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 1.5rem;
    min-width: 300px;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.sector-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--orange);
}

.sector-icon {
    width: 56px;
    height: 56px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sector-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    /* CSS filter to turn black/gray to orange (#ff6a14) */
    filter: brightness(0) saturate(100%) invert(52%) sepia(86%) saturate(3015%) hue-rotate(348deg) brightness(101%) contrast(103%);
}

.sector-card:hover .sector-icon-img {
    transform: scale(1.15);
}

.sector-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.4;
    text-align: right;
}

/* Team Section */
.team-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.team-member {
    background-color: transparent;
    perspective: 1000px;
    min-height: 380px;
    height: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.flip-card-front {
    background-color: #f3f4f6;
    border: 2px solid transparent;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.flip-card-back {
    background-color: var(--primary-blue);
    color: white;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    padding: 2rem;
    align-items: center;
}

.flip-card-inner.flipped .flip-card-front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip-card-inner.flipped .flip-card-back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.6;
}

.member-avatar {
    width: 140px;
    height: 140px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.2rem;
}

.member-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.member-contact {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.learn-more-btn {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}

.learn-more-btn:hover {
    background-color: var(--secondary-blue);
    color: white;
}

/* Location Section */
.location-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.location-container {
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.location-map {
    width: 100%;
    height: 400px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.submit-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.875rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1e3a8a;
}

.contact-info {
    background-color: var(--primary-blue);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 600;
}

.contact-value {
    font-size: 14px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* Partner logos */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.partner-img-1,
.partner-img-2,
.partner-img-3,
.partner-img-4 {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.partner-img-1 {
    transform: scale(1.45);
}

/* ============================================================
   HAMBURGER / MOBILE NAV
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: var(--border-gray);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* Dark overlay behind the drawer */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
    backdrop-filter: blur(3px);
}

.mobile-nav-overlay.open {
    display: block;
}

/* Slide-in drawer (from right for RTL) */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 300;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

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

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border-gray);
    transition: color 0.2s, padding-right 0.2s;
}

.mobile-nav a:hover {
    color: var(--secondary-blue);
    padding-right: 16px;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav-close {
    align-self: flex-start;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-gray);
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 4px 8px;
}

/* ============================================================
   TABLET  (768px – 1023px)
   ============================================================ */
@media (max-width: 1023px) {

    /* --- Header: hide desktop nav, show hamburger on tablet too --- */
    nav#mainNav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-container {
        grid-template-columns: 1fr auto;
    }

    /* --- Header --- */
    nav {
        gap: 1rem;
    }

    nav a {
        font-size: 14px;
    }

    /* --- Hero --- */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

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

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

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

    /* Arrows: shrink and push to very edges so they don't overlap text */
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .hero-arrow-prev {
        right: 6px;
    }

    .hero-arrow-next {
        left: 6px;
    }

    /* --- Services grid --- */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

    .service-card {
        flex: none;
        max-width: none;
    }

    /* --- Stats --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- Team --- */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- Contact --- */
    .contact-container {
        gap: 2rem;
    }

    /* --- Location --- */
    .location-map {
        height: 320px;
    }

    /* --- Partners --- */
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================================
   MOBILE  (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {

    /* --- Header refinements for mobile --- */
    .logo-img {
        height: 55px;
    }

    /* --- Hero --- */
    .hero {
        height: 100svh;
        min-height: 480px;
    }

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

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

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* --- Hero --- */
    .hero {
        height: 100svh;
        min-height: 480px;
    }

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

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

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Arrows: move to bottom of hero, flanking the dots */
    .hero-arrow {
        top: auto;
        bottom: 16px;
        transform: none;
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .hero-arrow:hover {
        transform: scale(1.1);
    }

    .hero-arrow-prev {
        right: calc(50% - 100px);
    }

    .hero-arrow-next {
        left: calc(50% - 100px);
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.4rem;
        font-size: 14px;
    }

    /* --- Section headings --- */
    .section-title {
        font-size: 1.6rem;
    }

    .services-section {
        padding: 3.5rem 1.2rem;
    }

    /* --- Services grid: single column --- */
    .services-grid {
        display: flex;
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    /* --- Why Us cards --- */
    .why-card {
        padding: 2rem 1.2rem;
    }

    /* --- Stats --- */
    .stats-section {
        padding: 2rem 1.2rem;
        margin: 2rem 1rem;
        border-radius: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .stat-number {
        font-size: 28px;
    }

    /* --- Partners --- */
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .partner-img-1,
    .partner-img-2,
    .partner-img-3,
    .partner-img-4 {
        max-height: 120px;
        max-width: 180px;
    }

    .partner-img-2,
    .partner-img-3,
    .partner-img-4 {
        transform: none;
    }

    .partner-img-1 {
        transform: scale(1.35);
    }

    /* --- Team grid: single column --- */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-section {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .team-member {
        min-height: 380px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    /* --- Location --- */
    .location-section {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .location-container {
        grid-template-columns: 1fr !important;
    }

    .location-image {
        border-left: none !important;
        border-bottom: 1px solid var(--border-gray);
    }

    .location-map {
        height: 260px;
    }

    /* --- Contact --- */
    .contact-section {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        gap: 1.5rem;
    }

    /* --- Contact form channel picker: stack on very small screens --- */
    #radioLabelWA,
    #radioLabelEmail {
        min-width: 100%;
    }

    /* --- Footer --- */
    footer {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    footer p {
        font-size: 12px;
    }
}

/* ============================================================
   SMALL MOBILE  (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 24px;
    }

    .contact-container {
        padding: 1rem;
    }
}

/* ============================================================
   SMALL MOBILE  (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 24px;
    }

    .contact-container {
        padding: 1rem;
    }
}

/* ============================================================
   SIMPLE PHOTO GALLERY
   ============================================================ */
.simple-gallery {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.simple-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.simple-track-container {
    width: 100%;
    overflow: hidden;
}

.simple-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.simple-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 550px;
    background: #f3f4f6;
}

.simple-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.simple-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s, opacity 0.3s;
    opacity: 0.7;
}

.simple-arrow:hover {
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.simple-prev {
    left: 20px;
}

.simple-next {
    right: 20px;
}

.simple-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.simple-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.simple-dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .simple-slide {
        height: 350px;
    }

    .simple-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .simple-prev {
        left: 10px;
    }

    .simple-next {
        right: 10px;
    }
}

/* Partners Section */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.partner-img:first-child {
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}