/* --- Fonts --- */
@font-face {
    font-family: 'ara_hamah';
    src: url('../assets/fonts/ara_hamah.woff2') format('woff2'),
        url('../assets/fonts/ara_hamah.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ara_hamah';
    src: url('../assets/fonts/ara_hamah_bold.woff2') format('woff2'),
        url('../assets/fonts/ara_hamah_bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'brando_arabic';
    src: url('../assets/fonts/brando_arabic.woff2') format('woff2'),
        url('../assets/fonts/brando_arabic.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'brando_arabic';
    src: url('../assets/fonts/brando_arabic.woff2') format('woff2'),
        url('../assets/fonts/brando_arabic.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'brando_arabic';
    src: url('../assets/fonts/brando_arabic.woff2') format('woff2'),
        url('../assets/fonts/brando_arabic.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'brando_arabic';
    src: url('../assets/fonts/brando_arabic.woff2') format('woff2'),
        url('../assets/fonts/brando_arabic.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Handicrafts';
    src: url('../fonts/OTF/TheYearofHandicrafts-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Handicrafts';
    src: url('../fonts/OTF/TheYearofHandicrafts-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Handicrafts';
    src: url('../fonts/OTF/TheYearofHandicrafts-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Handicrafts';
    src: url('../fonts/OTF/TheYearofHandicrafts-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --- Custom Properties --- */
:root {
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F5F2EE;
    --light-gray: #ECEAE6;
    --mid-gray: #B8B4AE;
    --dark-gray: #6B6560;
    --charcoal: #2D2926;
    --black: #1A1714;

    --lavender: #7B2D8E;
    --lavender-soft: #9B59B6;
    --lavender-pale: #F3E8F9;
    --lavender-mist: #F9F4FC;

    --gold-warm: #C9963B;
    --terra: #D4764E;

    --font-display: 'Handicrafts', 'ara_hamah', 'Traditional Arabic', serif;
    --font-body: 'Handicrafts', 'ara_hamah', 'Traditional Arabic', sans-serif;

    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.12);
    --shadow-lavender: 0 8px 30px rgba(123, 45, 142, 0.12);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --header-h: 72px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

input,
button,
select,
textarea {
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.85;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.ltr {
    direction: ltr;
}

a {
    color: var(--lavender);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--lavender-soft);
}

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

::selection {
    background: var(--lavender-pale);
    color: var(--lavender);
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

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

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

p {
    font-size: 1.05rem;
    color: var(--dark-gray);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0 3rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    box-shadow: var(--shadow-soft);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s var(--ease);
}

.nav-brand:hover .nav-logo-img {
    transform: scale(1.04);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--dark-gray);
    border-radius: 8px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-menu a:hover {
    color: var(--lavender);
    background: var(--lavender-mist);
}

.nav-menu a.active {
    color: var(--lavender);
    font-weight: 600;
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lang {
    padding: 0.45rem 1.2rem;
    background: transparent;
    border: 1.5px solid var(--light-gray);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-lang:hover {
    border-color: var(--lavender);
    color: var(--lavender);
    background: var(--lavender-mist);
}

.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--lavender);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--lavender-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lavender);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--lavender);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid var(--lavender);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--lavender);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    background: var(--white);
}

.hero-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: var(--lavender-pale);
    color: var(--lavender);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s var(--ease-out) both;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--lavender);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.08;
    color: var(--black);
    margin-bottom: 1rem;
    animation: slideUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title .accent {
    color: var(--lavender);
}

.hero-desc {
    font-size: 1.12rem;
    color: var(--dark-gray);
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 2rem;
    animation: slideUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s var(--ease-out) 0.3s both;
}

.hero-visual {
    position: relative;
    animation: slideUp 1s var(--ease-out) 0.2s both;
}

.hero-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
}

.hero-img-float {
    position: absolute;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--white);
    bottom: -30px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

body.ltr .hero-img-float {
    right: auto;
    left: -20px;
}

.hero-decor {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--lavender-pale);
    border-radius: var(--radius-xl);
    z-index: -1;
}

body.ltr .hero-decor {
    left: auto;
    right: -30px;
}

@keyframes float {

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Divider Pattern --- */
.qatt-divider {
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--lavender-pale) 15%,
            var(--lavender) 35%,
            var(--gold-warm) 50%,
            var(--terra) 65%,
            var(--lavender-pale) 85%,
            transparent 100%);
    border: none;
    margin: 0;
}

/* --- Section Structure --- */
.section {
    padding: 5rem 3rem;
}

.section--cream {
    background: var(--cream);
}

.section--lavender-mist {
    background: var(--lavender-mist);
}

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

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lavender);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.85;
}

/* --- Feature Trio --- */
.trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.trio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.trio-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.trio-card:hover .trio-card-img {
    transform: scale(1.04);
}

.trio-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.trio-card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--lavender);
    box-shadow: var(--shadow-soft);
}

body.ltr .trio-card-number {
    right: auto;
    left: 1rem;
}

.trio-card-body {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trio-card-body h3 {
    font-family: var(--font-display);
    margin-bottom: 0.4rem;
}

.trio-card-body p {
    font-size: 0.92rem;
    line-height: 1.75;
    flex: 1;
}

.trio-card-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--lavender);
    font-size: 0.88rem;
    font-weight: 600;
}

