* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html {
    /* scroll behavior handled by JS */
}
body {
    font-family:'Inter', system-ui, -apple-system, Arial, sans-serif;
    line-height:1.6;
    color:#1e2b3a;
    background:#fff;
    overflow-x:hidden;
}
.container {
    max-width:1280px;
    margin:0 auto;
    padding:0 24px;
}
img {
    display: block;
    height: auto;
    max-width:100%;
}

:root {
    --primary-dark:#0a2540;
    --primary-medium:#1b3a5c;
    --accent-gold:#c9a86c;
    --accent-gold-light:#dbb78c;
    --accent-gold-dark:#b89350;
    --text-dark:#1e2b3a;
    --text-light:#4a5568;
    --text-lighter:#718096;
    --bg-light:#f7fafc;
    --bg-white:#fff;
    --border-light:#edf2f7;
    --shadow-sm:0 4px 12px rgba(0,0,0,0.03);
    --shadow-md:0 10px 25px rgba(0,0,0,0.05);
    --shadow-lg:0 20px 40px rgba(0,0,0,0.08);
    --transition:all 0.3s ease;
}

/* RTL */
body.rtl { direction:rtl; text-align:right; }
body.rtl .header-flex { flex-direction:row-reverse; }
body.rtl nav a { margin-left:0; margin-right:2rem; }
body.rtl .nav-cta { margin-left:0; margin-right:2rem; }
body.rtl .service-card:before { left:auto; right:0; }
body.rtl .contact-info-item { flex-direction:row-reverse; }
body.rtl .contact-info-icon { margin-left:15px; margin-right:0; }
body.rtl .fa-arrow-right:before { content:"\f060"; }
body.rtl .section-title:after { left:auto; right:50%; transform:translateX(50%); }
body.rtl .case-study-result { border-left:none; border-right:4px solid var(--accent-gold); }
body.rtl .footer-links a:hover { padding-right:5px; padding-left:0; }
body.rtl .top-bar i { margin-left:5px; margin-right:0; }
body.rtl .whatsapp-float { left:auto; right:30px; }
body.rtl .back-to-top { left:auto; right:30px; }
body.rtl .hero-about { text-align: right; }   /* ← NEW RTL FIX */

/* Typography */
h1,h2,h3 {
    font-weight:700;
    line-height:1.3;
    color:var(--primary-dark);
    min-height:1em;
}
h1 { font-size:3.5rem; }
h2 { font-size:2.5rem; }
h3 { font-size:1.5rem; }
.section-title {
    text-align:center;
    font-size:2.5rem;
    margin-bottom:3rem;
    position:relative;
    padding-bottom:1rem;
}
.section-title:after {
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:80px;
    height:4px;
    background:var(--accent-gold);
    border-radius:2px;
}
.section-subtitle {
    text-align:center;
    color:var(--text-lighter);
    margin-bottom:2rem;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
}

/* Buttons */
.btn {
    display:inline-block;
    background:var(--accent-gold);
    color:var(--primary-dark);
    padding:14px 36px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:var(--transition);
    border:none;
    cursor:pointer;
    font-size:1rem;
    box-shadow:0 4px 12px rgba(201,168,108,0.3);
}
.btn:hover {
    background:var(--accent-gold-dark);
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(201,168,108,0.4);
}
.btn-outline {
    background:transparent;
    color:var(--primary-dark);
    border:2px solid var(--accent-gold);
    box-shadow:none;
}
.btn-outline:hover {
    background:var(--accent-gold);
    color:var(--primary-dark);
}
.btn-white { background:white; color:var(--primary-dark); }
.btn-large { padding:16px 42px; font-size:1.1rem; }

/* TOP BAR */
.top-bar {
    background:var(--accent-gold);
    color:var(--primary-dark);
    padding:10px 0;
    font-size:0.9rem;
}
.top-bar .container {
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}
.top-bar a {
    color:var(--primary-dark);
    text-decoration:none;
    font-weight:600;
    margin-left:15px;
}
.top-bar i { margin-right:5px; }

