/* ============================================================
   ZACCO — Zeta Administrative Consultations Company
   Design System & Global Styles
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
    --navy: #0a1628;
    --navy-mid: #0f2040;
    --teal: #0d8a7a;
    --teal-light: #12b09d;
    --teal-glow: #16c9b4;
    --gold: #c9a227;
    --gold-light: #f0c040;

    --white: #ffffff;
    --off-white: #f4f8fb;
    --bg-surface: #ffffff;

    --gray-100: #e8edf2;
    --gray-300: #b0bec5;
    --gray-500: #607080;
    --gray-700: #37474f;
    --text-primary: #0a1628;
    --text-secondary: #455a64;
    --text-light: #78909c;

    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 16px 64px rgba(10, 22, 40, 0.18);
    --shadow-xl: 0 32px 80px rgba(10, 22, 40, 0.25);
    --shadow-teal: 0 8px 32px rgba(13, 138, 122, 0.3);

    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="dark"] {
    --white: #0a1628;
    --off-white: #0f2040;
    --bg-surface: #12223a;

    --gray-100: #1a365d;
    --gray-300: #2c4a75;
    --gray-700: #b0bec5;

    --text-primary: #ffffff;
    --text-secondary: #b0bec5;
    --text-light: #78909c;

    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.7);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Tajawal', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
    line-height: 1.75;
}

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

.text-teal {
    color: var(--teal-light);
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

/* --- Container --- */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Spacing --- */
section {
    padding: 96px 0;
}

/* --- Section Label --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 138, 122, 0.1);
    border: 1px solid rgba(13, 138, 122, 0.25);
    color: var(--teal-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
}

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

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

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text .brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.nav-logo-text .tagline {
    font-size: 0.6rem;
    color: var(--teal-glow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle,
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover,
.lang-toggle:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-toggle i,
.lang-toggle i {
    font-size: 1.1rem;
}

.lang-toggle span {
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-nav {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-teal);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 40px rgba(13, 138, 122, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bg-surface);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(13, 138, 122, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--teal-light);
    border: 2px solid var(--teal-light);
}

.btn-outline:hover {
    background: var(--teal-light);
    color: white;
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #0a2442 40%, #0d3352 70%, #0e3d4a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

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

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 138, 122, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    bottom: 50px;
    left: 10%;
    border-radius: 50%;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 138, 122, 0.15);
    border: 1px solid rgba(13, 138, 122, 0.4);
    color: var(--teal-glow);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--teal-glow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    color: white;
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--teal-glow), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat .num span {
    color: var(--teal-glow);
}

.hero-stat .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* Hero Right — Floating Card */
.hero-visual {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: end;
}

