/* ============================================================
    RESET & BASE - LUXURY EDITION
    ============================================================ */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    :root {
        --bg: #f6f2eb;
        --bg-dark: #1a1714;
        --surface: #ffffff;
        --surface-dark: #2a2724;
        --text: #1a1714;
        --text-secondary: #4a4540;
        --text-muted: #8a8580;
        --text-light: #f5f0eb;
        --gold: #c9a87c;
        --gold-light: #e8d5b8;
        --gold-pale: #f5ede3;
        --gold-dark: #a88962;
        --gold-glow: rgba(201, 168, 124, 0.3);
        --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.04);
        --shadow-md: 0 12px 48px rgba(0, 0, 0, 0.07);
        --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.1);
        --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.15);
        --shadow-gold: 0 8px 32px rgba(201, 168, 124, 0.25);
        --radius-sm: 12px;
        --radius-md: 24px;
        --radius-lg: 40px;
        --radius-xl: 60px;
        --transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        --transition-smooth: 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    }

    html {
        scroll-behavior: smooth;
    }
    
    

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

    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-card .step-num,
    body.rtl .hero-content h1 {
        font-family: 'Cairo', sans-serif;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: var(--bg);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold-dark);
    }

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

    /* ============================================================
    SELECTION
    ============================================================ */
    ::selection {
        background: var(--gold);
        color: #fff;
    }

    /* ============================================================
    LANGUAGE DROPDOWN - LUXURY
    ============================================================ */
    .lang-dropdown {
        position: relative;
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        cursor: pointer;
        user-select: none;
    }
    .lang-dropdown .selected {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(26, 23, 20, 0.04);
        padding: 8px 18px;
        border-radius: 50px;
        transition: var(--transition);
        border: 1px solid transparent;
        backdrop-filter: blur(8px);
    }
    .lang-dropdown .selected:hover {
        background: rgba(26, 23, 20, 0.08);
        border-color: rgba(201, 168, 124, 0.3);
        box-shadow: var(--shadow-gold);
    }
    .lang-dropdown .selected i {
        font-size: 0.9rem;
        color: var(--gold);
    }
    .lang-dropdown .selected .arrow {
        font-size: 0.55rem;
        margin-left: 4px;
        transition: transform 0.4s ease;
        color: var(--gold);
    }
    .lang-dropdown.open .selected .arrow {
        transform: rotate(180deg);
    }

    .lang-dropdown .menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(201, 168, 124, 0.15);
        padding: 8px 0;
        min-width: 120px;
        display: none;
        z-index: 200;
        overflow: hidden;
    }
    body.rtl .lang-dropdown .menu {
        left: auto;
        right: 0;
    }
    .lang-dropdown.open .menu {
        display: block;
        animation: fadeSlideDown 0.3s ease;
    }
    @keyframes fadeSlideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .lang-dropdown .menu .option {
        padding: 10px 20px;
        font-size: 0.7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        transition: var(--transition);
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }
    body.rtl .lang-dropdown .menu .option {
        letter-spacing: 0;
        text-transform: none;
        font-size: 0.8rem;
    }
    .lang-dropdown .menu .option:hover {
        background: var(--gold-pale);
    }
    .lang-dropdown .menu .option.active {
        background: var(--gold-pale);
        color: var(--gold-dark);
        font-weight: 600;
    }
    .lang-dropdown .menu .option i {
        width: 18px;
        font-size: 0.8rem;
        color: var(--gold);
        opacity: 0;
        transition: var(--transition);
    }
    .lang-dropdown .menu .option.active i {
        opacity: 1;
    }

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

    /* ============================================================
    NAVIGATION - LUXURY
    ============================================================ */
    .navbar {
        padding: 24px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        background: rgba(246, 242, 235, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(201, 168, 124, 0.15);
        transition: var(--transition);
    }
    .navbar.scrolled {
        padding: 16px 0;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: var(--text);
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 2rem;
        letter-spacing: -0.5px;
        position: relative;
    }
    .logo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--gold);
        opacity: 0.5;
    }
    .logo span {
        color: var(--gold);
        font-style: italic;
    }
    body.rtl .logo {
        font-family: 'Cairo', sans-serif;
    }
    body.rtl .logo span {
        font-style: normal;
    }
    body.rtl .logo::after {
        left: auto;
        right: 0;
    }

    .nav-links {
        display: flex;
        gap: 2.8rem;
        list-style: none;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }
    body.rtl .nav-links {
        letter-spacing: 0;
        text-transform: none;
        font-size: 0.9rem;
    }
    .nav-links a {
        text-decoration: none;
        color: var(--text);
        transition: var(--transition);
        position: relative;
        padding-bottom: 4px;
        opacity: 0.7;
    }
    .nav-links a:hover {
        opacity: 1;
        color: var(--gold-dark);
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--gold);
        transition: var(--transition);
    }
    body.rtl .nav-links a::after {
        left: auto;
        right: 0;
    }
    .nav-links a:hover::after {
        width: 100%;
    }

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

    /* ============================================================
    BUTTONS - LUXURY
    ============================================================ */
    .btn-primary {
        background: var(--text);
        color: #fff;
        border: none;
        padding: 18px 44px;
        border-radius: 60px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }
    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        opacity: 0;
        transition: var(--transition);
    }
    .btn-primary:hover::before {
        opacity: 1;
    }
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold);
    }
    .btn-primary span,
    .btn-primary i {
        position: relative;
        z-index: 1;
    }
    body.rtl .btn-primary {
        font-family: 'Cairo', sans-serif;
        letter-spacing: 0;
    }
    .btn-primary i {
        font-size: 1rem;
    }

    .btn-outline {
        background: transparent;
        border: 1.5px solid var(--text);
        color: var(--text);
        padding: 16px 38px;
        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: 12px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }
    .btn-outline::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--text);
        transform: scaleX(0);
        transform-origin: right;
        transition: var(--transition);
    }
    .btn-outline:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }
    .btn-outline:hover {
        color: #fff;
        border-color: var(--text);
    }
    .btn-outline span {
        position: relative;
        z-index: 1;
    }
    body.rtl .btn-outline {
        font-family: 'Cairo', sans-serif;
    }

    .btn-whatsapp {
        background: #25D366;
        color: #fff;
        border: none;
        padding: 18px 44px;
        border-radius: 60px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }
    .btn-whatsapp::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #1ebe5c, #25D366);
        opacity: 0;
        transition: var(--transition);
    }
    .btn-whatsapp:hover::before {
        opacity: 1;
    }
    .btn-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
    }
    .btn-whatsapp span,
    .btn-whatsapp i {
        position: relative;
        z-index: 1;
    }
    body.rtl .btn-whatsapp {
        font-family: 'Cairo', sans-serif;
        letter-spacing: 0;
    }

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

    /* ============================================================
    HERO - LUXURY
    ============================================================ */
    .hero {
        padding: 80px 0 100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
    }
    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(201, 168, 124, 0.06), transparent 70%);
        pointer-events: none;
        z-index: 0;
    }
    @media (max-width: 900px) {
        .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 0 70px;
        }
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }
    .hero-content .badge {
        display: inline-block;
        background: var(--gold-pale);
        color: var(--gold-dark);
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 8px 22px;
        border-radius: 50px;
        margin-bottom: 20px;
        border: 1px solid rgba(201, 168, 124, 0.2);
    }
    body.rtl .hero-content .badge {
        letter-spacing: 0;
    }

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: clamp(3.2rem, 7.5vw, 5.2rem);
        line-height: 1.05;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }
    .hero-content h1 .highlight {
        color: var(--gold);
        font-style: italic;
        position: relative;
        display: inline-block;
    }
    .hero-content h1 .highlight::before {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 100%;
        height: 6px;
        background: var(--gold-pale);
        z-index: -1;
        border-radius: 2px;
    }
    body.rtl .hero-content h1 {
        font-family: 'Cairo', sans-serif;
        letter-spacing: 0;
    }
    body.rtl .hero-content h1 .highlight {
        font-style: normal;
    }
    body.rtl .hero-content h1 .highlight::before {
        bottom: 2px;
        height: 4px;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        max-width: 480px;
        margin-bottom: 40px;
        font-weight: 300;
        letter-spacing: 0.3px;
        line-height: 1.8;
    }
    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-xl);
        z-index: 1;
        transition: var(--transition-smooth);
    }
    .hero-image-wrapper:hover {
        transform: scale(1.01);
        box-shadow: var(--shadow-xl), 0 0 60px rgba(201, 168, 124, 0.1);
    }
    .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .hero-image-wrapper::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(201, 168, 124, 0.1));
        pointer-events: none;
    }

    /* ============================================================
    SECTION TITLES - LUXURY
    ============================================================ */
    .section-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 2.8rem;
        letter-spacing: -0.8px;
        margin-bottom: 8px;
        position: relative;
        display: inline-block;
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        border-radius: 2px;
    }
    body.rtl .section-title {
        font-family: 'Cairo', sans-serif;
        letter-spacing: 0;
    }
    body.rtl .section-title::after {
        left: auto;
        right: 0;
        background: linear-gradient(270deg, var(--gold), var(--gold-light));
    }

    .section-subtitle {
        color: var(--text-muted);
        font-size: 1.1rem;
        font-weight: 300;
        margin-bottom: 48px;
        letter-spacing: 0.5px;
    }
    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: 12px;
    }

    /* ============================================================
    WHY DARDESK - LUXURY
    ============================================================ */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 28px;
        margin: 40px 0 70px;
    }
    .why-card {
        background: var(--surface);
        padding: 40px 28px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        transition: var(--transition-smooth);
        border: 1px solid rgba(201, 168, 124, 0.08);
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition-smooth);
    }
    .why-card:hover::before {
        transform: scaleX(1);
    }
    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold-light);
    }
    .why-card .icon-wrap {
        width: 72px;
        height: 72px;
        background: var(--gold-pale);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        font-size: 1.8rem;
        color: var(--gold);
        transition: var(--transition);
        border: 1px solid rgba(201, 168, 124, 0.1);
    }
    .why-card:hover .icon-wrap {
        transform: scale(1.05) rotate(-5deg);
        border-color: var(--gold);
    }
    .why-card h4 {
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 6px;
        letter-spacing: -0.2px;
    }
    .why-card p {
        color: var(--text-muted);
        font-size: 0.9rem;
        font-weight: 300;
    }

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

    .model-card {
        background: var(--surface);
        border-radius: var(--radius-lg);
        padding: 36px 32px 32px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition-smooth);
        border: 1px solid rgba(201, 168, 124, 0.06);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
    .model-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
        opacity: 0;
        transition: var(--transition-smooth);
    }
    .model-card:hover::before {
        opacity: 1;
    }
    .model-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201, 168, 124, 0.15);
    }

    .model-card .model-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 16px;
    }
    .model-card .model-name {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    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.85rem;
        color: var(--text-muted);
        display: block;
        margin-top: 2px;
        letter-spacing: 0.5px;
    }
    body.rtl .model-card .model-name small {
        font-family: 'Cairo', sans-serif;
        letter-spacing: 0;
    }

    .model-card .model-tag {
        background: var(--gold-pale);
        color: var(--gold-dark);
        font-size: 0.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        padding: 6px 16px;
        border-radius: 50px;
        border: 1px solid rgba(201, 168, 124, 0.15);
    }

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

    .model-card .model-dimensions {
        background: var(--bg);
        border-radius: var(--radius-sm);
        padding: 14px 20px;
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin: 10px 0 18px;
        border: 1px solid rgba(201, 168, 124, 0.06);
    }

    .model-card .model-price {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 2rem;
        margin: 6px 0 18px;
        color: var(--gold-dark);
    }
    body.rtl .model-card .model-price {
        font-family: 'Cairo', sans-serif;
    }

    .model-card .model-actions {
        display: flex;
        gap: 14px;
        margin-top: auto;
        flex-wrap: wrap;
    }
    .model-card .model-actions .btn-primary,
    .model-card .model-actions .btn-secondary {
        padding: 14px 28px;
        font-size: 0.85rem;
        flex: 1;
        justify-content: center;
    }
    
    .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: 14px 20px;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.model-card .model-actions .btn-primary {
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.model-card .model-actions .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: var(--transition);
}