/* HEADER – fixed height, no padding change */
header {
    background: var(--primary-dark);
    color: white;
    height: 70px;            /* fixed height */
    display: flex;
    align-items: center;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease;
}
header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo { display: flex; align-items: center; }
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 50px; width: auto; display: block; object-fit: contain; }
.logo span { display: none; }
nav { display: flex; align-items: center; gap: 1.2rem; }
nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.25s ease;
}
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--accent-gold);
    transition: 0.25s ease;
}
nav a:hover::after { width: 100%; }
nav a:hover, nav a.active { color: var(--accent-gold); }
.nav-cta {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    padding: 9px 20px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.25s ease;
}
.nav-cta:hover { background: var(--accent-gold-light); transform: translateY(-2px); }
.lang-switch {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 6px 14px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.25s ease;
    margin-left: 1rem;
}
.lang-switch:hover { background: var(--accent-gold); color: var(--primary-dark); }
.mobile-menu-btn { display: none; font-size: 1.6rem; cursor: pointer; color: white; background: none; border: none; }

/* BOOKING BAR */
.booking-bar {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 70px;
    z-index: 99;
    box-shadow: var(--shadow-sm);
}
.booking-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect fill='none' stroke='rgba(201,168,108,0.05)' stroke-width='0.5' x='0' y='0' width='20' height='20'/%3E%3C/svg%3E") repeat;
    background-size:60px 60px;
}
.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
    position: relative;
    z-index: 2;
}
.hero-text {
    flex: 1;
    max-width: 600px;
}
.hero h1 {
    color: white;
    margin-bottom: 20px;
    max-width: 800px;
    min-height: 1em;
}
.hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 700px;
}
.hero-about {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.7;
}
.hero-badges {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    min-height: 2rem;
}
.hero-badge i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.hero-image {
    flex-shrink: 0;
    max-width: 420px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}
.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
}

