/* ============================================================
   LAMSAT NAZAFA — Luxury Cleaning Services
   Palette: Gold #C9A84C · Cream #F8F4EC · Navy #0D1B2A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&display=swap');

:root {
    /* ── الألوان الأساسية: بنفسجي فخم (مستوحى من الفخامة والرقي) ── */
    --gold: #B77BE2;
    /* بنفسجي فاتح (يحل محل الذهبي) */
    --gold-light: #D9B4F0;
    --gold-dark: #8B5FB0;
    --gold-pale: rgba(183, 123, 226, 0.15);

    --navy: #2D1B3E;
    /* بنفسجي داكن (يحل محل النيلي) */
    --navy-mid: #3D2657;
    --navy-light: #4E3370;

    --cream: #F9F7FC;
    /* خلفية فاتحة جداً مع مسحة بنفسجية خفيفة */
    --cream-dark: #EFEAF5;

    --white: #FFFFFF;
    --text: #1E102E;
    --text-muted: #5A4A6E;

    /* يمكن استخدام هذا اللون للتحذيرات أو التفاصيل الدقيقة */
    --accent: #D28BFF;

    --border: rgba(183, 123, 226, 0.2);
    --shadow: 0 20px 60px rgba(45, 27, 62, 0.15);
    --shadow-gold: 0 8px 32px rgba(183, 123, 226, 0.25);
    --radius: 4px;
    --radius-lg: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ══════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.6));
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.8));
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-ar {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
}

.logo-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold-light);
    opacity: 0.8;
    text-transform: uppercase;
}

/* Nav links */
nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

nav a:hover {
    color: var(--gold-light);
}

nav a:hover::after {
    left: 14px;
    right: 14px;
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 2px !important;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold) !important;
}

.nav-cta::after {
    display: none !important;
}

.lang-toggle {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    white-space: nowrap;
}

.lang-toggle:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 2px;
    font-family: 'Tajawal', sans-serif !important;
    font-size: 16px !important;
}

.mobile-lang {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.mobile-lang:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #0D1B2A 0%, #152436 50%, #0D1B2A 100%);
}

/* Decorative grid lines */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    padding-top: 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    min-height: 100vh;
}

.hero-content {}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero-typing {
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    min-height: 1.4em;
    margin-bottom: 2rem;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--gold);
    margin-right: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 2px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 2px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-card-stack {
    position: relative;
    width: 380px;
    height: 460px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-card-main {
    width: 320px;
    height: 400px;
    top: 0;
    left: 30px;
    background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-card-main .big-icon {
    font-size: 80px;
}

.hero-card-badge {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.hero-card-stat {
    text-align: center;
}

.hero-card-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-card-stat .lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-card-accent {
    width: 160px;
    height: 160px;
    bottom: 20px;
    left: 0;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-gold);
    animation: float 6s ease-in-out infinite 3s;
}

.hero-card-accent .acc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy);
    font-weight: 700;
    line-height: 1;
}

.hero-card-accent .acc-lbl {
    font-size: 11px;
    color: var(--navy-mid);
    font-weight: 600;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── GOLD DIVIDER ── */
.gold-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ══════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════ */
.section {
    padding: 100px 0;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(32px, 4vw, 54px);
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered .section-sub {
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   SERVICES GRID (Home)
══════════════════════════════════════════════ */
.services-section {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    font-size: 48px;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(-3deg);
}

.service-card-num {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    color: rgba(201, 168, 76, 0.08);
    font-weight: 700;
    line-height: 1;
    transition: color 0.3s;
}

.service-card:hover .service-card-num {
    color: rgba(201, 168, 76, 0.15);
}

.service-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s;
}

.service-card:hover .service-card-link {
    gap: 14px;
}

/* ══════════════════════════════════════════════
   STATS COUNTER
══════════════════════════════════════════════ */
.stats-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201, 168, 76, 0.08), transparent);
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

[dir="ltr"] .stat-item {
    border-right: none;
    border-left: 1px solid rgba(201, 168, 76, 0.15);
}

[dir="ltr"] .stat-item:last-child {
    border-left: none;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US / VALUES
══════════════════════════════════════════════ */
.values-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.values-section::after {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: rgba(201, 168, 76, 0.1);
}

.value-card {
    background: var(--navy-mid);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}

.value-card:hover {
    background: var(--navy-light);
}

.value-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 15px;
}

.value-card-corner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--gold-pale);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    transition: width 0.4s, height 0.4s;
}

.value-card:hover .value-card-corner {
    width: 80px;
    height: 80px;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2.5rem;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 360px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--gold);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
}

.testimonial-city {
    font-size: 13px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════════ */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.blog-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    border: 1px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--border);
}

.blog-card-img {
    height: 200px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}

.blog-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.3), transparent);
}

.blog-card-body {
    padding: 2rem;
}