.model-card .model-actions .btn-primary:hover::before {
    opacity: 1;
}

.model-card .model-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.model-card .model-actions .btn-primary span,
.model-card .model-actions .btn-primary i {
    position: relative;
    z-index: 1;
}

.model-card .model-actions .btn-secondary {
    background: var(--gold-pale);
    color: var(--text);
    border: 1px solid rgba(201, 168, 124, 0.2);
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.model-card .model-actions .btn-secondary:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

body.rtl .model-card .model-actions .btn-primary,
body.rtl .model-card .model-actions .btn-secondary {
    font-family: 'Cairo', sans-serif;
}

    /* ============================================================
    LIGHTBOX - LUXURY
    ============================================================ */
    .lightbox-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 40px;
        opacity: 0;
        transition: opacity 0.5s 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 40px 120px rgba(0, 0, 0, 0.6);
        overflow: hidden;
        transform: scale(0.9);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: default;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .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: 32px;
        right: 36px;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        transition: var(--transition);
        background: rgba(255, 255, 255, 0.06);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
    }
    .lightbox-overlay .close-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: rotate(90deg) scale(1.05);
        border-color: var(--gold);
    }
    body.rtl .lightbox-overlay .close-btn {
        right: auto;
        left: 36px;
    }

    .lightbox-overlay .counter {
        position: fixed;
        bottom: 36px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.8rem;
        font-weight: 300;
        letter-spacing: 2px;
        background: rgba(0, 0, 0, 0.3);
        padding: 8px 22px;
        border-radius: 50px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.04);
    }
    .lightbox-overlay .nav-arrow {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.3);
        font-size: 2.8rem;
        cursor: pointer;
        transition: var(--transition);
        padding: 16px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
        width: 68px;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(8px);
    }
    .lightbox-overlay .nav-arrow:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(201, 168, 124, 0.2);
    }
    .lightbox-overlay .nav-arrow.prev {
        left: 32px;
    }
    .lightbox-overlay .nav-arrow.next {
        right: 32px;
    }
    body.rtl .lightbox-overlay .nav-arrow.prev {
        left: auto;
        right: 32px;
    }
    body.rtl .lightbox-overlay .nav-arrow.next {
        right: auto;
        left: 32px;
    }
    @media (max-width: 700px) {
        .lightbox-overlay .nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
        padding: 8px;
        }
        .lightbox-overlay .nav-arrow.prev {
        left: 12px;
        }
        .lightbox-overlay .nav-arrow.next {
        right: 12px;
        }
        body.rtl .lightbox-overlay .nav-arrow.prev {
        left: auto;
        right: 12px;
        }
        body.rtl .lightbox-overlay .nav-arrow.next {
        right: auto;
        left: 12px;
        }
        .lightbox-overlay .close-btn {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        }
        body.rtl .lightbox-overlay .close-btn {
        right: auto;
        left: 16px;
        }
    }

    /* ============================================================
    VIDEO SECTION - LUXURY
    ============================================================ */
