:root {
    --navy-blue: #1b2a3b;
    --dark-navy: #0d1821;
    --mid-navy: #243447;
    --gold: #c8a96e;
    --gold-light: #dfc28e;
    --gold-dark: #a8893e;
    --cream: #f8f4ec;
    --cream-dark: #efe9dc;
    --white: #ffffff;
    --text-dark: #1e2d3d;
    --text-mid: #4a5568;
    --text-light: #718096;
    --transition: all 0.3s ease;
    --light-bg: #f5f1e9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

html { scroll-behavior: smooth; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ══════════════════════════════
   NAVBAR — cream/white light
   ══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255, 252, 246, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(27, 42, 59, 0.08);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 50px; width: auto; object-fit: contain; }

.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--gold-dark); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px; cursor: pointer;
}

.hamburger span {
    width: 25px; height: 3px;
    background: var(--navy-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── DROPDOWN ── */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px); left: 0;
    background: var(--cream);
    width: 220px;
    list-style: none; padding: 10px 0; margin: 0;
    box-shadow: 0 8px 24px rgba(27, 42, 59, 0.12);
    border-radius: 8px;
    border: 1px solid rgba(200, 169, 110, 0.15);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px; background: transparent;
}

.dropdown-menu li { border-bottom: 1px solid rgba(200, 169, 110, 0.1); }
.dropdown-menu li:last-child { border-bottom: none; }

.dropdown-menu li a {
    display: block;
    padding: 11px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(200, 169, 110, 0.08);
    color: var(--gold-dark);
    padding-left: 25px;
}

.dropdown > span::after {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
    margin-left: 4px;
    vertical-align: middle;
}

/* Language Switcher */
.lang-link {
    display: flex !important;
    align-items: center; gap: 0.5rem;
    color: var(--text-dark) !important;
}

.lang-link:hover { color: var(--gold-dark) !important; }

.flag-icon {
    width: 20px; height: 14px;
    object-fit: cover; border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* ══════════════════════════════
   HERO SECTION
   ══════════════════════════════ */
.hero-section {
    position: relative;
    height: 660px;
    background-image: url('/images/luxury bed.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 24, 33, 0.65) 0%,
        rgba(27, 42, 59, 0.45) 50%,
        rgba(13, 24, 33, 0.58) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1::after {
    content: '';
    display: block;
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 14px auto 0;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.92;
    margin-top: 1rem;
}

.breadcrumb a {
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 0.75rem; opacity: 0.6; }

.scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ══════════════════════════════
   COMPANY PROFILE — white
   ══════════════════════════════ */
.company-profile {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.company-profile::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.profile-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 5rem;
    align-items: center;
}

.section-label {
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.3;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.gold-line {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1.5rem 0;
    border-radius: 2px;
}

.profile-text {
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.85;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    margin-top: 1.5rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(13, 24, 33, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--mid-navy) 0%, var(--navy-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 24, 33, 0.35);
}

.profile-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(27, 42, 59, 0.18);
    height: 550px;
}

.profile-image img {
    width: 100%; height: 100%;
    object-fit: cover; transition: var(--transition);
}

.profile-image:hover img { transform: scale(1.05); }

.image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(27, 42, 59, 0.92), transparent);
    padding: 2.5rem;
    opacity: 0; transition: var(--transition);
}

.profile-image:hover .image-overlay { opacity: 1; }

.overlay-content { color: white; text-align: center; }

.overlay-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--gold-light); display: block;
}

.overlay-text {
    font-size: 1.1rem; margin-top: 0.5rem;
    display: block; opacity: 0.88;
}

/* ══════════════════════════════
   HOW WE SERVE — navy dark
   ══════════════════════════════ */
.how-we-serve-clients {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    position: relative;
}

.how-we-serve-clients::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.serve-header-section {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto; margin-right: auto;
}

.serve-header-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.serve-header-section h2::after {
    content: '';
    display: block;
    width: 70px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 14px auto 0;
}

.serve-header-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(248, 244, 236, 0.85);
    margin-top: 1.5rem;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.serve-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 110, 0.18);
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.serve-card:hover {
    background: rgba(200, 169, 110, 0.07);
    border-color: rgba(200, 169, 110, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.serve-icon {
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    display: flex; justify-content: center;
}

.serve-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold-pale, #f5e4b8);
}

.serve-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(248, 244, 236, 0.8);
}

/* ══════════════════════════════
   VISION & MISSION — cream
   ══════════════════════════════ */
.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
}

.vision-mission::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(27, 42, 59, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(200, 169, 110, 0.1);
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(27, 42, 59, 0.14);
    border-color: rgba(200, 169, 110, 0.3);
}

.vm-icon { color: var(--gold); margin-bottom: 1.5rem; }

.vm-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.gold-divider-small {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1rem 0 1.5rem;
    border-radius: 2px;
}

.vm-card p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.85;
}

/* Core Values */
.core-values { margin-top: 5rem; }

.values-header { text-align: center; margin-bottom: 3rem; }

.values-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.gold-line-center-small {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1rem auto;
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(200, 169, 110, 0.1);
    box-shadow: 0 3px 15px rgba(27, 42, 59, 0.06);
}

.value-item:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(27, 42, 59, 0.12);
}

.value-icon { color: var(--gold); margin-bottom: 1rem; }