.blog-tag {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-card:hover h3 {
    color: var(--gold-dark);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.blog-date {
    color: var(--text-muted);
}

.blog-read {
    color: var(--gold);
    font-weight: 600;
    transition: gap 0.3s;
}

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner {
    background: var(--gold);
    padding: 80px 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 5%;
    font-size: 120px;
    opacity: 0.1;
}

.cta-banner::after {
    content: '✨';
    position: absolute;
    bottom: -20px;
    right: 5%;
    font-size: 120px;
    opacity: 0.1;
}

.cta-banner h2 {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--navy);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 18px;
    color: rgba(13, 27, 42, 0.7);
    margin-bottom: 2.5rem;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 2px;
    transition: var(--transition);
    border: 2px solid var(--navy);
}

.btn-dark:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
    background: var(--navy);
    padding: 160px 2.5rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 168, 76, 0.1), transparent),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.page-tag::before,
.page-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.page-hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ══════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════ */
.services-page {
    padding: 100px 0;
    background: var(--cream);
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-full-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-full-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-full-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.service-full-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-full-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 1.5rem;
}

.service-full-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-full-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 2px;
    transition: var(--transition);
    border: 2px solid var(--navy);
}

.btn-book:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.about-section {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2.5rem;
}

.about-visual {
    background: var(--navy);
    border-radius: var(--radius-lg);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.15), transparent);
}

.about-visual-img {
    position: relative;
    z-index: 1;
}

.about-text .section-label {
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: clamp(28px, 3vw, 44px);
    color: var(--navy);
    margin-bottom: 2rem;
}

.about-text h2 span {
    color: var(--gold);
    font-style: italic;
}

.about-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--navy);
}

.timeline {
    padding: 100px 0;
    background: var(--white);
}

.timeline-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
}

.timeline-inner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 1px;
    background: var(--border);
}

[dir="ltr"] .timeline-inner::before {
    right: auto;
    left: 50%;
}

.timeline-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--gold);
    font-weight: 700;
    text-align: left;
    min-width: 80px;
    padding-top: 4px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 0 0 4px var(--gold-pale);
}

.timeline-content h4 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold);
}

.team-card h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.team-card span {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

/* ══════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════ */
.blog-page {
    padding: 100px 0;
    background: var(--cream);
}

.blog-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2.5rem;
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.contact-info {}

.contact-info h2 {
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(-4px);
}

[dir="ltr"] .contact-method:hover {
    transform: translateX(4px);
}

.method-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 4px;
}

.method-info a,
.method-info span {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.method-info a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Contact Form */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--text);
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    outline: none;
    direction: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border: 2px solid var(--navy);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    margin-top: 100px;
    border: 1px solid var(--border);
    max-width: 1400px;
    margin: 0 auto 0;
    padding: 0 2.5rem;
    margin-top: 0;
}

.map-section {
    background: var(--cream);
    padding: 80px 2.5rem;
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 2rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    border-radius: var(--radius-lg);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-brand {}

.footer-brand .logo-ar {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-brand .logo-en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold-light);
    opacity: 0.7;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

[dir="ltr"] .whatsapp-float {
    left: auto;
    right: 2rem;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse-wa 2.5s ease-in-out infinite;
}

@keyframes pulse-wa {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ══════════════════════════════════════════════
   FADE IN ANIMATIONS
══════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

/* ══════════════════════════════════════════════
   QUICK CONTACT FORM (home)
══════════════════════════════════════════════ */
.quick-contact {
    padding: 100px 0;
    background: var(--navy-mid);
}

.quick-contact-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.quick-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    margin-top: 3rem;
    background: var(--white);
    padding: 8px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.quick-form input,
.quick-form select {
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    border: none;
    background: transparent;
    padding: 14px 18px;
    color: var(--text);
    outline: none;
    direction: inherit;
}

.quick-form input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.quick-form .btn-submit-inline {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.quick-form .btn-submit-inline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-top: 140px;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 280px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-overlay {
        display: flex;
    }

    .header-inner {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-main-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .stat-item:nth-child(n+3) {
        border-bottom: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .quick-form {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 140px 1.5rem 80px;
    }

    .section-inner {
        padding: 0 1.5rem;
    }

    .about-grid {
        padding: 80px 1.5rem;
        gap: 3rem;
    }
}

/* ══════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--gold);
    box-shadow: var(--shadow);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    font-weight: 600;
    max-width: 340px;
}

[dir="ltr"] .toast {
    right: auto;
    left: 2rem;
    border-right: none;
    border-left: 4px solid var(--gold);
    transform: translateX(-120%);
}

.toast.show {
    transform: translateX(0);
}

/* ══════════════════════════════════════════════
   ARTICLE PAGE
══════════════════════════════════════════════ */
.article-hero {
    background: var(--navy);
    padding: 160px 2.5rem 100px;
    text-align: center;
    position: relative;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 168, 76, 0.1), transparent);
}

.article-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.article-meta .blog-tag {
    margin-bottom: 0;
}

.article-hero h1 {
    font-size: clamp(28px, 4vw, 52px);
    color: var(--white);
    font-weight: 400;
}

.article-body {
    max-width: 780px;
    margin: 80px auto;
    padding: 0 2.5rem;
}

.article-body h2 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.article-body p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.article-body ul {
    margin: 1rem 0 1.5rem 2rem;
}

.article-body ul li {
    color: var(--text-muted);
    line-height: 2;
    font-size: 16px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}



.article-share span {
    font-weight: 700;
    color: var(--navy);
}

/* ── SPLASH SCREEN (فخم مع غبار ومسح) ── */
#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a111c;
    /* لون غامق جدًا يشبه الليل */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    pointer-events: auto;
}

#splashScreen.hide {
    opacity: 0;
    pointer-events: none;
}