.video-section {
    margin: 70px 0 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.video-section video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Overlay - visible initially, fades after video starts */
.video-section .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 23, 20, 0.4);
    transition: opacity 0.8s ease, visibility 0.8s ease;
    cursor: pointer;
    z-index: 2;
}

/* Hide overlay when video is playing */
.video-section .video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Hide overlay on autoplay start (after first play) */
.video-section .video-overlay.playing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-section .video-overlay .play-btn {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--text);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(201, 168, 124, 0.2);
}

.video-section .video-overlay .play-btn:hover {
    transform: scale(1.08);
    background: #fff;
    box-shadow: 0 12px 60px rgba(201, 168, 124, 0.3);
    border-color: var(--gold);
}

.video-section .video-label {
    position: absolute;
    bottom: 28px;
    left: 36px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 22px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 3;
}

body.rtl .video-section .video-label {
    left: auto;
    right: 36px;
    letter-spacing: 0;
}

/* ============================================================
  VIDEO SECTION - PHONE VIEW
  ============================================================ */
@media (max-width: 768px) {
    .video-section {
        border-radius: 0;
        margin: 40px 0 30px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
        box-shadow: none;
        border: none;
    }
    
    .video-section video {
        aspect-ratio: 16/9;
    }
    
    .video-section .video-overlay .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .video-section .video-label {
        bottom: 16px;
        left: 16px;
        font-size: 0.65rem;
        padding: 6px 16px;
    }
    body.rtl .video-section .video-label {
        left: auto;
        right: 16px;
    }
}
    /* ============================================================
    GALLERY - LUXURY
    ============================================================ */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin: 40px 0 50px;
    }
    @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-smooth);
        cursor: pointer;
        position: relative;
    }
    .gallery-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(201, 168, 124, 0.1));
        opacity: 0;
        transition: var(--transition);
    }
    .gallery-item:hover::after {
        opacity: 1;
    }
    .gallery-item:hover {
        transform: scale(1.03);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold-light);
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: var(--transition-smooth);
    }
    .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* ============================================================
    FEATURES - LUXURY
    ============================================================ */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
        margin: 30px 0 50px;
    }
    .feature-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 22px;
        background: var(--surface);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(201, 168, 124, 0.05);
        transition: var(--transition);
    }
    .feature-item:hover {
        transform: translateX(4px);
        border-color: rgba(201, 168, 124, 0.15);
        box-shadow: var(--shadow-md);
    }
    body.rtl .feature-item:hover {
        transform: translateX(-4px);
    }
    .feature-item i {
        color: var(--gold);
        font-size: 1.2rem;
        width: 28px;
        text-align: center;
    }
    .feature-item span {
        font-size: 0.9rem;
        font-weight: 400;
    }

    /* ============================================================
    STEPS - LUXURY
    ============================================================ */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin: 40px 0 50px;
    }
    @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: 36px 20px;
        border-radius: var(--radius-md);
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: var(--transition-smooth);
        border: 1px solid rgba(201, 168, 124, 0.05);
        position: relative;
        overflow: hidden;
    }
    .step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        opacity: 0;
        transition: var(--transition);
    }
    .step-card:hover::before {
        opacity: 1;
    }
    .step-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: rgba(201, 168, 124, 0.15);
    }
    .step-card .step-num {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 3rem;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 8px;
        opacity: 0.6;
    }
    body.rtl .step-card .step-num {
        font-family: 'Cairo', sans-serif;
    }
    .step-card .step-label {
        font-weight: 600;
        font-size: 1.05rem;
        letter-spacing: -0.2px;
    }
    .step-card .step-desc {
        font-size: 0.85rem;
        color: var(--text-muted);
        font-weight: 300;
        margin-top: 6px;
    }

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

    .contact-info .contact-item {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 20px;
        padding: 10px 20px;
        border-radius: var(--radius-sm);
        transition: var(--transition);
        border: 1px solid transparent;
    }
    .contact-info .contact-item i {
        width: 44px;
        height: 44px;
        background: var(--gold-pale);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1.1rem;
        flex-shrink: 0;
        border: 1px solid rgba(201, 168, 124, 0.1);
        transition: var(--transition);
    }
    .contact-info .contact-item span {
        font-weight: 400;
    }
    .contact-info .contact-item .label {
        font-weight: 300;
        color: var(--text-muted);
        font-size: 0.8rem;
        display: block;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .faq-item {
        border-bottom: 1px solid rgba(201, 168, 124, 0.1);
        padding: 20px 0;
        transition: var(--transition);
    }
    .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: 1.05rem;
        user-select: none;
        transition: var(--transition);
        padding: 4px 0;
    }
    .faq-item .faq-question:hover {
        color: var(--gold-dark);
    }
    .faq-item .faq-question i {
        color: var(--gold);
        transition: transform 0.4s ease;
        font-size: 0.9rem;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--gold-pale);
    }
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
        background: var(--gold);
        color: #fff;
    }
    .faq-item .faq-answer {
        margin-top: 12px;
        color: var(--text-secondary);
        font-weight: 300;
        display: none;
        font-size: 0.95rem;
        line-height: 1.8;
        padding-right: 20px;
    }
    body.rtl .faq-item .faq-answer {
        padding-right: 0;
        padding-left: 20px;
    }
    .faq-item.active .faq-answer {
        display: block;
        animation: fadeSlideDown 0.4s ease;
    }

    /* ============================================================
    UPSELL MODAL - LUXURY
    ============================================================ */

.upsell-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.upsell-modal.active {
    display: flex;
    opacity: 1;
}

.upsell-overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
}

.upsell-container {
    background: var(--surface);
    border-radius: var(--radius-sm);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: upsellSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(201, 168, 124, 0.08);
}

@keyframes upsellSlideUp {
    from { 
        transform: translateY(40px) scale(0.98); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

/* Scrollbar */
.upsell-container::-webkit-scrollbar {
    width: 4px;
}
.upsell-container::-webkit-scrollbar-track {
    background: transparent;
}
.upsell-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* Close Button */
.upsell-close {
    position: sticky;
    top: 16px;
    float: right;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 16px 0 0;
}
.upsell-close:hover {
    background: var(--gold-pale);
    color: var(--text);
    transform: rotate(90deg);
}
body.rtl .upsell-close {
    float: left;
    margin: 16px 0 0 16px;
}

/* Header */
.upsell-header {
    padding: 30px 40px 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 168, 124, 0.08);
    flex-wrap: wrap;
}

.upsell-header-content {
    flex: 1;
}

.upsell-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    background: var(--gold-pale);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.upsell-header-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: -0.5px;
    color: var(--text);
    margin: 0;
}
body.rtl .upsell-header-content h2 {
    font-family: 'Cairo', sans-serif;
}

