/* ============================================================
   Hac & Umre Organizasyon Sitesi — ana stil
   ============================================================ */

/* ─── Google Fonts import artık header'dan geliyor ─── */

/* ─── Design Tokens ──────────────────────────────────── */
:root {
    --gold:         #C9A84C;
    --gold-light:   #E8C66A;
    --gold-dark:    #9A7530;
    --green:        #1B4332;
    --green-light:  #2D6A4F;
    --green-dark:   #0D2B1F;
    --black:        #080808;
    --surface:      #111111;
    --surface2:     #181818;
    --surface3:     #202020;
    --border:       rgba(201, 168, 76, 0.15);
    --text:         #F0EDE6;
    --text-muted:   #9B9387;
    --text-dim:     #6B6560;
    --white:        #FFFFFF;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow:       0 4px 24px rgba(0,0,0,.6);
    --shadow-gold:  0 0 40px rgba(201,168,76,.2);
    --transition:   all 0.3s cubic-bezier(.4,0,.2,1);
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Inter', system-ui, sans-serif;
    --font-arabic:  'Amiri', 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body.rtl {
    font-family: var(--font-arabic);
    direction: rtl;
    text-align: right;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
    font-family: inherit;
    color-scheme: dark;
}

/* ─── Utility ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.hidden { display: none !important; }

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 48px;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important;
    box-shadow: 0 4px 20px rgba(201,168,76,.35);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 32px rgba(201,168,76,.55);
    transform: translateY(-2px);
    color: var(--black);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm { padding: 9px 22px; font-size: .87rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ─── Package Badges ─────────────────────────────────── */
.pkg-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px; /* Daha modern keskin köşeler */
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.badge-hac     { background: #E05050; color: #fff; box-shadow: 0 4px 12px rgba(224,80,80,.25); }
.badge-umre    { background: var(--gold); color: #000; box-shadow: 0 4px 12px rgba(201,168,76,.25); }
.badge-ramazan { background: #50A050; color: #fff; box-shadow: 0 4px 12px rgba(80,160,80,.25); }
.badge-vip     { background: #A060E0; color: #fff; box-shadow: 0 4px 12px rgba(160,96,224,.25); }
.badge-kultur  { background: #3C98B9; color: #fff; box-shadow: 0 4px 12px rgba(60,152,185,.25); }

/* ─── Glass Card ─────────────────────────────────────── */
.glass-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}
.glass-card:hover {
    border-color: rgba(201,168,76,.4);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

/* ─── Navbar ─────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}
.navbar.menu-open { z-index: 2000; }
.navbar.scrolled {
    background: rgba(8,8,8,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 4px 32px rgba(0,0,0,.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: var(--header-logo-h, 45px);
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}
.navbar.scrolled .logo-img {
    height: calc(var(--header-logo-h, 45px) * 0.85);
}
.logo-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
    filter: drop-shadow(0 0 6px rgba(201,168,76,.5));
}
.navbar.scrolled .logo-icon {
    width: 24px;
    height: 24px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    position: fixed;
    top: 0;
    right: max(0px, (100% - 1200px) / 2);
    height: 85px;
    z-index: 1005;
    pointer-events: none;
    transition: var(--transition);
}
.nav-links li { pointer-events: auto; }
.nav-links a {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Language dropdown */
.nav-lang { position: relative; }
.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}
.lang-btn:hover { color: var(--gold); }
.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 140px;
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 100;
}
.nav-lang.active .lang-menu { display: block; }
.lang-menu a {
    display: block;
    padding: 10px 16px;
    font-size: .88rem;
    color: var(--text-muted);
}
.lang-menu a:hover, .lang-menu a.active { background: var(--surface3); color: var(--gold); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── Hero Section ───────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero .container {
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(27,67,50,.5) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,.12) 0%, transparent 50%),
        linear-gradient(160deg, #0D0D0D 0%, #0A1A12 50%, #080808 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        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='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .6;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-arabic {
    font-family: var(--font-arabic);
    font-size: 1.4rem;
    color: var(--gold);
    opacity: .7;
    margin-bottom: 20px;
    display: block;
    line-height: 1.6;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    min-height: 1.15em;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity .4s ease;
}
.hero-title.text-fade { opacity: 0; }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
    min-height: 2.4em;
    transition: opacity .4s ease;
}
.hero-subtitle.text-fade { opacity: 0; }

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-ornament {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: min(500px, 45vw);
    height: min(500px, 45vw);
    opacity: .06;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: .8rem;
    letter-spacing: .1em;
    z-index: 1;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 24px; height: 24px; }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Hero Slider ────────────────────────────────────── */
.hero-slider {
    display: block;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero-slider .container { position: relative; z-index: 2; padding-top: 0; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    position: relative;
    min-height: 100vh;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 60%,
        rgba(0,0,0,.2) 100%
    );
    z-index: 0;
}
.hero-slide .container { z-index: 1; width: 100%; }
.hero-slide .hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-slide .hero-subtitle { color: rgba(255,255,255,.8); }

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.25);
    color: white;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.slider-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

@keyframes sliderFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-slide.active .hero-content { animation: sliderFadeIn .8s ease forwards; }



/* ─── Image Slider Band ───────────────────────────────── */
.img-slider-band {
    position: relative;
    width: 100%;
    height: clamp(320px, 55vw, 620px);
    overflow: hidden;
    background: var(--black);
}
.img-slider-track { position: relative; width: 100%; height: 100%; }

.img-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
.img-slide.active {
    opacity: 1;
    z-index: 1;
}
.img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 56px 48px 40px;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
    z-index: 2;
}
.img-slide-caption h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}
.img-slide-caption p {
    color: rgba(255,255,255,.75);
    font-size: clamp(.85rem, 1.5vw, 1rem);
    max-width: 560px;
}