/* Canvas للغبار */
#dustCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* الشعار في المنتصف */
.splash-logo {
    position: relative;
    z-index: 10;
    text-align: center;
    transform: scale(0.9);
    animation: gentlePulse 2s ease-in-out infinite, floatLogo 3s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.splash-logo img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.6));
    margin-bottom: 1rem;
}

.splash-text {
    margin-top: 1rem;
}

.splash-ar {
    display: block;
    font-family: 'Tajawal', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.splash-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--gold-light);
    text-transform: uppercase;
    opacity: 0.8;
}

/* طبقة المسح */
.wipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, rgba(10, 17, 28, 0.95) 100%);
    z-index: 20;
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.wipe-overlay.active {
    transform: translateX(0%);
}

/* إخفاء التمرير أثناء السبلاش */
body.splash-active {
    overflow: hidden;
}

/* ── SOCIAL ICONS STYLING (Footer & Sidebar) ── */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
}

/* Fixed Buttons (WhatsApp + Call) - تحسين الجوال */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    gap: 15px;
    flex-direction: row;
}

[dir="ltr"] .fixed-buttons {
    left: auto;
    right: 30px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.float-btn-wa {
    background: #25D366;
    animation: pulse-wa 2s infinite;
}

.float-btn-call {
    background: #B77BE2;
    animation: pulse-call 2s infinite 0.5s;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-4px);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.2);
    }
}

@keyframes pulse-call {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(0, 119, 182, 0.7), 0 0 0 8px rgba(0, 119, 182, 0.2);
    }
}

@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }

    .float-btn i {
        font-size: 24px;
    }
}

/* تحسين أيقونات جهات الاتصال في صفحة التواصل */
.contact-method .method-icon {
    background: var(--navy);
    color: var(--gold);
}

/* ============================================
   FOOTER SOCIAL ICONS - فخامة وتأثيرات راقية
   ============================================ */

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 25px;
    justify-content: flex-start;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 22px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

/* تأثير خلفية ذهبية عند المرور */
.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0;
}

.footer-social a i {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35);
}

.footer-social a:hover::before {
    transform: scale(1);
}

.footer-social a:hover i {
    color: var(--navy);
}

/* تخصيص أيقونة X (تويتر) لتطابق الباقي */
.footer-social a .fa-x-twitter,
.footer-social a .fa-twitter {
    font-size: 20px;
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* إضافة توهج خفيف حول الأيقونات بشكل اختياري */
.footer-social a {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* تعزيز ارتباط اللوجو بالقيم */
.nav-cta,
.btn-primary,
.btn-book,
.btn-submit {
    background: var(--gold);
    transition: all 0.3s ease;
}

.nav-cta:hover,
.btn-primary:hover,
.btn-book:hover,
.btn-submit:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* لمسة "الأمانة" : حدود زمردية خفيفة عند التركيز */
input:focus,
select:focus,
textarea:focus {
    border-color: var(--integrity);
    box-shadow: 0 0 0 3px rgba(46, 125, 100, 0.15);
}

/* شارة "الإنجاز" : أيقونة ذهبية في splash screen وغيرها */
.hero-card-badge,
.splash-ar {
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* تخصيص الأزرار والعناصر التفاعلية بالبنفسجي */
.btn-primary,
.nav-cta,
.btn-book,
.btn-submit,
.hero-card-accent {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover,
.nav-cta:hover,
.btn-book:hover,
.btn-submit:hover {
    background: var(--gold-light);
    color: var(--text);
    box-shadow: 0 4px 15px rgba(183, 123, 226, 0.5);
}

/* تغيير لون شريط التمرير */
::-webkit-scrollbar-thumb {
    background: var(--gold);
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

/* لمسات إضافية للأقسام المميزة */
.value-card h3,
.service-card-link,
.blog-read,
.testimonial-stars,
.stat-num {
    color: var(--gold);
}

.value-card:hover {
    background: var(--navy-light);
}

.section-label,
.page-tag {
    color: var(--gold);
}

.hero-label::before,
.gold-divider {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}