.upsell-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 4px;
}

.upsell-price-display {
    text-align: right;
    padding-top: 8px;
    flex-shrink: 0;
}
body.rtl .upsell-price-display {
    text-align: left;
}

.upsell-price-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.upsell-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
}
body.rtl .upsell-price-value {
    font-family: 'Cairo', sans-serif;
}

/* Body */
.upsell-body {
    padding: 24px 40px 16px;
}

/* Sections */
.upsell-section {
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 168, 124, 0.06);
    transition: var(--transition);
}
.upsell-section:hover {
    border-color: rgba(201, 168, 124, 0.12);
    box-shadow: var(--shadow-sm);
}

.upsell-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.upsell-section-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(201, 168, 124, 0.1);
}

.upsell-section-info {
    flex: 1;
}
.upsell-section-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.2px;
}
.upsell-section-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 300;
}

.upsell-section-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-dark);
    flex-shrink: 0;
    padding: 4px 12px;
    background: rgba(201, 168, 124, 0.08);
    border-radius: 50px;
}

/* Options Grid */
.upsell-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.upsell-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.upsell-option:hover {
    border-color: rgba(201, 168, 124, 0.2);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.upsell-option.selected {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.upsell-option input {
    display: none;
}

.upsell-option-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}
.upsell-option.selected .upsell-option-check {
    border-color: var(--gold);
    background: var(--gold);
}
.upsell-option.selected .upsell-option-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.7rem;
}

.upsell-option-content {
    flex: 1;
}
.upsell-option-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}
.upsell-option-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

.upsell-option-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* Colors Grid */
.upsell-colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
}

.upsell-color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.upsell-color-option:hover {
    border-color: rgba(201, 168, 124, 0.2);
    transform: translateY(-2px);
}

.upsell-color-option.selected {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.upsell-color-option input {
    display: none;
}

.upsell-color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.upsell-color-option.selected .upsell-color-swatch {
    box-shadow: 0 0 0 3px var(--gold), 0 4px 12px rgba(201, 168, 124, 0.3);
    transform: scale(1.05);
}

.upsell-color-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Note */
.upsell-note {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(201, 168, 124, 0.04);
    border-radius: 8px;
    border: 1px dashed rgba(201, 168, 124, 0.15);
}
.upsell-note i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Footer */
.upsell-footer {
    padding: 20px 40px 28px;
    border-top: 1px solid rgba(201, 168, 124, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--surface);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.upsell-footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upsell-footer-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.upsell-footer-total {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.upsell-total-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upsell-total-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
}
body.rtl .upsell-total-price {
    font-family: 'Cairo', sans-serif;
}

.upsell-footer-actions {
    display: flex;
    gap: 12px;
}

.upsell-btn-upsell {
    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;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
body.rtl .upsell-btn-upsell {
    font-family: 'Cairo', sans-serif;
}

.upsell-btn-upsell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: var(--transition);
}
.upsell-btn-upsell:hover::before {
    opacity: 1;
}
.upsell-btn-upsell:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.upsell-btn-upsell span,
.upsell-btn-upsell i {
    position: relative;
    z-index: 1;
}

.upsell-btn-skip {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(26, 23, 20, 0.1);
    padding: 16px 28px;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
body.rtl .upsell-btn-skip {
    font-family: 'Cairo', sans-serif;
}

.upsell-btn-skip:hover {
    background: var(--bg);
    border-color: var(--text-muted);
    color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
    .upsell-header {
        padding: 0 20px 20px;
        flex-direction: column;
    }
    .upsell-price-display {
        text-align: left;
        width: 100%;
    }
    body.rtl .upsell-price-display {
        text-align: right;
    }
    .upsell-body {
        padding: 16px 20px 12px;
    }
    .upsell-section {
        padding: 16px;
    }
    .upsell-options-grid {
        grid-template-columns: 1fr;
    }
    .upsell-colors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .upsell-footer {
        padding: 16px 20px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .upsell-footer-actions {
        flex-direction: column;
    }
    .upsell-btn-upsell,
    .upsell-btn-skip {
        width: 100%;
        justify-content: center;
    }
    .upsell-close {
        top: 10px;
        margin: 10px 10px 0 0;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    body.rtl .upsell-close {
        margin: 10px 0 0 10px;
    }
}

@media (max-width: 480px) {
    .upsell-colors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .upsell-header-content h2 {
        font-size: 1.5rem;
    }
    .upsell-price-value {
        font-size: 1.5rem;
    }
    .upsell-total-price {
        font-size: 1.5rem;
    }
}

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

    /* ============================================================
    FOOTER - LUXURY
    ============================================================ */
    footer {
        border-top: 1px solid rgba(201, 168, 124, 0.1);
        padding: 36px 0 40px;
        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.5px;
        margin-top: 20px;
    }
    body.rtl footer {
        letter-spacing: 0;
    }
    footer .footer-links {
        display: flex;
        gap: 32px;
    }
    footer .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: var(--transition);
        position: relative;
    }
    footer .footer-links a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: var(--transition);
    }
    footer .footer-links a:hover::after {
        width: 100%;
    }
    footer .footer-links a:hover {
        color: var(--gold-dark);
    }

    /* ============================================================
    RESPONSIVE - LUXURY
    ============================================================ */
    @media (max-width: 820px) {
        .container {
        padding: 0 20px;
        }
        .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: var(--bg);
        width: 100%;
        padding: 24px 0;
        border-top: 1px solid rgba(201, 168, 124, 0.1);
        }
        .nav-links.open {
        display: flex;
        animation: fadeSlideDown 0.3s ease;
        }
        .hamburger {
        display: block;
        }
        .navbar {
        padding: 16px 0;
        }
        .hero {
        padding: 40px 0 60px;
        }
        .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: 64px;
        height: 64px;
        font-size: 1.8rem;
        }
        .upsell-content {
            max-width: 100%;
            margin: 10px;
            border-radius: var(--radius-md);
        }
        .upsell-header {
            padding: 20px 24px 16px;
        }
        .upsell-body {
            padding: 16px 24px 8px;
        }
        .upsell-footer {
            padding: 16px 24px 20px;
            flex-direction: column;
        }
        .upsell-actions {
            width: 100%;
        }
        .upsell-actions .btn-primary,
        .upsell-actions .btn-secondary {
            flex: 1;
            justify-content: center;
        }
    }

    @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;
        }
        .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
        }
        body.rtl .whatsapp-float {
        right: auto;
        left: 20px;
        }
        .upsell-actions {
            flex-direction: column;
        }
        .upsell-actions .btn-primary,
        .upsell-actions .btn-secondary {
            width: 100%;
            justify-content: center;
        }
    }
    
    
    /* Social Links */
.contact-info .contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}
.contact-info .contact-item a:hover {
    color: var(--gold);
}

