/* ============================================================
            RESET & BASE
            ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f8f5f0;
    --surface: #ffffff;
    --text: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --gold: #b48b5a;
    --gold-light: #d4bc9a;
    --gold-pale: #ede5d8;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.08);
    --radius-sm: 16px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --radius-xl: 60px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.rtl {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

body.rtl .logo,
body.rtl .section-title,
body.rtl .model-name,
body.rtl .model-price,
body.rtl .step .num,
body.rtl .hero-content h1 {
    font-family: 'Cairo', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================
            LANGUAGE DROPDOWN
            ============================================================ */
.lang-dropdown {
    position: relative;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
    user-select: none;
}
.lang-dropdown .selected {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 26, 0.05);
    padding: 6px 16px;
    border-radius: 40px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.lang-dropdown .selected:hover {
    background: rgba(26, 26, 26, 0.09);
    border-color: rgba(26, 26, 26, 0.12);
}
.lang-dropdown .selected i {
    font-size: 0.9rem;
    color: var(--gold);
}
.lang-dropdown .selected .arrow {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}
.lang-dropdown.open .selected .arrow {
    transform: rotate(180deg);
}

.lang-dropdown .menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 26, 26, 0.06);
    padding: 6px 0;
    min-width: 110px;
    display: none;
    z-index: 200;
    overflow: hidden;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.96);
}
body.rtl .lang-dropdown .menu {
    left: auto;
    right: 0;
}
.lang-dropdown.open .menu {
    display: block;
}
.lang-dropdown .menu .option {
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: background 0.2s ease;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
body.rtl .lang-dropdown .menu .option {
    letter-spacing: 0;
    text-transform: none;
}
.lang-dropdown .menu .option:hover {
    background: var(--gold-pale);
}
.lang-dropdown .menu .option.active {
    background: var(--gold-pale);
    color: var(--gold);
    font-weight: 600;
}
.lang-dropdown .menu .option i {
    width: 18px;
    font-size: 0.8rem;
    color: var(--gold);
}

body.rtl .lang-dropdown {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0;
}

/* ============================================================
            NAVIGATION
            ============================================================ */
.navbar {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(248, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.3px;
}
.logo img {
    height: 38px;
    width: auto;
    display: block;
}
.logo span {
    color: var(--gold);
    font-style: italic;
}
body.rtl .logo {
    font-family: 'Cairo', sans-serif;
}
body.rtl .logo span {
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
body.rtl .nav-links {
    letter-spacing: 0;
    text-transform: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
body.rtl .nav-links a::after {
    left: auto;
    right: 0;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
}

/* ============================================================
            BUTTONS
            ============================================================ */
.btn-primary {
    background: var(--text);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
body.rtl .btn-primary {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0;
}
.btn-primary:hover {
    background: var(--gold);
    box-shadow: 0 12px 32px rgba(180, 139, 90, 0.3);
    transform: translateY(-2px);
}
.btn-primary i {
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--text);
    color: var(--text);
    padding: 14px 36px;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
body.rtl .btn-outline {
    font-family: 'Cairo', sans-serif;
}
.btn-outline:hover {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
body.rtl .btn-whatsapp {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0;
}
.btn-whatsapp:hover {
    background: #1ebe5c;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
}

.btn-secondary {
    background: var(--gold-pale);
    color: var(--text);
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
body.rtl .btn-secondary {
    font-family: 'Cairo', sans-serif;
}
.btn-secondary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================================
            HERO
            ============================================================ */
.hero {
    padding: 60px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 60px;
    }
}

.hero-content .badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 16px;
}
body.rtl .hero-content .badge {
    letter-spacing: 0;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.hero-content h1 .highlight {
    color: var(--gold);
    font-style: italic;
}
body.rtl .hero-content h1 {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0;
}
body.rtl .hero-content h1 .highlight {
    font-style: normal;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
    font-weight: 300;
    letter-spacing: 0.2px;
}
body.rtl .hero-content p {
    letter-spacing: 0;
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gold-pale);
    aspect-ratio: 6/6.5;
    box-shadow: var(--shadow-lg);
}
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-image-wrapper .play-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-image-wrapper .play-badge i {
    font-size: 1.2rem;
}
body.rtl .hero-image-wrapper .play-badge {
    right: auto;
    left: 24px;
}

/* ============================================================
            SECTION TITLES
            ============================================================ */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}
body.rtl .section-title {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.2px;
}
body.rtl .section-subtitle {
    letter-spacing: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
}

/* ============================================================
            WHY DARDESK
            ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0 60px;
}
.why-card {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(26, 26, 26, 0.03);
    text-align: center;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.why-card .icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--gold);
}
.why-card h4 {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ============================================================
            MODELS
            ============================================================ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 32px 0 20px;
}

.model-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(26, 26, 26, 0.03);
    display: flex;
    flex-direction: column;
}
.model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.model-card .model-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.model-card .model-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.3px;
}
body.rtl .model-card .model-name {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0;
}
.model-card .model-name small {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}
body.rtl .model-card .model-name small {
    font-family: 'Cairo', sans-serif;
}

.model-card .model-tag {
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 14px;
    border-radius: 40px;
}

.model-card .model-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--gold-pale);
    margin: 8px 0 14px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.model-card .model-image:hover {
    opacity: 0.92;
}
.model-card .model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.model-card .model-image .zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.model-card .model-image:hover .zoom-hint {
    opacity: 1;
}
body.rtl .model-card .model-image .zoom-hint {
    right: auto;
    left: 12px;
}

.model-card .model-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.model-card .model-specs i {
    color: var(--gold);
    width: 20px;
}

.model-card .model-dimensions {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 8px 0 16px;
}

.model-card .model-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 4px 0 16px;
}
body.rtl .model-card .model-price {
    font-family: 'Cairo', sans-serif;
}

.model-card .model-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}
.model-card .model-actions .btn-primary,
.model-card .model-actions .btn-secondary {
    padding: 12px 28px;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
}

/* ============================================================
            LIGHTBOX / ZOOM OVERLAY
            ============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: zoom-out;
}
.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}
.lightbox-overlay .lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}
.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}
.lightbox-overlay .lightbox-content img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}
.lightbox-overlay .close-btn {
    position: fixed;
    top: 28px;
    right: 32px;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.lightbox-overlay .close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}
body.rtl .lightbox-overlay .close-btn {
    right: auto;
    left: 32px;
}

.lightbox-overlay .counter {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 18px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}
.lightbox-overlay .nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 2.8rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.lightbox-overlay .nav-arrow:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.lightbox-overlay .nav-arrow.prev {
    left: 24px;
}
.lightbox-overlay .nav-arrow.next {
    right: 24px;
}
body.rtl .lightbox-overlay .nav-arrow.prev {
    left: auto;
    right: 24px;
}
body.rtl .lightbox-overlay .nav-arrow.next {
    right: auto;
    left: 24px;
}
@media (max-width: 700px) {
    .lightbox-overlay .nav-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    padding: 8px;
    }
    .lightbox-overlay .nav-arrow.prev {
    left: 8px;
    }
    .lightbox-overlay .nav-arrow.next {
    right: 8px;
    }
    body.rtl .lightbox-overlay .nav-arrow.prev {
    left: auto;
    right: 8px;
    }
    body.rtl .lightbox-overlay .nav-arrow.next {
    right: auto;
    left: 8px;
    }
    .lightbox-overlay .close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    }
    body.rtl .lightbox-overlay .close-btn {
    right: auto;
    left: 16px;
    }
}

/* ============================================================
            VIDEO SECTION (full width)
            ============================================================ */
.video-section {
    margin: 60px 0 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--text);
    position: relative;
    box-shadow: var(--shadow-lg);
}
.video-section video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #1a1a1a;
}
.video-section .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.3);
    transition: opacity 0.5s ease;
    cursor: pointer;
}
.video-section .video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.video-section .video-overlay .play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--text);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.video-section .video-overlay .play-btn:hover {
    transform: scale(1.06);
    background: #fff;
}
.video-section .video-label {
    position: absolute;
    bottom: 24px;
    left: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 16px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}