.value-item h4 {
    font-size: 1.15rem;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ══════════════════════════════
   STATISTICS BANNER — dark navy
   ══════════════════════════════ */
.statistics-banner {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        160deg,
        rgba(13, 24, 33, 0.93) 0%,
        rgba(27, 42, 59, 0.88) 50%,
        rgba(13, 24, 33, 0.93) 100%
    );
}

.stats-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.stats-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto; margin-right: auto;
    color: var(--cream);
    line-height: 1.4;
}

.stats-content > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(248, 244, 236, 0.78);
    font-size: 1.05rem;
    line-height: 1.85;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
    min-width: 160px;
}

.stat-item:hover {
    background: rgba(200, 169, 110, 0.08);
    border-color: rgba(200, 169, 110, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem; display: block;
}

.stat-divider {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
    border-radius: 2px;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(248, 244, 236, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ══════════════════════════════
   CONTACT — navy dark
   ══════════════════════════════ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,169,110,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative; z-index: 1;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.contact-header p {
    color: rgba(248, 244, 236, 0.75);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative; z-index: 1;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255,255,255,0.06);
    color: var(--cream);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 244, 236, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}

.contact-form textarea { resize: vertical; min-height: 150px; }

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(168, 137, 62, 0.35);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 137, 62, 0.5);
}

/* ══════════════════════════════
   FOOTER — dark navy
   ══════════════════════════════ */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 70px 0 24px;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about { padding-right: 2rem; }
.footer-logo { margin-bottom: 1.5rem; }

.footer-description {
    color: rgba(248, 244, 236, 0.6);
    line-height: 1.85; font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col ul li a {
    color: rgba(248, 244, 236, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-col ul li i {
    margin-right: 8px; width: 16px;
    text-align: center; color: var(--gold);
}


.footer-col ul li span {
    color: rgba(248, 244, 236, 0.65);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li span:hover {
    color: var(--gold-light);
}
.social-links-footer { display: flex; gap: 1rem; }

.social-links-footer a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(248, 244, 236, 0.7);
    transition: var(--transition);
    border: 1px solid rgba(200, 169, 110, 0.15);
}

.social-links-footer a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(168,137,62,0.35);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: rgba(248, 244, 236, 0.4);
    font-size: 0.88rem;
}

/* ══════════════════════════════
   WHATSAPP
   ══════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    z-index: 999; transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
    .profile-grid { grid-template-columns: 1fr; gap: 3rem; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { gap: 2rem; flex-wrap: wrap; }
    .serve-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .statistics-banner { background-attachment: scroll; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%; top: 70px;
        flex-direction: column;
        background: var(--cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.08);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active { left: 0; }
    .nav-menu > li { width: 100%; border-bottom: 1px solid rgba(200,169,110,0.1); }
    .nav-menu > li > a { display: flex; padding: 16px 24px; }

    .dropdown-menu {
        position: static;
        opacity: 1; visibility: hidden;
        transform: none; box-shadow: none;
        border-radius: 0;
        background: rgba(200,169,110,0.06);
        width: 100%; padding: 0; border: none;
        border-left: 3px solid var(--gold);
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s;
    }

    .dropdown.open .dropdown-menu { visibility: visible; max-height: 300px; }
    .dropdown-menu li a { padding: 12px 24px 12px 32px; }

    .hero-content h1 { font-size: 2.5rem; }
    .section-heading { font-size: 2rem; }
    .serve-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { flex-direction: column; gap: 1.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-about { padding-right: 0; }
    .statistics-banner { background-attachment: scroll; }
    .serve-header-section h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .stat-number { font-size: 3rem; }
    .how-we-serve-clients { padding: 60px 0; }
    .serve-header-section h2 { font-size: 1.8rem; }
    .serve-header-section p { font-size: 0.95rem; }
}

/* ══════════════════════════════
   RTL SUPPORT
   ══════════════════════════════ */
body.rtl { direction: rtl; font-size: 1rem; }
body.rtl .nav-menu { direction: rtl; }
body.rtl .logo { order: 2; }
body.rtl .nav-menu { order: 1; }

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');
body.rtl, body.rtl * { font-family: 'Cairo', 'Tajawal', sans-serif !important; }
body.rtl h1, body.rtl h2 { font-family: 'Cairo', serif !important; }
body.rtl h1 { font-size: 4rem !important; }
body.rtl h2 { font-size: 2.75rem !important; }
body.rtl h3 { font-size: 1.15em; }
body.rtl p, body.rtl li, body.rtl a,
body.rtl span, body.rtl input,
body.rtl textarea, body.rtl button { font-size: 1.05em; }
body.rtl .nav-menu a { font-size: 1.05em; }

@media (max-width: 768px) {
    .dropdown.open > span::after {
        transform: rotate(-135deg);
        margin-top: 2px;
    }
}

@media (min-width: 769px) {
    .nav-wrapper { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
    .nav-menu { display: flex; align-items: center; }
}

/* RTL mode mein icons ke liye specific styles */
body.rtl i[class*="fa-"] {
    font-family: "Font Awesome 6 Free" !important;
    direction: ltr !important;
    text-align: left !important;
}

/* Chevron icons ko flip karein RTL mein */
body.rtl .fa-chevron-right::before {
    content: "\f053" !important; /* Left arrow */
}

body.rtl .fa-chevron-left::before {
    content: "\f054" !important; /* Right arrow */
}

body.rtl .fa-arrow-right::before {
    content: "\f060" !important; /* Left arrow */
}

body.rtl .fa-arrow-left::before {
    content: "\f061" !important; /* Right arrow */
}