footer .footer-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}
footer .footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-social a:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
}


   /* ============================================================
    REVIEWS SECTION
    ============================================================ */
  /* ============================================================
               REVIEWS SECTION — LUXURY EDITION
               ============================================================ */
    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      background: var(--surface);
      border-radius: var(--radius-xl);
      padding: 56px 56px 52px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(26, 26, 26, 0.04);
      align-items: center;
      margin: 60px 0 60px;
      position: relative;
      transition: var(--transition);
    }
    .reviews-grid:hover {
      box-shadow: 0 32px 72px rgba(0, 0, 0, 0.07);
    }
    @media (max-width: 800px) {
      .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 28px 36px;
        margin: 40px 0 40px;
        border-radius: var(--radius-lg);
      }
    }
    @media (max-width: 480px) {
      .reviews-grid {
        padding: 28px 18px 24px;
        gap: 32px;
        margin: 30px 0 30px;
        border-radius: var(--radius-md);
      }
    }

    .review-card {
      background: var(--bg);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      margin-bottom: 16px;
      border-left: 5px solid var(--gold);
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .review-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-md);
    }
    .review-card:last-child {
      margin-bottom: 0;
    }
    body.rtl .review-card {
      border-left: none;
      border-right: 5px solid var(--gold);
    }
    body.rtl .review-card:hover {
      transform: translateX(-4px);
    }

    .review-card .reviewer {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 8px;
    }
    .review-card .reviewer .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      font-weight: 600;
      font-size: 0.95rem;
      flex-shrink: 0;
      border: 2px solid var(--gold-pale);
      transition: var(--transition);
    }
    .review-card:hover .reviewer .avatar {
      border-color: var(--gold);
    }
    .review-card .reviewer .name {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text);
      letter-spacing: 0.2px;
    }
    .review-card .reviewer .stars {
      display: flex;
      gap: 3px;
      color: var(--gold);
      font-size: 0.75rem;
      letter-spacing: 1px;
    }
    .review-card .review-text {
      font-size: 0.95rem;
      color: var(--text-secondary);
      font-weight: 300;
      font-style: italic;
      margin: 0;
      line-height: 1.7;
      padding-left: 4px;
    }
    .review-card .review-text::before {
      content: '"';
      color: var(--gold);
      font-size: 1.2rem;
      opacity: 0.5;
      margin-right: 2px;
    }
    .review-card .review-text::after {
      content: '"';
      color: var(--gold);
      font-size: 1.2rem;
      opacity: 0.5;
      margin-left: 2px;
    }

    .reviews-summary {
      margin-top: 24px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 16px;
      border-top: 1px solid rgba(26, 26, 26, 0.05);
    }
    .reviews-summary .rating {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .reviews-summary .rating .number {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.5px;
    }
    .reviews-summary .rating .stars {
      display: flex;
      gap: 4px;
      color: var(--gold);
      font-size: 1rem;
      letter-spacing: 2px;
    }
    .reviews-summary .count {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 400;
      letter-spacing: 0.3px;
    }
    .reviews-summary .count::before {
      content: '•';
      margin-right: 8px;
      color: var(--gold);
      opacity: 0.4;
    }
    .reviews-summary .google-badge {
      font-size: 0.75rem;
      color: var(--text-muted);
      display: flex;
      gap: 6px;
      align-items: center;
      background: var(--gold-pale);
      padding: 4px 14px 4px 10px;
      border-radius: 40px;
      font-weight: 500;
      transition: var(--transition);
    }
    .reviews-summary .google-badge:hover {
      background: var(--gold-light);
      transform: scale(1.02);
    }
    .reviews-summary .google-badge i {
      color: var(--gold);
      font-size: 0.85rem;
    }

    .qr-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 8px 0;
    }
    .qr-section .qr-badge {
      display: inline-block;
      background: var(--gold-pale);
      color: var(--gold);
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 6px 18px;
      border-radius: 40px;
      margin-bottom: 10px;
      transition: var(--transition);
    }
    .qr-section .qr-badge:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }
    .qr-section h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
      letter-spacing: -0.5px;
      margin-bottom: 6px;
      color: var(--text);
    }
    body.rtl .qr-section h3 {
      font-family: 'Cairo', sans-serif;
      letter-spacing: 0;
    }
    .qr-section .sub {
      color: var(--text-secondary);
      font-size: 0.95rem;
      font-weight: 300;
      margin-bottom: 24px;
      letter-spacing: 0.2px;
      max-width: 320px;
      line-height: 1.6;
    }
    .qr-section .qr-wrapper {
      background: var(--bg);
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(26, 26, 26, 0.04);
      display: inline-block;
      margin-bottom: 18px;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .qr-section .qr-wrapper:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--gold-light);
      transform: scale(1.02);
    }
    .qr-section .qr-wrapper img {
      border-radius: 12px;
      display: block;
      width: 170px;
      height: 170px;
      transition: var(--transition);
    }
    @media (max-width: 480px) {
      .qr-section .qr-wrapper img {
        width: 140px;
        height: 140px;
      }
    }
    .qr-section .scan-hint {
      font-size: 0.8rem;
      font-weight: 400;
      color: var(--text-muted);
      margin-bottom: 18px;
      letter-spacing: 0.3px;
    }
    .qr-section .scan-hint i {
      color: var(--gold);
      margin-right: 6px;
    }
    .qr-section .divider {
      margin: 0 0 18px 0;
      display: flex;
      align-items: center;
      gap: 20px;
      width: 100%;
      max-width: 280px;
    }
    .qr-section .divider .line {
      flex: 1;
      height: 1px;
      background: rgba(26, 26, 26, 0.06);
    }
    .qr-section .divider .or {
      font-size: 0.7rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      flex-shrink: 0;
      font-weight: 400;
    }
    .qr-section .review-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 16px 42px;
      background: var(--text);
      color: #fff;
      border: none;
      border-radius: 60px;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      letter-spacing: 0.3px;
    }
    .qr-section .review-btn:hover {
      background: var(--gold);
      box-shadow: 0 16px 40px rgba(180, 139, 90, 0.35);
      transform: translateY(-3px) scale(1.02);
    }
    .qr-section .review-btn:active {
      transform: translateY(0px) scale(0.98);
    }
    .qr-section .review-btn i {
      font-size: 1.2rem;
    }
    .qr-section .review-btn .arrow {
      font-size: 0.8rem;
      opacity: 0.7;
      transition: var(--transition);
    }
    .qr-section .review-btn:hover .arrow {
      opacity: 1;
      transform: translateX(4px);
    }
    body.rtl .qr-section .review-btn:hover .arrow {
      transform: translateX(-4px);
    }
    
    
    
    /* ============================================================
               FEATURES — EXPANDED
               ============================================================ */
    .features-grid-expanded {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin: 24px 0 40px;
    }

    .feature-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 22px;
      background: var(--surface);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(26, 26, 26, 0.03);
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold-light);
    }

    .feature-card .feature-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: var(--gold-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
      transition: var(--transition);
    }

    .feature-card:hover .feature-icon {
      background: var(--gold);
      color: #fff;
    }

    .feature-card .feature-content h4 {
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 4px;
      color: var(--text);
    }

    .feature-card .feature-content p {
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.5;
      margin: 0;
    }

    @media (max-width: 600px) {
      .features-grid-expanded {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .feature-card {
        padding: 16px 18px;
      }
    }
    

    
    /* ============================================================
  HOW IT WORKS — PERFECT ALIGNMENT
  ============================================================ */

/* Main Wrapper - Equal height columns */
.how-it-works-wrapper {
  display: flex;
  gap: 48px;
  margin: 32px 0 40px;
  align-items: stretch;
  min-height: 580px;
}

@media (max-width: 900px) {
  .how-it-works-wrapper {
    flex-direction: column;
    gap: 32px;
    min-height: auto;
  }
}

/* ============================================================
  LEFT COLUMN: VIDEO
  ============================================================ */
/* ============================================================
  HOW IT WORKS VIDEO - WITH AUTOPLAY
  ============================================================ */
.how-it-works-video {
    flex: 0 0 45%;
    display: flex;
    align-items: stretch;
    min-height: 520px;
}

@media (max-width: 900px) {
    .how-it-works-video {
        flex: 1 1 auto;
        min-height: 350px;
        order: -1;
    }
}

@media (max-width: 600px) {
    .how-it-works-video {
        min-height: 280px;
    }
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay - visible initially, fades after video starts */
.video-container .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.35);
    transition: opacity 0.8s ease, visibility 0.8s ease;
    cursor: pointer;
    gap: 12px;
    z-index: 2;
}