/* Stack on mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
    }
}

/* ABOUT */
.about-section { padding: 100px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 15px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.about-feature { display: flex; gap: 15px; align-items: flex-start; }
.about-feature i { color: var(--accent-gold); font-size: 1.5rem; margin-top: 5px; flex-shrink: 0; }
.about-feature h4 { margin-bottom: 5px; font-size: 1rem; }
.about-feature p { font-size: 0.9rem; color: var(--text-lighter); margin: 0; }
.about-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* SERVICES */
.services-section { padding: 100px 0; background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: white; padding: 40px 30px; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent-gold); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-light); margin-bottom: 15px; font-size: 0.95rem; }
.service-link { color: var(--accent-gold); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* TEAM */
.team-section { padding: 100px 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-image { height: 300px; overflow: hidden; background: var(--primary-dark); display: flex; align-items: center; justify-content: center; }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-info { padding: 25px; text-align: center; }
.team-info h3 { margin-bottom: 5px; }
.team-title { color: var(--accent-gold); font-weight: 600; margin-bottom: 10px; font-size: 0.95rem; }
.team-languages { display: flex; justify-content: center; gap: 10px; margin: 15px 0; }
.team-languages span { background: var(--bg-light); padding: 3px 10px; border-radius: 5px; font-size: 0.8rem; color: var(--text-light); }
.team-quote { font-style: italic; color: var(--text-lighter); font-size: 0.9rem; margin-top: 10px; }

/* CASE STUDIES */
.case-studies-section { padding: 100px 0; background: var(--bg-light); }
.case-studies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.case-study-card { background: white; border-radius: 20px; padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.case-study-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-study-category { color: var(--accent-gold); font-weight: 600; margin-bottom: 10px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.case-study-card h3 { margin-bottom: 10px; }
.case-study-card > p { color: var(--text-light); margin-bottom: 15px; }
.case-study-result { background: var(--bg-light); padding: 15px; border-radius: 10px; margin: 20px 0; border-left: 4px solid var(--accent-gold); }
.case-study-result strong { color: var(--accent-gold); }

/* FAQ */
.faq-section { padding: 100px 0; background: white; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 1000px; margin: 0 auto; }
.faq-item { background: var(--bg-light); padding: 30px; border-radius: 16px; border: 1px solid var(--border-light); transition: var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--accent-gold); }
.faq-question { font-size: 1.1rem; margin-bottom: 12px; color: var(--primary-dark); }
.faq-answer { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* BLOG */
.blog-section { padding: 100px 0; background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-image { height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: 25px; }
.blog-meta { display: flex; gap: 15px; color: var(--text-lighter); font-size: 0.85rem; margin-bottom: 10px; }
.blog-meta i { color: var(--accent-gold); }
.blog-title { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { color: var(--text-light); font-size: 0.9rem; margin-bottom: 15px; line-height: 1.6; }
.blog-link { color: var(--accent-gold); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.blog-link:hover { gap: 10px; }

/* CONTACT */
.contact-section { padding: 100px 0; background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.contact-info { background: var(--bg-light); padding: 40px; border-radius: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.contact-info-icon { width: 50px; height: 50px; background: var(--accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 1.2rem; flex-shrink: 0; }
.contact-info-text h4 { margin-bottom: 5px; }
.contact-info-text a { color: var(--text-light); text-decoration: none; transition: var(--transition); }
.contact-info-text a:hover { color: var(--accent-gold); }
.contact-info-text p { color: var(--text-lighter); font-size: 0.9rem; }
.contact-hours { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border-light); }
.contact-hours h4 { margin-bottom: 10px; }
.contact-hours p { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 0.9rem; }
.contact-form { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.contact-form h3 { margin-bottom: 10px; }
.contact-form > p { color: var(--text-lighter); margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; border: 1px solid var(--border-light); border-radius: 10px; font-size: 1rem; font-family: inherit; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(201,168,108,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* MAP */
.map-section { width: 100%; }
.map-section iframe { width: 100%; height: 400px; border: none; filter: grayscale(20%); }

/* NEWSLETTER */
.newsletter-section { padding: 60px 0; background: var(--primary-dark); color: white; text-align: center; }
.newsletter-section h2 { color: white; margin-bottom: 10px; }
.newsletter-section p { color: rgba(255,255,255,0.8); margin-bottom: 25px; }
.newsletter-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 15px; border: none; border-radius: 50px; font-size: 1rem; font-family: inherit; }
.newsletter-form input:focus { outline: 2px solid var(--accent-gold); }

/* FOOTER */
footer { background: var(--primary-dark); color: white; padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-about p { opacity: 0.8; margin: 20px 0; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: var(--transition); }
.footer-social a:hover { background: var(--accent-gold); color: var(--primary-dark); }
.footer-links h3 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }
.footer-contact h3 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; opacity: 0.85; font-size: 0.95rem; }
.footer-contact i { color: var(--accent-gold); width: 20px; }
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-contact a:hover { color: var(--accent-gold); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { opacity: 0.6; font-size: 0.85rem; margin-bottom: 5px; }
.footer-bottom a { color: var(--accent-gold); text-decoration: none; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 30px; left: 30px; background: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; box-shadow: 0 8px 25px rgba(37,211,102,0.4); transition: var(--transition); z-index: 1000; text-decoration: none; animation: waPulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 110px; left: 30px; background: var(--primary-dark); color: white; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-md); transition: var(--transition); z-index: 999; text-decoration: none; opacity: 0; visibility: hidden; border: 2px solid var(--accent-gold); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent-gold); color: var(--primary-dark); }

/* COOKIE CONSENT */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary-dark); color: white; padding: 15px; text-align: center; z-index: 9999; display: none; }
.cookie-consent.show { display: block; }
.cookie-consent a { color: var(--accent-gold); text-decoration: underline; }
.cookie-consent button { background: var(--accent-gold); color: var(--primary-dark); border: none; padding: 8px 20px; border-radius: 50px; margin-left: 15px; cursor: pointer; font-weight: 600; font-family: inherit; }

/* ===== CLS FIXES ===== */
.elfsight-app {
    min-height: 300px;
}
section[id] {
    scroll-margin-top: 90px;
}

/* POLICY PAGES */
.policy-container { max-width: 900px; margin: 120px auto 80px; padding: 40px; background: white; border-radius: 20px; box-shadow: var(--shadow-md); }
.policy-container h1 { color: var(--primary-dark); margin-bottom: 20px; }
.policy-container h2 { color: var(--primary-dark); margin: 30px 0 15px; font-size: 1.5rem; }
.policy-container p, .policy-container li { color: var(--text-light); line-height: 1.7; }
.policy-container a { color: var(--accent-gold); text-decoration: none; }
.back-link { margin-top: 40px; display: inline-block; }

/* RESPONSIVE */
@media(max-width:1200px) {
    .services-grid, .case-studies-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
    .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    h1 { font-size: 2.5rem; }
}
@media(max-width:768px) {
    .mobile-menu-btn { display: block; }
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: 0.3s ease;
        z-index: 999;
    }
    nav.active { left: 0; }
    nav a { margin: 12px 0; font-size: 1.1rem; }
    .nav-cta { margin-top: 10px; }
    .hero { padding: 90px 0; }
    .hero-image img { max-width: 280px; }
    .services-grid, .case-studies-grid, .blog-grid, .team-grid, .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-badges { flex-direction: column; }
    .booking-bar .container { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 1.8rem; bottom: 20px; left: 20px; }
    .back-to-top { bottom: 90px; left: 20px; }
    h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 3px; }

/* SELECTION */
::selection { background: var(--accent-gold); color: var(--primary-dark); }