/* arrows & dots – reuse .slider-arrow / .slider-dot */
.img-slider-band .slider-dots { bottom: 16px; }
.img-slider-band .slider-prev { left: 16px; }
.img-slider-band .slider-next { right: 16px; }

/* ─── Hero Slider BG (arka plan katmanı) ─────────────── */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}
.hero-slide-bg.active {
    opacity: 1;
}
/* hero-bg overlay hero-slide-bg'nin üstünde durmalı */
.hero-bg {
    z-index: 1;
    /* mevcut gradient biraz koyulaştırıldı ki görsel altında okunabilirlik artsın */
    background:
        radial-gradient(ellipse at 20% 50%, rgba(27,67,50,.65) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,.12) 0%, transparent 50%),
        linear-gradient(160deg, rgba(13,13,13,.85) 0%, rgba(10,26,18,.8) 50%, rgba(8,8,8,.85) 100%);
}
.hero-ornament { z-index: 2; }
.hero-content  { position: relative; z-index: 3; }
.hero-scroll   { z-index: 3; }
.slider-arrow  { z-index: 4; }
.slider-dots   { z-index: 4; }


.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

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

.stat-item {
    text-align: center;
    padding: 16px 24px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ─── Package Cards ──────────────────────────────────── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.pkg-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pkg-card:hover {
    border-color: rgba(201,168,76,.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(201,168,76,.15);
}

.pkg-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.pkg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.07); }

.pkg-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-dark), var(--surface2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.pkg-badge-wrap {
    position: absolute;
    top: 14px;
    left: 14px;
}

.pkg-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.pkg-card-desc {
    font-size: .9rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.6;
}

.pkg-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 16px;
    font-size: .83rem;
    color: var(--text-muted);
}
.pkg-meta-item { 
    display: flex; 
    align-items: center; 
    gap: 5px; 
    white-space: nowrap; 
}
.pkg-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.pkg-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.pkg-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}
.pkg-price-label {
    font-size: .73rem;
    color: var(--text-dim);
    font-family: var(--font-sans);
    font-weight: 400;
}

/* ─── Filter Tabs ────────────────────────────────────── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}
.filter-tab {
    padding: 9px 24px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
}
.filter-tab.active, .filter-tab:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ─── Services ───────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-card:hover {
    border-color: rgba(201,168,76,.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(27,67,50,.2));
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.service-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Testimonials ───────────────────────────────────── */
.testimonials { background: var(--surface); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--surface2);
    border: 1px solid var(--border);
}

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

.testimonial-text {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .95rem; }
.testimonial-city { font-size: .8rem; color: var(--text-dim); }

/* ─── CTA Band ───────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-dark) 100%);
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
    text-align: center;
    padding: 80px 0;
}

.cta-band h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 14px;
}
.cta-band p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
}
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Gallery ────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: zoom-in;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { color: var(--white); font-size: .9rem; font-weight: 600; }

/* Gallery placeholder */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface2), var(--surface3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }

/* ─── Package Detail ─────────────────────────────────── */
.pkg-detail-hero {
    padding-top: 100px;
    min-height: 420px;
    background: linear-gradient(to bottom, var(--green-dark), var(--black));
    display: flex;
    align-items: center;
}

.pkg-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.pkg-detail-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}
.carousel-main { height: 400px; }
.carousel-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
}
.carousel-thumb {
    width: 80px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.carousel-thumb.active { border-color: var(--gold); }
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pkg-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}
.pkg-tab {
    padding: 12px 24px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: var(--transition);
}
.pkg-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.pkg-tab-content { display: none; }
.pkg-tab-content.active { display: block; }