/* Hide overlay when video is playing */
.video-container .video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Hide overlay on autoplay start (after first play) */
.video-container .video-overlay.playing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-container .video-overlay .play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.video-container .video-overlay .play-btn:hover {
    transform: scale(1.08);
    background: #fff;
}

.video-container .video-overlay .video-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 16px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

/* ============================================================
  HOW IT WORKS VIDEO - PHONE VIEW
  ============================================================ */
@media (max-width: 768px) {
    .how-it-works-video {
        flex: 1 1 auto;
        min-height: 240px;
        order: -1;
        margin: 0 -16px;
        width: calc(100% + 32px);
    }
    
    .video-container {
        border-radius: 0;
        box-shadow: none;
    }
    
    .video-container .video-overlay .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .video-container .video-overlay .video-label {
        font-size: 0.6rem;
        padding: 4px 14px;
    }
}

@media (max-width: 400px) {
    .how-it-works-video {
        min-height: 200px;
    }
}

/* ============================================================
  RIGHT COLUMN: STEPS
  ============================================================ */
.how-it-works-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 0;
  min-height: 520px;
}

@media (max-width: 900px) {
  .how-it-works-steps {
    min-height: auto;
    padding: 0;
  }
}

/* Steps Header */
.steps-header {
  margin-bottom: 16px;
}

.steps-header .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
  color: var(--text);
}

.steps-header .section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 600px) {
  .steps-header .section-title {
    font-size: 1.8rem;
  }
  .steps-header .section-subtitle {
    font-size: 0.9rem;
  }
}

/* ============================================================
  STEPS TIMELINE
  ============================================================ */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding: 4px 0;
}

/* Vertical connecting line */
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold), var(--gold-light));
  border-radius: 4px;
  opacity: 0.3;
}

body.rtl .steps-timeline::before {
  left: auto;
  right: 19px;
}

/* Individual Step */
.step-timeline {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 0;
  position: relative;
}

/* Marker (Number + Dot) */
.step-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  position: relative;
  z-index: 2;
}

.step-timeline-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--bg);
  padding: 0 4px;
  line-height: 1;
}

body.rtl .step-timeline-number {
  font-family: 'Cairo', sans-serif;
}

.step-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--gold-pale);
  margin-top: 3px;
  box-shadow: 0 0 0 4px var(--bg);
  transition: var(--transition);
  flex-shrink: 0;
}

.step-timeline:hover .step-timeline-dot {
  transform: scale(1.25);
  background: var(--gold-light);
  box-shadow: 0 0 0 6px var(--bg), 0 0 20px rgba(180, 139, 90, 0.15);
}

/* Step Content */
.step-timeline-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 26, 26, 0.03);
  flex: 1;
  transition: var(--transition);
}

.step-timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
  transform: translateX(6px);
}

body.rtl .step-timeline-content:hover {
  transform: translateX(-6px);
}

@media (max-width: 600px) {
  .step-timeline-content:hover {
    transform: translateX(0px);
  }
  body.rtl .step-timeline-content:hover {
    transform: translateX(0px);
  }
}

.step-timeline-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 2px;
  transition: var(--transition);
}

.step-timeline-content:hover .step-timeline-icon {
  background: var(--gold);
  color: #fff;
}

.step-timeline-content h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1px;
  color: var(--text);
}

.step-timeline-content .step-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin: 0 0 3px 0;
  line-height: 1.4;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 1px;
}

.step-tags span {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 400;
  background: var(--bg);
  padding: 1px 8px 1px 6px;
  border-radius: 40px;
  border: 1px solid rgba(26, 26, 26, 0.04);
}

/* ============================================================
  MOBILE ADJUSTMENTS
  ============================================================ */