.trio-card-footer .arrow-icon {
    transition: transform 0.3s var(--ease);
}

.trio-card:hover .trio-card-footer .arrow-icon {
    transform: translateX(-4px);
}

body.ltr .trio-card:hover .trio-card-footer .arrow-icon {
    transform: translateX(4px);
}

/* --- About (Split) --- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-visual {
    position: relative;
}

.split-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
}

.split-accent-bar {
    position: absolute;
    bottom: -16px;
    right: 2rem;
    height: 4px;
    width: 100px;
    background: var(--lavender);
    border-radius: 2px;
}

body.ltr .split-accent-bar {
    right: auto;
    left: 2rem;
}

.split-content h2 {
    margin-bottom: 1.2rem;
}

.split-content p {
    margin-bottom: 0.8rem;
    line-height: 1.9;
}

.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lavender);
    display: block;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.82rem;
    color: var(--mid-gray);
    margin-top: 0.3rem;
}

/* --- Values --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-tile {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.35s var(--ease);
}

.value-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--lavender-pale);
}

.value-tile-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    background: var(--lavender-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.value-tile h3 {
    margin-bottom: 0.4rem;
}

.value-tile p {
    font-size: 0.9rem;
    line-height: 1.75;
}

/* --- CTA Banner --- */
.cta-banner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--lavender);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-banner h2 {
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 0.8rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--white);
    color: var(--lavender);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--lavender);
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Page Hero (Sub-pages) --- */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    overflow: hidden;
}

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

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.7) 30%,
            rgba(255, 255, 255, 0.2) 60%,
            rgba(0, 0, 0, 0.1) 100%);
}

.page-hero-text {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.page-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.page-hero-text p {
    font-size: 1.05rem;
    max-width: 600px;
    color: var(--dark-gray);
}

/* --- Map Page --- */
.map-section {
    max-width: 1200px;
    margin: 0 auto;
}

.map-frame {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.poi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.poi-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 1.4rem;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.poi-card:hover {
    border-color: var(--lavender);
    box-shadow: var(--shadow-lavender);
    transform: translateY(-2px);
}

.poi-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--lavender-pale);
    color: var(--lavender);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.poi-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.poi-card p {
    font-size: 0.82rem;
    color: var(--mid-gray);
    line-height: 1.6;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    animation: modalIn 0.4s var(--ease-out);
}

@keyframes modalIn {
    from {
        transform: scale(0.92) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 38px;
    height: 38px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease);
    z-index: 5;
    color: var(--charcoal);
}

body.ltr .modal-close {
    left: auto;
    right: 1rem;
}

.modal-close:hover {
    background: var(--lavender);
    color: #fff;
}

.modal-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-content {
    padding: 2rem;
    position: relative;
}

.modal-content h2 {
    font-family: var(--font-display);
    margin-bottom: 0.8rem;
}

.modal-content p {
    line-height: 1.9;
    margin-bottom: 1rem;
}

.modal-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 1rem;
}