.hero-card-main {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(22, 201, 180, 0.12);
    border: 1px solid rgba(22, 201, 180, 0.3);
    color: var(--teal-glow);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-status .dot {
    width: 6px;
    height: 6px;
    background: var(--teal-glow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-card-main h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hero-card-main p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.accred-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.accred-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.accred-item .accred-logo {
    width: 36px;
    height: 36px;
    background: var(--bg-surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    line-height: 1.1;
    flex-shrink: 0;
}

.accred-item .accred-info {
    flex: 1;
}

.accred-item .accred-name {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.accred-item .accred-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
}

.accred-item .accred-check {
    color: var(--teal-glow);
    font-size: 1rem;
}

.hero-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.hero-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.hero-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-float-badge.top-left {
    top: -20px;
    left: -20px;
    animation: float1 4s ease-in-out infinite;
}

.hero-float-badge.bottom-right {
    bottom: -20px;
    right: -20px;
    animation: float2 4s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(8px);
    }
}

.float-icon {
    font-size: 1.5rem;
}

.float-info {
    display: flex;
    flex-direction: column;
}

.float-num {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.float-label {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--navy);
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item .trust-icon {
    font-size: 1.4rem;
    opacity: 0.8;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   ABOUT / STATS
   ============================================================ */
.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-main-card {
    background: var(--navy);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-main-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 138, 122, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(13, 138, 122, 0.15);
    border-color: rgba(13, 138, 122, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-number span {
    color: var(--teal-glow);
}

.stat-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-point .point-icon {
    width: 36px;
    height: 36px;
    background: rgba(13, 138, 122, 0.12);
    border: 1px solid rgba(13, 138, 122, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-point .point-text {
    flex: 1;
}

.about-point .point-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.about-point .point-text span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
    background: var(--bg-surface);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

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

.service-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover {
    background: var(--bg-surface);
    border-color: rgba(13, 138, 122, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-light);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ============================================================
   ACCREDITATION HIGHLIGHT
   ============================================================ */
.accreditation-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.accreditation-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 138, 122, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.accred-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    color: white;
}

.accred-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.accred-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.accred-card:hover {
    background: rgba(13, 138, 122, 0.15);
    border-color: rgba(13, 138, 122, 0.4);
    transform: translateY(-4px);
}

.accred-card-logo {
    width: 72px;
    height: 72px;
    background: var(--bg-surface);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--navy);
    line-height: 1.2;
    text-align: center;
}

.accred-card h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.accred-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.accred-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.accred-cta-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.accred-cta-text p {
    color: rgba(255, 255, 255, 0.6);
}

.accred-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ============================================================
   WHY US
   ============================================================ */
.whyus-section {
    background: var(--off-white);
}

.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.whyus-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whyus-point {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.whyus-point:hover {
    border-color: rgba(13, 138, 122, 0.25);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.whyus-point .wp-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.whyus-point .wp-text h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 6px;
}

.whyus-point .wp-text p {
    font-size: 0.875rem;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-section {
    background: var(--bg-surface);
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

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

/* --- Team Card (Photo-Ready) --- */
.team-card {
    background: var(--bg-surface);
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    border-color: rgba(13, 138, 122, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

/* Photo area — swap src on <img> to use a real photo */
.team-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3352 60%, var(--teal) 130%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
}

/* Placeholder shown when no photo is provided */
.team-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--navy) 0%, #0e3558 60%, #0d6659 130%);
}

.team-photo-placeholder .initials {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.team-photo-placeholder .placeholder-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Gradient overlay at bottom of photo */
.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

/* Specialty badge over the photo */
.team-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(13, 138, 122, 0.92);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Card body below photo */
.team-card-body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card-body h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.team-card-body .role {
    color: var(--teal-light);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card-body .bio {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.team-divider {
    height: 1px;
    background: var(--gray-100);
    margin-bottom: 14px;
}

.team-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.team-links a {
    width: 32px;
    height: 32px;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.team-links a:hover {
    background: var(--teal-light);
    border-color: var(--teal-light);
    color: white;
    transform: translateY(-2px);
}

.team-links .tl-email {
    margin-left: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: var(--off-white);
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

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

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(13, 138, 122, 0.2);
}

.tcard-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
}

.tcard-quote {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.tcard-info .name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.tcard-info .org {
    color: var(--text-light);
    font-size: 0.8rem;
}

.tcard-badge {
    margin-left: auto;
    background: rgba(13, 138, 122, 0.08);
    border: 1px solid rgba(13, 138, 122, 0.2);
    color: var(--teal-light);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0a2442 50%, var(--teal) 150%);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content .section-label {
    margin: 0 auto 20px;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    padding: 72px 0 0;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
}

.footer-logo .brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
}

.footer-col h5 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--teal-glow);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.fc-icon {
    color: var(--teal-glow);
    font-size: 0.9rem;
    margin-top: 2px;
}

.fc-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.fc-text a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.fc-text a:hover {
    color: var(--teal-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

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

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

    .accred-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .nav-links,
    .theme-toggle,
    .lang-toggle,
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

    .trust-bar-inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .trust-divider {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================================
   RTL — Arabic Language Support
   ============================================================ */

[dir="rtl"] {
    font-family: 'Tajawal', 'Inter', sans-serif;
    text-align: right;
}

/* Navbar RTL */
[dir="rtl"] .nav-inner {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-logo {
    flex-direction: row-reverse;
}

/* Hero RTL */
[dir="rtl"] .hero-content {
    direction: rtl;
}

[dir="rtl"] .hero-left {
    text-align: right;
}

[dir="rtl"] .hero-badge {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-stats {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-float-badge.top-left {
    left: auto;
    right: -20px;
}

[dir="rtl"] .hero-float-badge.bottom-right {
    right: auto;
    left: -20px;
}

[dir="rtl"] .float-info {
    text-align: right;
}

/* Trust bar RTL */
[dir="rtl"] .trust-bar-inner {
    flex-direction: row-reverse;
}

[dir="rtl"] .trust-item {
    flex-direction: row-reverse;
}

/* About section RTL */
[dir="rtl"] .about-grid {
    direction: rtl;
}

[dir="rtl"] .about-content {
    text-align: right;
}

[dir="rtl"] .about-point {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .about-point .point-text {
    text-align: right;
}

/* Section labels RTL */
[dir="rtl"] .section-label {
    flex-direction: row-reverse;
}

/* Services RTL */
[dir="rtl"] .services-header {
    text-align: right;
}

[dir="rtl"] .service-card {
    text-align: right;
}

[dir="rtl"] .service-link {
    flex-direction: row-reverse;
}

/* Accreditation RTL */
[dir="rtl"] .accred-header {
    text-align: right;
}

[dir="rtl"] .accred-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .accred-cta {
    flex-direction: row-reverse;
}

[dir="rtl"] .accred-cta-text {
    text-align: right;
}

[dir="rtl"] .accred-cta-actions {
    flex-direction: row-reverse;
}

/* Why Us RTL */
[dir="rtl"] .whyus-grid {
    direction: rtl;
}

[dir="rtl"] .whyus-point {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .wp-text {
    text-align: right;
}

/* Team RTL */
[dir="rtl"] .team-header {
    text-align: right;
}

[dir="rtl"] .team-card-body {
    text-align: right;
}

[dir="rtl"] .team-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .team-badge {
    right: auto;
    left: 12px;
}

/* Testimonials RTL */
[dir="rtl"] .testimonials-header {
    text-align: right;
}

[dir="rtl"] .tcard-author {
    flex-direction: row-reverse;
}

[dir="rtl"] .tcard-info {
    text-align: right;
}

/* Footer RTL */
[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .footer-brand {
    text-align: right;
}

[dir="rtl"] .footer-socials {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-col {
    text-align: right;
}

[dir="rtl"] .footer-links {
    text-align: right;
}

[dir="rtl"] .footer-contact-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .fc-text {
    text-align: right;
}

[dir="rtl"] .footer-bottom {
    flex-direction: row-reverse;
}

/* Buttons RTL */
[dir="rtl"] .btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-nav {
    direction: rtl;
}

/* Hero card RTL */
[dir="rtl"] .hero-card-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .accred-item .accred-info {
    text-align: right;
}

[dir="rtl"] .hero-card-btn {
    flex-direction: row-reverse;
}

/* About visual — keep stats centered regardless */
[dir="rtl"] .about-stats-grid {
    direction: rtl;
}

[dir="rtl"] .stat-item {
    text-align: center;
}

/* About enriched sections RTL */
[dir="rtl"] .about-cert-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .cert-badge {
    flex-direction: row-reverse;
}

/* WhyUs enriched left RTL */
[dir="rtl"] .whyus-left-card {
    text-align: right;
}

[dir="rtl"] .wlc-metrics {
    flex-direction: row-reverse;
}

/* Mobile menu RTL */
[dir="rtl"] .mobile-menu {
    direction: rtl;
}

/* Page hero RTL */
[dir="rtl"] .page-hero-content {
    text-align: right;
}

[dir="rtl"] .page-hero-content .section-label {
    margin: 0 auto 16px 0;
}

/* Accreditation page RTL */
[dir="rtl"] .ab-card {
    direction: rtl;
}

[dir="rtl"] .ab-content {
    text-align: right;
}

[dir="rtl"] .ab-benefit {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .ab-tags {
    flex-direction: row-reverse;
}

[dir="rtl"] .why-grid {
    direction: rtl;
}

[dir="rtl"] .why-point {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .why-text {
    text-align: right;
}

[dir="rtl"] .steps-grid {
    direction: rtl;
}

[dir="rtl"] .step-card {
    text-align: right;
}

[dir="rtl"] .step-connector {
    right: auto;
    left: -13px;
}

/* Services page RTL */
[dir="rtl"] .sdc-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .sdc-title {
    text-align: right;
}

[dir="rtl"] .sdc-feature {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .pricing-features {
    direction: rtl;
}

[dir="rtl"] .pf-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .booking-grid {
    direction: rtl;
}

[dir="rtl"] .booking-info {
    text-align: right;
}

[dir="rtl"] .bc-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .bc-text {
    text-align: right;
}

[dir="rtl"] .form-row {
    direction: rtl;
}

[dir="rtl"] .form-group label {
    text-align: right;
}

/* Articles page RTL */
[dir="rtl"] .categories-bar {
    flex-direction: row-reverse;
}

[dir="rtl"] .article-body {
    text-align: right;
}

[dir="rtl"] .article-meta {
    flex-direction: row-reverse;
}

[dir="rtl"] .article-category {
    left: auto;
    right: 12px;
}

[dir="rtl"] .newsletter-box {
    flex-direction: row-reverse;
}

[dir="rtl"] .nl-text {
    text-align: right;
}

[dir="rtl"] .nl-form {
    flex-direction: row-reverse;
}

[dir="rtl"] .nl-form input {
    border-right: none;
    border-left: none;
    border-radius: 0 10px 10px 0;
}

[dir="rtl"] .nl-form button {
    border-radius: 10px 0 0 10px;
}

/* Contact page RTL */
[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .contact-info {
    text-align: right;
}

[dir="rtl"] .cinfo-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .cinfo-text {
    text-align: right;
}

[dir="rtl"] .contact-form-card {
    text-align: right;
}

/* ============================================================
   POLICY MODALS
   ============================================================ */
.policy-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.policy-modal.active {
    opacity: 1;
    visibility: visible;
}

.policy-modal-box {
    background: var(--bg-surface);
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: var(--border-radius-lg);
    position: relative;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    transform: scale(0.95);
    transition: var(--transition-slow);
}

.policy-modal.active .policy-modal-box {
    transform: scale(1);
}

.policy-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.policy-close-btn:hover {
    background: var(--navy);
    color: white;
}

.policy-content-area h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.policy-content-area h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin: 16px 0 8px;
}

.policy-content-area p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}