@media (max-width: 600px) {
  .steps-timeline::before {
    left: 14px;
  }
  body.rtl .steps-timeline::before {
    right: 14px;
    left: auto;
  }
  .step-timeline-marker {
    width: 30px;
  }
  .step-timeline-number {
    font-size: 0.9rem;
  }
  .step-timeline-dot {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
  .step-timeline-content {
    flex-direction: column;
    padding: 10px 12px;
    gap: 4px;
  }
  .step-timeline-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .step-timeline-content h4 {
    font-size: 0.85rem;
  }
  .step-timeline-content .step-desc {
    font-size: 0.75rem;
  }
  .step-tags span {
    font-size: 0.55rem;
    padding: 1px 6px;
  }
  .video-container .video-overlay .play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .video-container .video-overlay .video-label {
    font-size: 0.65rem;
  }
}




/* ============================================================
  PHONE VIEW — ELEGANT & FULL WIDTH
  ============================================================ */

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* ============================================================
       HERO - PHONE VIEW
    ============================================================ */
    .hero {
        padding: 30px 0 50px;
        gap: 30px;
    }

    .hero-content .badge {
        font-size: 0.55rem;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 28px;
        max-width: 100%;
    }

    /* Hero Image - Full width, no radius on phone */
    .hero-image-wrapper {
        border-radius: 0;
        aspect-ratio: 4/3;
        margin: 0 -16px;
        width: calc(100% + 32px);
        box-shadow: none;
    }

    .hero-image-wrapper:hover {
        transform: none;
        box-shadow: none;
    }

    /* ============================================================
       VIDEO SECTION - PHONE VIEW
    ============================================================ */
    .video-section {
        border-radius: 0;
        margin: 40px 0 30px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
        box-shadow: none;
        border: none;
    }

    .video-section video {
        aspect-ratio: 16/9;
    }

    .video-section .video-overlay .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .video-section .video-label {
        bottom: 16px;
        left: 16px;
        font-size: 0.65rem;
        padding: 6px 16px;
    }
    body.rtl .video-section .video-label {
        left: auto;
        right: 16px;
    }

    /* ============================================================
       HOW IT WORKS VIDEO - PHONE VIEW
    ============================================================ */
    .how-it-works-wrapper {
        flex-direction: column;
        gap: 24px;
        min-height: auto;
        margin: 20px 0 30px;
    }

    .how-it-works-video {
        flex: 1 1 auto;
        min-height: 240px;
        order: -1;
        margin: 0 -16px;
        width: calc(100% + 32px);
    }

    .video-container {
        border-radius: 0;
        box-shadow: none;
    }

    .video-container .video-overlay .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .video-container .video-overlay .video-label {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    .how-it-works-steps {
        min-height: auto;
        padding: 0;
    }

    .steps-header .section-title {
        font-size: 1.8rem;
    }

    .steps-header .section-subtitle {
        font-size: 0.85rem;
    }

    /* ============================================================
       GALLERY - PHONE VIEW
    ============================================================ */
    .gallery-grid {
        gap: 12px;
        margin: 24px 0 30px;
    }

    .gallery-item {
        border-radius: var(--radius-sm);
    }

    .gallery-item:hover {
        transform: none;
    }

    /* ============================================================
       MODELS - PHONE VIEW
    ============================================================ */
    .models-grid {
        gap: 24px;
        margin: 24px 0 20px;
        max-width: 100%;
    }

    .model-card {
        padding: 24px 20px 20px;
        border-radius: var(--radius-md);
    }

    .model-card:hover {
        transform: translateY(-4px);
    }

    .model-card .model-name {
        font-size: 1.6rem;
    }

    .model-card .model-image {
        border-radius: var(--radius-sm);
        margin: 8px 0 12px;
    }

    .model-card .model-image .zoom-hint {
        bottom: 8px;
        right: 8px;
        font-size: 0.55rem;
        padding: 4px 10px;
    }
    body.rtl .model-card .model-image .zoom-hint {
        right: auto;
        left: 8px;
    }

    .model-card .model-dimensions {
        padding: 10px 14px;
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 4px;
    }

    .model-card .model-price {
        font-size: 1.6rem;
        margin: 4px 0 14px;
    }

    .model-card .model-actions .btn-primary {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    @media (max-width: 600px) {
    .model-card .model-actions {
        flex-direction: column;
        gap: 10px;
    }

    .model-card .model-actions .btn-primary,
    .model-card .model-actions .btn-secondary {
        flex: none;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.85rem;
    }
}

    /* ============================================================
       FEATURES - PHONE VIEW
    ============================================================ */
    .features-grid-expanded {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 16px 0 30px;
    }

    .feature-card {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
    }

    .feature-card:hover {
        transform: translateY(-2px);
    }

    .feature-card .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .feature-card .feature-content h4 {
        font-size: 0.85rem;
    }

    .feature-card .feature-content p {
        font-size: 0.75rem;
    }

    /* ============================================================
       WHY DARDESK - PHONE VIEW
    ============================================================ */
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin: 24px 0 40px;
    }

    .why-card {
        padding: 24px 16px;
        border-radius: var(--radius-sm);
    }

    .why-card:hover {
        transform: translateY(-4px);
    }

    .why-card .icon-wrap {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .why-card h4 {
        font-size: 0.9rem;
    }

    .why-card p {
        font-size: 0.75rem;
    }

    /* ============================================================
       STEPS - PHONE VIEW
    ============================================================ */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 24px 0 30px;
    }

    .step-card {
        padding: 20px 12px;
        border-radius: var(--radius-sm);
    }

    .step-card:hover {
        transform: translateY(-3px);
    }

    .step-card .step-num {
        font-size: 2rem;
    }

    .step-card .step-label {
        font-size: 0.85rem;
    }

    .step-card .step-desc {
        font-size: 0.7rem;
    }

    /* ============================================================
       REVIEWS - PHONE VIEW
    ============================================================ */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 20px 24px;
        margin: 30px 0 30px;
        border-radius: var(--radius-md);
    }

    .review-card {
        padding: 16px 18px;
        margin-bottom: 12px;
        border-left-width: 3px;
    }
    body.rtl .review-card {
        border-right-width: 3px;
    }

    .review-card:hover {
        transform: translateX(2px);
    }
    body.rtl .review-card:hover {
        transform: translateX(-2px);
    }

    .review-card .reviewer .avatar {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .review-card .reviewer .name {
        font-size: 0.85rem;
    }

    .review-card .review-text {
        font-size: 0.85rem;
        padding-left: 0;
    }

    .review-card .review-text::before,
    .review-card .review-text::after {
        font-size: 1rem;
    }

    .reviews-summary {
        gap: 12px;
        padding-top: 12px;
        margin-top: 16px;
    }

    .reviews-summary .rating .number {
        font-size: 1.3rem;
    }

    .reviews-summary .rating .stars {
        font-size: 0.8rem;
        gap: 2px;
    }

    .reviews-summary .count {
        font-size: 0.75rem;
    }

    .reviews-summary .google-badge {
        font-size: 0.65rem;
        padding: 3px 10px 3px 8px;
    }

    .qr-section {
        padding: 0;
    }

    .qr-section .qr-badge {
        font-size: 0.55rem;
        padding: 4px 14px;
    }

    .qr-section h3 {
        font-size: 1.4rem;
    }

    .qr-section .sub {
        font-size: 0.85rem;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .qr-section .qr-wrapper {
        padding: 14px;
        margin-bottom: 12px;
    }

    .qr-section .qr-wrapper img {
        width: 140px;
        height: 140px;
    }

    .qr-section .scan-hint {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .qr-section .divider {
        max-width: 100%;
        gap: 12px;
        margin: 0 0 14px 0;
    }

    .qr-section .divider .or {
        font-size: 0.6rem;
    }

    .qr-section .review-btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    /* ============================================================
       CONTACT - PHONE VIEW
    ============================================================ */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 24px 0 30px;
    }

    .contact-info .contact-item {
        padding: 8px 14px;
        gap: 14px;
        margin-bottom: 12px;
    }

    .contact-info .contact-item i {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .contact-info .contact-item .label {
        font-size: 0.7rem;
    }

    .faq-item {
        padding: 14px 0;
    }

    .faq-item .faq-question {
        font-size: 0.9rem;
    }

    .faq-item .faq-answer {
        font-size: 0.85rem;
        padding-right: 0;
    }
    body.rtl .faq-item .faq-answer {
        padding-left: 0;
    }

    /* ============================================================
       FOOTER - PHONE VIEW
    ============================================================ */
    footer {
        flex-direction: column;
        text-align: center;
        padding: 24px 0 28px;
        gap: 12px;
        font-size: 0.75rem;
    }

    footer .footer-links {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    footer .footer-social {
        gap: 14px;
        margin-left: 0 !important;
    }

    /* ============================================================
       SECTION TITLES - PHONE VIEW
    ============================================================ */
    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    /* ============================================================
       BUTTONS - PHONE VIEW
    ============================================================ */
    .btn-primary,
    .btn-whatsapp {
        padding: 14px 28px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .btn-outline {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    /* ============================================================
       NAVIGATION - PHONE VIEW
    ============================================================ */
    .navbar {
        padding: 14px 0;
        gap: 10px;
    }

    .navbar-left {
        gap: 16px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo::after {
        width: 20px;
    }

    .lang-dropdown .selected {
        padding: 6px 12px;
        font-size: 0.6rem;
    }

    .nav-links {
        gap: 0.6rem;
        padding: 16px 0;
        font-size: 0.75rem;
    }

    /* ============================================================
       WHATSAPP FLOAT - PHONE VIEW
    ============================================================ */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 16px;
        right: 16px;
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    }
    body.rtl .whatsapp-float {
        right: auto;
        left: 16px;
    }

    .whatsapp-float:hover {
        transform: scale(1.05);
    }

    /* ============================================================
       LIGHTBOX - PHONE VIEW
    ============================================================ */
    .lightbox-overlay {
        padding: 16px;
    }

    .lightbox-overlay .lightbox-content {
        max-width: 100vw;
        max-height: 80vh;
        border-radius: var(--radius-sm);
    }

    .lightbox-overlay .close-btn {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    body.rtl .lightbox-overlay .close-btn {
        right: auto;
        left: 16px;
    }

    .lightbox-overlay .counter {
        bottom: 16px;
        font-size: 0.65rem;
        padding: 4px 16px;
    }

    .lightbox-overlay .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 6px;
    }

    .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;
    }

    /* ============================================================
       UPSELL MODAL - PHONE VIEW
    ============================================================ */
    .upsell-container {
        border-radius: var(--radius-md);
        max-height: 95vh;
        padding: 0;
    }

    .upsell-header {
        padding: 20px 20px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .upsell-header-content h2 {
        font-size: 1.4rem;
    }

    .upsell-badge {
        font-size: 0.55rem;
        padding: 3px 12px;
    }

    .upsell-subtitle {
        font-size: 0.8rem;
    }

    .upsell-price-display {
        text-align: left;
        width: 100%;
    }
    body.rtl .upsell-price-display {
        text-align: right;
    }

    .upsell-price-value {
        font-size: 1.6rem;
    }

    .upsell-body {
        padding: 12px 16px 8px;
    }

    .upsell-section {
        padding: 14px 16px;
        margin-bottom: 16px;
    }

    .upsell-section-header {
        gap: 12px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    .upsell-section-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .upsell-section-info h4 {
        font-size: 0.85rem;
    }
    .upsell-section-info p {
        font-size: 0.75rem;
    }

    .upsell-section-price {
        font-size: 0.75rem;
        padding: 2px 10px;
    }

    .upsell-options-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .upsell-option {
        padding: 10px 14px;
        gap: 10px;
    }

    .upsell-option .upsell-option-title {
        font-size: 0.8rem;
    }
    .upsell-option .upsell-option-desc {
        font-size: 0.65rem;
    }
    .upsell-option .upsell-option-price {
        font-size: 0.75rem;
    }

    .upsell-colors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .upsell-color-option {
        padding: 8px 4px;
    }

    .upsell-color-swatch {
        width: 36px;
        height: 36px;
    }

    .upsell-color-name {
        font-size: 0.6rem;
    }

    .upsell-note {
        font-size: 0.65rem;
        padding: 8px 12px;
    }

    .upsell-footer {
        padding: 16px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .upsell-footer-info {
        align-items: center;
        text-align: center;
    }

    .upsell-footer-total {
        justify-content: center;
    }

    .upsell-total-price {
        font-size: 1.6rem;
    }

    .upsell-footer-actions {
        flex-direction: column;
    }

    .upsell-btn-upsell {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .upsell-close {
        top: 8px;
        margin: 8px 8px 0 0;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    body.rtl .upsell-close {
        margin: 8px 0 0 8px;
    }

    /* ============================================================
       SEO CONTENT - Hide on phone (already hidden)
    ============================================================ */
    #seo-content {
        display: none !important;
    }
}

/* ============================================================
  EXTRA SMALL PHONES (max-width: 400px)
  ============================================================ */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }

    .hero-image-wrapper {
        margin: 0 -12px;
        width: calc(100% + 24px);
        aspect-ratio: 3/2.5;
    }

    .video-section {
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
    }

    .how-it-works-video {
        margin: 0 -12px;
        width: calc(100% + 24px);
    }

    .hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .models-grid {
        gap: 16px;
    }

    .model-card {
        padding: 18px 14px 16px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .why-card {
        padding: 18px 12px;
    }

    .why-card .icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .step-card {
        padding: 14px 10px;
    }

    .step-card .step-num {
        font-size: 1.6rem;
    }

    .reviews-grid {
        padding: 20px 14px 18px;
        gap: 20px;
        margin: 20px 0 20px;
    }

    .review-card {
        padding: 12px 14px;
    }

    .qr-section .qr-wrapper img {
        width: 120px;
        height: 120px;
    }

    .qr-section .qr-wrapper {
        padding: 10px;
    }

    .qr-section .review-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .features-grid-expanded {
        gap: 8px;
    }

    .feature-card {
        padding: 12px 14px;
    }

    .gallery-grid {
        gap: 8px;
    }
}



/* ============================================================
  GALLERY - LUXURY
  ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0 50px;
}

.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-smooth);
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(201, 168, 124, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================================
  GALLERY - PHONE VIEW (2 photos per row)
  ============================================================ */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 24px 0 30px;
    }
    
    .gallery-item {
        border-radius: var(--radius-sm);
        aspect-ratio: 1/1;
    }
    
    .gallery-item:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    
    .gallery-item:hover img {
        transform: none;
    }
    
    .gallery-item::after {
        opacity: 0;
    }
}

/* ============================================================
  GALLERY - EXTRA SMALL PHONES (max-width: 400px)
  ============================================================ */
@media (max-width: 400px) {
    .gallery-grid {
        gap: 8px;
        margin: 16px 0 20px;
    }
    
    .gallery-item {
        border-radius: var(--radius-sm);
    }
}

/* ============================================================
  GALLERY - TABLET VIEW (769px - 1024px)
  ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* ============================================================
  FEATURES — CAROUSEL WITH AUTOPLAY (NO ARROWS)
  ============================================================ */

/* Header - removed navigation */
.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0;
}

/* No navigation buttons needed */

/* Carousel Wrapper */
.features-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin: 16px 0 20px;
    border-radius: var(--radius-md);
}

.features-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.features-slide {
    display: grid;
    flex: 0 0 100%;
    gap: 20px;
    padding: 4px 0;
}

/* Feature Cards */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 26, 26, 0.03);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.feature-card .feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: #fff;
}

.feature-card .feature-content h4 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text);
}