body.rtl .video-section .video-label {
    left: auto;
    right: 32px;
    letter-spacing: 0;
}

/* ============================================================
            GALLERY
            ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0 40px;
}
@media (max-width: 700px) {
    .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 450px) {
    .gallery-grid {
    grid-template-columns: 1fr;
    }
}
.gallery-item {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gold-pale);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
            FEATURES
            ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0 40px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 26, 26, 0.03);
}
.feature-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}
.feature-item span {
    font-size: 0.9rem;
    font-weight: 400;
}

/* ============================================================
            STEPS
            ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0 40px;
}
@media (max-width: 700px) {
    .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 450px) {
    .steps-grid {
    grid-template-columns: 1fr;
    }
}
.step-card {
    background: var(--surface);
    padding: 28px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(26, 26, 26, 0.03);
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step-card .step-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
body.rtl .step-card .step-num {
    font-family: 'Cairo', sans-serif;
}
.step-card .step-label {
    font-weight: 500;
    font-size: 1rem;
}
.step-card .step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 4px;
}

/* ============================================================
            CONTACT / FAQ
            ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 32px 0 50px;
}
@media (max-width: 800px) {
    .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    }
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
}
.contact-info .contact-item i {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info .contact-item span {
    font-weight: 400;
}
.contact-info .contact-item .label {
    font-weight: 300;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
}

.faq-item {
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding: 18px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item .faq-question {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    user-select: none;
}
.faq-item .faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item .faq-answer {
    margin-top: 8px;
    color: var(--text-secondary);
    font-weight: 300;
    display: none;
    font-size: 0.95rem;
}
.faq-item.active .faq-answer {
    display: block;
}

/* ============================================================
            FLOATING WHATSAPP
            ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
    z-index: 200;
    text-decoration: none;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}
body.rtl .whatsapp-float {
    right: auto;
    left: 28px;
}

/* ============================================================
            FOOTER
            ============================================================ */
footer {
    border-top: 1px solid rgba(26, 26, 26, 0.06);
    padding: 28px 0 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}
body.rtl footer {
    letter-spacing: 0;
}
footer .footer-links {
    display: flex;
    gap: 24px;
}
footer .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
footer .footer-links a:hover {
    color: var(--text);
}

/* ============================================================
            RESPONSIVE
            ============================================================ */
@media (max-width: 820px) {
    .container {
    padding: 0 20px;
    }
    .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    background: var(--bg);
    width: 100%;
    padding: 18px 0;
    border-top: 1px solid rgba(26, 26, 26, 0.05);
    }
    .nav-links.open {
    display: flex;
    }
    .hamburger {
    display: block;
    }
    .navbar {
    padding: 16px 0;
    }
    .hero {
    padding: 30px 0 50px;
    }
    .section-title {
    font-size: 2.2rem;
    }
    .models-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    }
    .video-section .video-overlay .play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-actions .btn-primary,
    .hero-actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
    }
    .model-card .model-actions {
    flex-direction: column;
    }
    .model-card .model-actions .btn-primary,
    .model-card .model-actions .btn-secondary {
    flex: none;
    width: 100%;
    justify-content: center;
    }
}
