* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #f5f5f5;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.5); }

a { color: #d4af37; text-decoration: none; }
a:hover { color: #e8c54a; }

/* Navbar — aligned to The Garant v13 design (quiet luxury, cream/champagne/gold) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(11, 10, 8, 0.92);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid rgba(244, 237, 225, 0.10);
    transition: transform 0.35s ease, background 0.3s ease, padding 0.35s ease;
}
.navbar.nav-hidden { transform: translateY(-100%); }
.navbar.is-scrolled { padding: 0.6rem 2rem; }

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar-logo img {
    height: 56px;
    width: auto;
    transition: height 0.35s ease;
}
.navbar.is-scrolled .navbar-logo img { height: 44px; }

.navbar-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
    align-items: center;
}
.navbar-links li { list-style: none; }

.navbar-links a {
    color: #F4EDE1;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

/* Underline animation on hover/active */
.navbar-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 1px;
    background: #C9A24B;
    transition: left 0.35s ease, right 0.35s ease, background 0.35s ease;
}
.navbar-links a:hover { color: #E8CC82; }
.navbar-links a:hover::after { left: 0; right: 0; }
.navbar-links a.active {
    color: #fff;
}
.navbar-links a.active::after { left: 0; right: 0; background: #C9A24B; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #C9A24B;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* Mobile-only right cluster (lang switcher + hamburger) — hidden on desktop */
.navbar-right-mobile { display: none; }
.lang-switcher-mobile { display: none; }

/* Lang switcher (desktop nav) — global so every page (incl. home) gets the same look */
.lang-switcher { position: relative; }
.lang-switcher-btn {
    background: rgba(201,162,75,0.10);
    border: 1px solid rgba(201,162,75,0.25);
    color: #C9A24B;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    line-height: 1;
}
.lang-switcher-btn:hover { background: rgba(201,162,75,0.18); color: #E8CC82; }
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #111010;
    border: 1px solid rgba(201,162,75,0.20);
    border-radius: 12px;
    padding: 0.4rem;
    min-width: 170px;
    z-index: 200;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lang-dropdown.open { display: block; }
.lang-dropdown div {
    padding: 0.5rem 0.8rem;
    color: rgba(244,237,225,0.8);
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.lang-dropdown div:hover { background: rgba(201,162,75,0.12); color: #E8CC82; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06) 0%, #000 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    color: #b0b0b0;
    margin-bottom: 3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37, #c4a035);
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    color: #000000;
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-secondary:hover {
    color: #d4af37;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0.75rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #0f0f0f 100%);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #d4af37;
}

.feature-card p {
    color: #999;
    line-height: 1.7;
    font-weight: 300;
}

/* How it Works */
.how-it-works {
    padding: 6rem 2rem;
    background: transparent;
}

.steps {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(212,175,55,0.03);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #e8c54a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
}

.step-content p {
    color: #888;
    line-height: 1.7;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-section .section-title {
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Page Header (for internal pages) */
.page-header {
    padding: 8rem 2rem 3rem;
    text-align: center;
    background: #000000;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.page-header p {
    color: #888;
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section (for internal pages) */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.content-section ul, .content-section ol {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    font-weight: 300;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section strong {
    color: #f5f5f5;
    font-weight: 500;
}

/* Destination Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.destination-card {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.destination-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.destination-img {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.destination-info .destination-country {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.destination-info p {
    color: #999;
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}

.destination-info .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #d4af37;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.destination-info .read-more:hover {
    color: #e8c54a;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.blog-card {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.blog-card .blog-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: #d4af37;
}

.blog-card .blog-date {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: #999;
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}

.blog-card .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #d4af37;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Article Page */
.article-header {
    padding: 8rem 2rem 2rem;
    text-align: center;
    background: #000000;
}

.article-header .blog-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-header .article-meta {
    color: #666;
    font-size: 0.9rem;
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.article-content p {
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 300;
    font-size: 1.05rem;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content ul, .article-content ol {
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    font-weight: 300;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: #f5f5f5;
    font-weight: 500;
}

.article-content blockquote {
    border-left: 3px solid #d4af37;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: #0a0a0a;
    border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 0;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-decoration: none;
}

.back-to-blog:hover {
    color: #e8c54a;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1rem;
    color: #f5f5f5;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #888;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555;
}

/* Search Page */
.search-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.search-widget-wrapper {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
    min-height: 500px;
}

.search-widget-wrapper iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
    min-height: 500px;
}

.search-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.search-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.search-info-card {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.search-info-card h3 {
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.search-info-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Hero Search Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #d4af37;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.cta-button-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    color: #d4af37;
}

.cta-button-outline svg {
    width: 20px;
    height: 20px;
}


/* FAQ Section */
.faq-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.faq-item h3 {
    color: #f5f5f5;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.faq-item p {
    color: #888;
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}


.upsell-trial {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(212,175,55,0.1);
    background: linear-gradient(180deg, #000 0%, #050505 100%);
    color: #555;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.footer-brand img {
    height: 28px;
    width: auto;
}

.footer-column h4 {
    color: #f5f5f5;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-social {
    max-width: 1100px;
    margin: 1.6rem auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(244,237,225,0.06);
    display: flex;
    justify-content: center;
    gap: 14px;
}
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(244,237,225,0.12);
    border-radius: 50%;
    color: #C9A24B;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.footer-social a:hover {
    border-color: #C9A24B;
    color: #E8CC82;
    transform: translateY(-1px);
}

.footer-bottom {
    max-width: 1100px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: none;
    text-align: center;
    color: #444;
    font-size: 0.85rem;
}

/* Mobile-close button inside the drawer (hidden on desktop) */
.navbar-links .mobile-close { display: none; }
@media (max-width: 768px) {
    .navbar-links .mobile-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.25rem;
        list-style: none;
        margin: 0;
    }
    .navbar-links .mobile-close .menu-close-btn {
        width: 44px; height: 44px;
        border: 1px solid rgba(244,237,225,.15);
        border-radius: 50%;
        background: transparent;
        color: #F4EDE1;
        font-size: 1.6rem;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color .2s, color .2s;
        padding: 0;
    }
    .navbar-links .mobile-close .menu-close-btn:hover {
        border-color: #C9A24B;
        color: #E8CC82;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Mobile drawer — full-screen v13 design */
    .navbar-links {
        display: flex;
        position: fixed;
        inset: 0;
        top: 0; left: 0; right: 0; bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.4rem;
        background: rgba(11, 10, 8, 0.96);
        -webkit-backdrop-filter: blur(22px);
        backdrop-filter: blur(22px);
        padding: 4rem 2rem 3rem;
        z-index: 100;
        opacity: 0; pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.35s ease, transform 0.35s ease;
        border: none;
    }
    .navbar-links.open {
        opacity: 1; pointer-events: auto; transform: none;
    }
    .navbar-links li { list-style: none; }
    .navbar-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.9rem;
        font-weight: 400;
        letter-spacing: -0.01em;
        color: #F4EDE1;
        padding: 0.25rem 0;
        transition: color 0.25s ease;
    }
    .navbar-links a:hover,
    .navbar-links a.active {
        color: #E8CC82;
        font-style: italic;
    }
    .navbar-links .lang-switcher { margin-top: 0.8rem; }
    .navbar-links .lang-switcher-btn {
        padding: 0.55rem 1rem;
        border-radius: 999px;
        border: 1px solid rgba(244,237,225,.15);
        background: transparent;
        color: #F4EDE1;
        font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    }

    /* Mobile nav layout: logo left, hamburger+lang right (flush to edge) */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 0.8rem 1rem;
    }
    .navbar-right-mobile {
        display: flex !important;
        align-items: center;
        gap: 8px;
        order: 2;
    }
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px; height: 40px;
        border: 1px solid rgba(244,237,225,.12);
        border-radius: 50%;
        color: #C9A24B;
        font-size: 1.1rem;
        background: transparent;
        transition: border-color .25s, color .25s;
        z-index: 110;
        position: relative;
    }
    .menu-toggle:hover { border-color: #C9A24B; color: #E8CC82; }
    /* When drawer open, morph hamburger into close */
    body.menu-open { overflow: hidden; }
    body.menu-open .menu-toggle { color: #E8CC82; }

    .logo-img { max-width: 280px; }
    .tagline { font-size: 1rem; }
    .hero-description { font-size: 1rem; }
    .hero { padding-top: 5rem; }
    .section-title { font-size: 2rem; }
    .page-header h1 { font-size: 2rem; }
    .article-header h1 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .step { gap: 1.25rem; }
    .step-number { font-size: 2rem; min-width: 40px; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* =========================
   EVENTS
   ========================= */
.events-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.event-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.event-month {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-type-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.event-card h3 a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-card h3 a:hover {
    color: #d4af37;
}

.event-location {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.event-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.events-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.events-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.events-cta p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    .events-cta h2 {
        font-size: 1.5rem;
    }
}

/* ============================================================
   RTL — Arabic
   ============================================================ */
html[dir="rtl"] body,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] button,
html[dir="rtl"] select {
    font-family: 'Noto Naskh Arabic', 'Amiri', 'Inter', sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .page-header h1,
html[dir="rtl"] .page-header p {
    font-family: 'Amiri', 'Noto Naskh Arabic', 'Playfair Display', serif;
    letter-spacing: normal;
}
html[dir="rtl"] .page-header h1 em {
    font-style: normal;
}
html[dir="rtl"] .content-section ul,
html[dir="rtl"] .content-section ol {
    padding-right: 1.5rem;
    padding-left: 0;
}
html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}
html[dir="rtl"] .footer-content {
    direction: rtl;
}
html[dir="rtl"] .navbar-links {
    flex-direction: row-reverse;
}