.feature-card .feature-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

/* Dots Indicator */
.features-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 8px 0 10px;
}

.features-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.25;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.features-dots .dot.active {
    opacity: 1;
    background: var(--gold);
    transform: scale(1.2);
}

.features-dots .dot:hover {
    opacity: 0.6;
}

.features-dots .dot.active:hover {
    opacity: 1;
}

/* ============================================================
  FEATURES CAROUSEL - RESPONSIVE
  ============================================================ */

/* Desktop: 4 items per slide */
@media (min-width: 1025px) {
    .features-slide {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Tablet: 3 items per slide */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-slide {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .feature-card {
        padding: 16px 18px;
    }
}

/* Phone: 1 item per slide (swipeable) */
@media (max-width: 768px) {
    .features-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .features-slide {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .feature-card {
        padding: 16px 18px;
        border-radius: var(--radius-sm);
    }
    
    .feature-card .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .feature-card .feature-content h4 {
        font-size: 0.85rem;
    }
    
    .feature-card .feature-content p {
        font-size: 0.8rem;
    }
    
    .features-dots {
        gap: 8px;
    }
    
    .features-dots .dot {
        width: 8px;
        height: 8px;
    }
}

/* Extra Small Phones */
@media (max-width: 400px) {
    .feature-card {
        padding: 14px 14px;
    }
    
    .feature-card .feature-icon {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* Logo */

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}
.logo-area img {
    height: clamp(25px, 5vw, 35px);
    width: auto;
    display: block;
    margin: 8px 0;
}