.modal-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Talents --- */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 0.5rem 1.3rem;
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.filter-chip:hover {
    border-color: var(--lavender);
    color: var(--lavender);
}

.filter-chip.active {
    background: var(--lavender);
    border-color: var(--lavender);
    color: #fff;
}

.talents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.talent-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.talent-card-visual {
    overflow: hidden;
    position: relative;
    height: 220px;
}

.talent-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.talent-card:hover .talent-card-visual img {
    transform: scale(1.04);
}

.talent-tag {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    padding: 0.25rem 0.75rem;
    background: var(--lavender);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 50px;
}

body.ltr .talent-tag {
    right: auto;
    left: 0.8rem;
}

.talent-card-info {
    padding: 1.4rem;
}

.talent-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.talent-field {
    font-size: 0.82rem;
    color: var(--lavender);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.talent-card-info p:last-child {
    font-size: 0.88rem;
    line-height: 1.7;
}

/* --- Guide Page --- */
.guide-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.guide-panel {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.guide-panel-head {
    padding: 1.8rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guide-panel-head-icon {
    width: 44px;
    height: 44px;
    background: var(--lavender-pale);
    color: var(--lavender);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.guide-panel-head h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.guide-panel-head p {
    font-size: 0.9rem;
    color: var(--mid-gray);
}

.guide-panel-body {
    padding: 2rem;
}

/* Landmark tiles */
.landmarks-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.landmark-tile {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 240px;
    cursor: pointer;
}

.landmark-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.landmark-tile:hover img {
    transform: scale(1.06);
}

.landmark-tile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
}

.landmark-tile-info h3 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.landmark-tile-info p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Hotel cards */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.hotel-card {
    padding: 1.5rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    background: var(--off-white);
}

.hotel-card:hover {
    border-color: var(--lavender);
    box-shadow: var(--shadow-lavender);
}

.hotel-top {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hotel-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--lavender-pale);
    color: var(--lavender);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hotel-top h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.hotel-stars {
    font-size: 0.8rem;
    color: var(--gold-warm);
}

.hotel-details {
    list-style: none;
}

.hotel-details li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--dark-gray);
}

.hotel-details li .ico {
    font-size: 0.85rem;
    min-width: 18px;
    text-align: center;
}

/* Guide person */
.guides-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.guide-person {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    background: var(--off-white);
    transition: all 0.3s var(--ease);
}

.guide-person:hover {
    border-color: var(--lavender);
    box-shadow: var(--shadow-lavender);
}

.guide-avatar {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: var(--lavender);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.guide-meta h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.guide-meta p {
    font-size: 0.8rem;
    color: var(--mid-gray);
}

/* Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tip-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
}

.tip-card-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--lavender-pale);
    color: var(--lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.tip-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

body.ltr .reveal-right {
    transform: translateX(-30px);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger>*:nth-child(2) {
    transition-delay: 0.08s;
}

.stagger>*:nth-child(3) {
    transition-delay: 0.16s;
}

.stagger>*:nth-child(4) {
    transition-delay: 0.24s;
}

.stagger>*:nth-child(5) {
    transition-delay: 0.32s;
}

.stagger>*:nth-child(6) {
    transition-delay: 0.4s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-img-float {
        display: none;
    }

    .hero-decor {
        display: none;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .navbar {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        border-bottom: 1px solid var(--light-gray);
        box-shadow: var(--shadow-medium);
    }

    .nav-menu.open a {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }

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

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

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

    .landmarks-mosaic {
        grid-template-columns: 1fr;
    }

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

    .guides-list {
        grid-template-columns: 1fr;
    }

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

    .stats-row {
        flex-wrap: wrap;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .map-frame {
        height: 350px;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .page-hero-text {
        padding: 0 1.5rem;
    }

    .hero-grid {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        padding: 2rem 1rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .filter-bar {
        gap: 0.35rem;
    }

    .filter-chip {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
}