.pkg-tab-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pkg-tab-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .93rem;
    color: var(--text-muted);
}
.pkg-tab-content li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.pkg-tab-content.excluded li::before { content: '✕'; color: #E07070; }

.pkg-sidebar-card {
    position: sticky;
    top: 100px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.pkg-sidebar-price {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}
.pkg-sidebar-price-label {
    font-size: .82rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.pkg-sidebar-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.pkg-sidebar-row {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
}
.pkg-sidebar-row span:first-child { color: var(--text-dim); }
.pkg-sidebar-row span:last-child { color: var(--white); font-weight: 500; }

/* ─── Application Form ───────────────────────────────── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
}
.form-label .req { color: var(--gold); }

.form-control {
    padding: 12px 16px;
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-size: .93rem;
    transition: var(--transition);
    width: 100%;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201,168,76,.05);
    box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-control::placeholder { color: var(--text-dim); }

select.form-control { cursor: pointer; }
select.form-control option { background-color: var(--surface2); color: var(--text); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Radio payment */
.payment-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.payment-opt {
    flex: 1;
    min-width: 140px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-muted);
}
.payment-opt input { display: none; }
.payment-opt.selected, .payment-opt:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,.06);
    color: var(--gold);
}
.payment-opt-icon { font-size: 1.4rem; }

/* Alert / Flash messages */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .93rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert-success {
    background: rgba(100,200,100,.1);
    border: 1px solid rgba(100,200,100,.3);
    color: #7DC87D;
}
.alert-error {
    background: rgba(220,80,80,.1);
    border: 1px solid rgba(220,80,80,.3);
    color: #E07070;
}
.alert-warning {
    background: rgba(255,180,50,.1);
    border: 1px solid rgba(255,180,50,.3);
    color: #FFB432;
}

/* ─── Contact ────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-card:hover { border-color: rgba(201,168,76,.4); transform: translateX(4px); }
.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,168,76,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-title { font-size: .8rem; color: var(--text-dim); margin-bottom: 3px; }
.contact-card-value { font-weight: 500; font-size: .95rem; }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 260px;
    background: var(--surface2);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: invert(.9) hue-rotate(180deg); }

.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

/* ─── Page Hero ──────────────────────────────────────── */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(170deg, var(--green-dark) 0%, var(--black) 60%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: .85rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); }

/* ─── About Page ─────────────────────────────────────── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-dark), var(--surface2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    aspect-ratio: 4/3;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.vm-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.vm-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.vm-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.8; }

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.footer-top { padding: 64px 0 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo-img {
    height: var(--footer-logo-h, 50px);
    width: auto;
    object-fit: contain;
}
.footer-logo svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.footer-col h4 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: .9rem;
    color: var(--text-muted);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-muted);
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: .85rem; color: var(--text-dim); }

/* ─── WhatsApp Float ─────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 800;
    transition: var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { background: #20BA5A; transform: scale(1.1); }

/* ─── Scroll Animations ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Loader / Skeleton ──────────────────────────────── */
.skeleton {
    background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: skeletonWave 1.5s infinite;
    border-radius: 8px;
}
@keyframes skeletonWave { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .pkg-detail-layout { grid-template-columns: 1fr; }
    .pkg-sidebar-card { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav-links {
        display: flex;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--surface);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: center;
        padding: 80px 32px 32px;
        gap: 16px;
        z-index: 3000;
        pointer-events: auto;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
    }
    .slider-arrow {
        opacity: 0.35;
        scale: 0.8;
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.1);
    }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
    .nav-links a { 
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%; 
        padding: 14px 0; 
        text-align: center; 
        border-bottom: 1px solid rgba(255,255,255,0.05); 
    }
    .nav-links li { 
        width: 100%; 
        display: flex;
        justify-content: center;
    }
    .nav-links li:last-child a { border-bottom: none; }
    .lang-dropdown, .lang-btn { width: 100%; justify-content: center; }
    .nav-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
    }
    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
    }
    .hamburger { display: flex; z-index: 3100; position: fixed; right: 20px; top: 25px; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid .stat-item:nth-child(2)::before { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-ornament { display: none; }
    .vision-mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; }
}

/* ─── RTL overrides ──────────────────────────────────── */
body.rtl .nav-logo { flex-direction: row-reverse; }
body.rtl .pkg-badge-wrap { left: auto; right: 14px; }
body.rtl .hero-ornament { right: auto; left: -80px; }
body.rtl .footer-brand p { margin-right: 0; }
body.rtl .contact-card:hover { transform: translateX(-4px); }
body.rtl .whatsapp-float { right: auto; left: 32px; }

/* ─── Full Map (Contact Page) ────────────────────────── */
.full-map {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.full-map iframe {
    width: 100% !important;
    height: 480px !important;
    display: block;
    border: 0;
    filter: grayscale(0.1) contrast(1.05);
    transition: var(--transition);
}
.full-map iframe:hover {
    filter: none;
}
