﻿/* ============================================================
   DECORILLA - Luxury Event Planning | styles.css
   Author: Decorilla Dev Team
   Description: Main stylesheet - All variables, themes, 
                Bootstrap overrides, and custom components
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/cairo/Cairo-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/cairo/Cairo-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/cairo/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/cairo/Cairo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/cairo/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/cairo/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/cairo/Cairo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/cairo/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
}
/* ============================================================
   2. CSS VARIABLES - LIGHT & DARK THEMES
   ============================================================ */
:root {
    /* Brand Colors */
    --primary: #222c4e;
    --primary-dark: #161d36;
    --primary-light: #2e3d6b;
    --accent: #f1e1d4;
    --accent-dark: #dfc8b4;
    --accent-light: #f8f0ea;
    --gold: #c9a96e;
    --gold-light: #e8c98a;
    /* Neutral Colors */
    --bg-light: #F5F7FA;
    --bg-card: #ffffff;
    --bg-section-alt: #f0f3f8;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(34, 44, 78, 0.08);
    --shadow-md: 0 8px 24px rgba(34, 44, 78, 0.12);
    --shadow-lg: 0 20px 48px rgba(34, 44, 78, 0.16);
    --shadow-hover: 0 16px 40px rgba(34, 44, 78, 0.20);
    /* Typography */
    --font-main: 'Cairo', sans-serif;
    --font-size-base: 16px;
    --line-height: 1.75;
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    /* Navbar Height */
    --navbar-height: 80px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-light: #0f1220;
    --bg-card: #1a2035;
    --bg-section-alt: #141929;
    --text-dark: #f0f4ff;
    --text-muted: #9ba8c4;
    --text-light: #6b7a9e;
    --border-color: #2a3454;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 16px 40px rgba(201, 169, 110, 0.15);
}

/* ============================================================
   3. BASE RESET & GLOBAL STYLES
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
    /* FIX: منع الـ horizontal scroll من أصله */
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    direction: rtl;
    text-align: right;
    line-height: var(--line-height);
    transition: background-color var(--transition-base), color var(--transition-base);
    /* FIX: إجبار الـ body إنه ميعديش الشاشة */
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    transition: all var(--transition-base);
}

/* ============================================================
   5. SECTION TITLES - SHARED COMPONENT
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid var(--accent-dark);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

[data-theme="dark"] .section-title {
    color: var(--gold-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-dark));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
    font-family: var(--font-main);
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0.65rem 1.8rem;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.12);
        opacity: 0;
        transition: opacity var(--transition-fast);
    }

    .btn:hover::before {
        opacity: 1;
    }

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(34, 44, 78, 0.35);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 44, 78, 0.45);
        color: #fff;
    }

/* Accent Button */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 15px rgba(241, 225, 212, 0.5);
}

    .btn-accent:hover {
        background: linear-gradient(135deg, var(--accent-dark), var(--gold));
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
        color: var(--primary);
    }

/* Outline Button */
.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

[data-theme="dark"] .btn-outline-primary {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

    [data-theme="dark"] .btn-outline-primary:hover {
        background: var(--gold);
        color: var(--primary);
        border-color: var(--gold);
    }

.btn-lg {
    padding: 0.85rem 2.4rem;
    font-size: 1.05rem;
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar-decorilla {
    background: rgba(34, 44, 78, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* FIX: بدل height fixed استخدم padding عشان الموبايل ميبوظش */
    padding: 0 0;
    min-height: var(--navbar-height);
    position: fixed;
    top: 0;
    /* FIX: width 100% بدون overflow */
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

    /* FIX: الـ container جوا الناف بار */
    .navbar-decorilla > .container {
        min-height: var(--navbar-height);
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar-decorilla.scrolled {
        min-height: 65px;
        background: rgba(34, 44, 78, 0.99);
        box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    }

        .navbar-decorilla.scrolled > .container {
            min-height: 65px;
        }

    .navbar-decorilla .navbar-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #fff;
        font-size: 1.6rem;
        font-weight: 900;
        letter-spacing: -0.5px;
        /* FIX: منع الـ brand من الانضغاط */
        flex-shrink: 0;
    }

    .navbar-decorilla .brand-icon {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, var(--gold), var(--accent-dark));
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--primary);
        flex-shrink: 0;
        transition: transform var(--transition-base);
    }

    .navbar-decorilla .navbar-brand:hover .brand-icon {
        transform: rotate(-5deg) scale(1.05);
    }

    .navbar-decorilla .brand-text span {
        color: var(--gold-light);
    }

    .navbar-decorilla .nav-link {
        color: rgba(255,255,255,0.82) !important;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.5rem 0.9rem !important;
        border-radius: var(--radius-sm);
        transition: all var(--transition-fast);
        position: relative;
    }

        .navbar-decorilla .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            right: 0.9rem;
            left: 0.9rem;
            height: 2px;
            background: var(--gold-light);
            border-radius: var(--radius-full);
            transform: scaleX(0);
            transition: transform var(--transition-base);
        }

        .navbar-decorilla .nav-link:hover,
        .navbar-decorilla .nav-link.active {
            color: #fff !important;
        }

            .navbar-decorilla .nav-link:hover::after,
            .navbar-decorilla .nav-link.active::after {
                transform: scaleX(1);
            }

    .navbar-decorilla .nav-cta {
        background: linear-gradient(135deg, var(--gold), var(--accent-dark));
        color: var(--primary) !important;
        font-weight: 800;
        padding: 0.45rem 1.3rem !important;
        border-radius: var(--radius-full);
        margin-right: 0.5rem;
    }

        .navbar-decorilla .nav-cta::after {
            display: none;
        }

        .navbar-decorilla .nav-cta:hover {
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(201,169,110,0.4);
        }

/* Theme Toggle */
.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1rem;
    flex-shrink: 0;
}

    .theme-toggle:hover {
        background: rgba(201,169,110,0.2);
        color: var(--gold-light);
        border-color: rgba(201,169,110,0.3);
    }

/* Mobile Toggler */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    /* FIX: تأكيد مكانه في الـ RTL */
    margin-right: auto;
    margin-left: 0;
    flex-shrink: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   FIX MOBILE NAVBAR COLLAPSE
   ============================================================ */
@media (max-width: 991px) {
    /* FIX: الـ navbar نفسه */
    .navbar-decorilla {
        min-height: 65px;
    }

        .navbar-decorilla > .container {
            min-height: 65px;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            /* FIX: الـ items تتوزع صح في الموبايل */
            flex-wrap: nowrap;
            justify-content: space-between;
        }

    /* FIX: الـ toggler يبقى على الشمال (RTL = شمال) */
    .navbar-toggler {
        margin-right: auto;
        margin-left: 0;
        order: 3;
    }

    /* FIX: الـ brand على اليمين */
    .navbar-decorilla .navbar-brand {
        order: 1;
        font-size: 1.3rem;
    }

    .navbar-decorilla .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* FIX: الـ collapse يبقى full width تحت الناف بار */
    .navbar-decorilla .navbar-collapse {
        background: rgba(22, 29, 54, 0.99);
        border-radius: var(--radius-md);
        margin-top: 0.5rem;
        padding: 1rem;
        border: 1px solid rgba(201,169,110,0.2);
        backdrop-filter: blur(20px);
        /* FIX: يمتد لكامل العرض */
        width: 100%;
        order: 4;
        /* FIX: يمنع الـ overflow */
        overflow: hidden;
    }

    /* FIX: الـ nav links تبقى vertical */
    .navbar-decorilla .navbar-nav {
        flex-direction: column !important;
        gap: 0.25rem !important;
        width: 100%;
    }

    .navbar-decorilla .nav-link {
        padding: 0.65rem 1rem !important;
        border-radius: var(--radius-sm);
        width: 100%;
        display: block;
    }

    /* FIX: أزرار الـ CTA في الموبايل */
    .navbar-decorilla .navbar-collapse .d-flex {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    /* FIX: إخفاء الـ underline effect في الموبايل */
    .navbar-decorilla .nav-link::after {
        display: none;
    }
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    padding-top: var(--navbar-height);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(201,169,110,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(241,225,212,0.1) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.35);
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-title {
    color: #fff;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

    .hero-title .highlight {
        background: linear-gradient(135deg, var(--gold-light), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-description {
    color: rgba(255,255,255,0.75);
    font-size: 1.12rem;
    margin-bottom: 2.2rem;
    max-width: 540px;
    line-height: 1.85;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

    .hero-stat .stat-number {
        font-size: 2rem;
        font-weight: 900;
        color: var(--gold-light);
        line-height: 1;
        display: block;
    }

    .hero-stat .stat-label {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.6);
        margin-top: 0.25rem;
    }

/* Hero Image Side */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* FIX: منع الـ floating cards من تسبب overflow */
    padding: 1.5rem;
}

.hero-image-main {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 2px solid rgba(201,169,110,0.25);
}

    .hero-image-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    /* FIX: منع الـ card من الاتمدد */
    white-space: nowrap;
    z-index: 3;
}

[data-theme="dark"] .hero-floating-card {
    background: rgba(26, 32, 53, 0.95);
    border-color: rgba(201,169,110,0.3);
}

/* FIX: كروت بتاخد مكانها جوا الـ wrap مش بره */
.hero-floating-card.card-1 {
    bottom: 0;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    top: 0;
    left: 0;
    animation: float 3.5s ease-in-out infinite reverse;
}

.hero-floating-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-floating-card .card-text h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}

[data-theme="dark"] .hero-floating-card .card-text h6 {
    color: var(--gold-light);
}

.hero-floating-card .card-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

    .scroll-indicator .scroll-line {
        width: 1.5px;
        height: 35px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    }

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

    .about-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

    .about-img-main:hover img {
        transform: scale(1.03);
    }

.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 140px;
}

    .about-img-badge .badge-number {
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--gold-light);
        line-height: 1;
        display: block;
    }

    .about-img-badge .badge-text {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.8);
        margin-top: 0.3rem;
    }

.about-content {
    padding-right: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

    .about-feature-item:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow-sm);
        transform: translateX(-4px);
    }

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature-item h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.2rem;
}

[data-theme="dark"] .about-feature-item h6 {
    color: var(--gold-light);
}

.about-feature-item p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

@media (max-width: 767px) {
    .about-content {
        padding-right: 0;
        margin-top: 3rem;
    }

    .about-img-badge {
        left: 1rem;
        bottom: -1rem;
    }
}

/* ============================================================
   10. SERVICES CARDS
   ============================================================ */
.services-section {
    padding: 6rem 0;
    background: var(--bg-section-alt);
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--gold), var(--accent-dark));
        transform: scaleX(0);
        transition: transform var(--transition-base);
        transform-origin: right;
    }

    .service-card:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(201,169,110,0.3);
    }

.service-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

    .service-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,29,54,0.6), transparent);
}

.service-card-body {
    padding: 1.5rem;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold-light);
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

[data-theme="dark"] .service-card-title {
    color: var(--gold-light);
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .service-card-link {
    color: var(--gold);
}

.service-card-link:hover {
    gap: 0.7rem;
    color: var(--gold);
}

/* ============================================================
   11. PRODUCTS GRID & PRICING
   ============================================================ */
.products-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.product-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.45rem 1.4rem;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

    .filter-btn:hover, .filter-btn.active {
        border-color: var(--primary);
        background: var(--primary);
        color: #fff;
    }

[data-theme="dark"] .filter-btn {
    border-color: var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
}

    [data-theme="dark"] .filter-btn:hover,
    [data-theme="dark"] .filter-btn.active {
        border-color: var(--gold);
        background: var(--gold);
        color: var(--primary);
    }

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(201,169,110,0.3);
    }

/* Product Badge */
.product-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.badge-bestseller {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: #fff;
}

.badge-discount {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.badge-new {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: #fff;
}

/* Product Image */
.product-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

    .product-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.product-card:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22,29,54,0.5);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.product-card:hover .product-img-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    transform: translateY(10px);
    opacity: 0;
}

.product-card:hover .overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

    .product-card:hover .overlay-btn:nth-child(2) {
        transition-delay: 0.05s;
    }

.overlay-btn:hover {
    background: var(--gold);
    color: #fff;
}

/* Product Body */
.product-body {
    padding: 1.3rem;
}

.product-category {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

[data-theme="dark"] .product-name {
    color: var(--gold-light);
}

.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-discounted {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
}

[data-theme="dark"] .price-discounted {
    color: var(--gold-light);
}

.price-save {
    font-size: 0.75rem;
    background: rgba(231,76,60,0.1);
    color: #e74c3c;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.product-add-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.6rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

[data-theme="dark"] .product-add-btn {
    border-color: var(--gold);
    color: var(--gold);
}

.product-add-btn:hover {
    background: var(--primary);
    color: #fff;
}

[data-theme="dark"] .product-add-btn:hover {
    background: var(--gold);
    color: var(--primary);
}

/* ============================================================
   12. GALLERY MASONRY
   ============================================================ */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-section-alt);
}

.gallery-masonry {
    columns: 4;
    column-gap: 1rem;
}

@media (max-width: 1199px) {
    .gallery-masonry {
        columns: 3;
    }
}

@media (max-width: 767px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 479px) {
    .gallery-masonry {
        columns: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

    .gallery-item img {
        width: 100%;
        display: block;
        transition: transform var(--transition-slow);
    }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,29,54,0.7), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    backdrop-filter: blur(8px);
}

    .lightbox.active {
        opacity: 1;
        pointer-events: all;
    }

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

    .lightbox-content img {
        max-width: 90vw;
        max-height: 88vh;
        object-fit: contain;
        display: block;
    }

.lightbox-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

    .lightbox-close:hover {
        background: rgba(255,255,255,0.25);
    }

.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 1;
}

.lightbox-prev {
    right: 1.5rem;
}

.lightbox-next {
    left: 1.5rem;
}

    .lightbox-prev:hover, .lightbox-next:hover {
        background: rgba(201,169,110,0.3);
        border-color: var(--gold);
    }

/* ============================================================
   13. REVIEWS / RATING DASHBOARD
   ============================================================ */
.reviews-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* Rating Overview Card */
.rating-overview {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .rating-overview::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(201,169,110,0.1);
    }

.rating-score {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    display: block;
    margin: 1rem 0 0.5rem;
}

.rating-stars-lg {
    font-size: 1.6rem;
    color: var(--gold-light);
    letter-spacing: 3px;
    margin: 0.5rem 0;
}

.rating-count-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.rating-distribution {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dist-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
}

.dist-label {
    color: rgba(255,255,255,0.8);
    min-width: 45px;
    text-align: right;
}

.dist-bar-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.dist-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.dist-count {
    color: rgba(255,255,255,0.6);
    min-width: 25px;
}

/* Category Rating Card */
.category-rating-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

    .category-rating-card:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow-md);
    }

.cat-rating-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.cat-rating-header h6 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 0.2rem;
}

[data-theme="dark"] .cat-rating-header h6 {
    color: var(--gold-light);
}

.cat-score {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.rating-progress {
    height: 8px;
    background: var(--bg-section-alt);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.rating-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: var(--radius-full);
    transition: width 1.2s ease;
}

.cat-stars {
    font-size: 0.85rem;
    color: var(--gold);
}

/* Star Rating Input */
.star-input-wrap {
    display: flex;
    gap: 0.3rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

    .star-input-wrap input {
        display: none;
    }

    .star-input-wrap label {
        font-size: 1.6rem;
        color: var(--border-color);
        cursor: pointer;
        transition: color var(--transition-fast);
    }

        .star-input-wrap label:hover,
        .star-input-wrap label:hover ~ label,
        .star-input-wrap input:checked ~ label {
            color: var(--gold);
        }

/* Review Cards */
.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
}

    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(201,169,110,0.3);
    }

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

    .reviewer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 0.2rem;
}

[data-theme="dark"] .reviewer-name {
    color: var(--gold-light);
}

.reviewer-event {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.review-verified {
    font-size: 0.78rem;
    color: #27ae60;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* Write Review Form */
.write-review-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   14. CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-section-alt);
}

/* Floating Label Override */
.form-floating > .form-control,
.form-floating > .form-select {
    font-family: var(--font-main);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    padding-right: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    font-size: 0.95rem;
}

    .form-floating > .form-control:focus,
    .form-floating > .form-select:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
        background: var(--bg-card);
        color: var(--text-dark);
    }

.form-floating > label {
    font-family: var(--font-main);
    color: var(--text-muted);
    right: 0;
    left: auto;
    padding-right: 1rem;
    font-size: 0.9rem;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .contact-info-card::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 200px;
        height: 200px;
        background: rgba(201,169,110,0.08);
        border-radius: 50%;
    }

.contact-info-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.contact-item-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

    .social-btn:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--primary);
        transform: translateY(-3px);
    }

/* Map */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

    .map-wrap iframe {
        display: block;
        width: 100%;
        height: 280px;
        border: none;
    }

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

    .footer-brand-name span {
        color: var(--gold-light);
    }

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 280px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 35px;
        height: 2px;
        background: var(--gold);
        border-radius: var(--radius-full);
    }

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

    .footer-links li a {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all var(--transition-fast);
    }

        .footer-links li a:hover {
            color: var(--gold-light);
            padding-right: 0.5rem;
        }

        .footer-links li a i {
            font-size: 0.7rem;
            color: var(--gold);
        }

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

    .footer-contact-item i {
        color: var(--gold);
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

.footer-newsletter {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

    .footer-newsletter input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        font-family: var(--font-main);
        font-size: 0.88rem;
        padding-right: 0.5rem;
    }

        .footer-newsletter input::placeholder {
            color: rgba(255,255,255,0.4);
        }

    .footer-newsletter button {
        background: var(--gold);
        border: none;
        border-radius: var(--radius-sm);
        color: var(--primary);
        font-family: var(--font-main);
        font-weight: 700;
        font-size: 0.85rem;
        padding: 0.45rem 1rem;
        cursor: pointer;
        transition: background var(--transition-fast);
        white-space: nowrap;
    }

        .footer-newsletter button:hover {
            background: var(--gold-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 0;
    margin-top: 3rem;
}

.footer-bottom-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

    .footer-bottom-links a {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.45);
        transition: color var(--transition-fast);
    }

        .footer-bottom-links a:hover {
            color: var(--gold-light);
        }

/* ============================================================
   16. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    text-decoration: none;
    transition: all var(--transition-base);
    animation: pulse-wa 2.5s ease-in-out infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-3px);
        color: #fff;
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
    }

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    left: calc(100% + 0.75rem);
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 0.8rem;
    font-family: var(--font-main);
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   17. PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a96e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.page-hero-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    position: relative;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    position: relative;
}

    .page-hero-breadcrumb a {
        color: var(--gold-light);
    }

        .page-hero-breadcrumb a:hover {
            color: #fff;
        }

/* ============================================================
   18. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
}

    .back-to-top.visible {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--gold);
        color: var(--primary);
        transform: translateY(-3px);
    }

/* ============================================================
   19. UTILITY CLASSES
   ============================================================ */
.section-py {
    padding: 6rem 0;
}

.bg-primary-custom {
    background: var(--primary);
}

.bg-accent-custom {
    background: var(--accent);
}

.text-primary-custom {
    color: var(--primary) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-muted-custom {
    color: var(--text-muted) !important;
}

.divider-gold {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-dark));
    border-radius: var(--radius-full);
    margin: 1rem auto;
}

/* ============================================================
   20. AOS CUSTOM OVERRIDES
   ============================================================ */
[data-aos] {
    pointer-events: none;
}

    [data-aos].aos-animate {
        pointer-events: auto;
    }

/* ============================================================
   21. RESPONSIVE TWEAKS — COMPREHENSIVE MOBILE FIX
   ============================================================ */

/* ── كل العناصر تبقى جوا الشاشة ── */
img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* ── Bootstrap container fix للـ RTL ── */
.container, .container-fluid {
    overflow-x: clip;
}

/* ── منع أي عنصر من الخروج ── */
section, header, footer, nav, main, article, aside {
    max-width: 100%;
    overflow-x: hidden;
}

/* ════════════════════════════════════════
   TABLET (max 991px)
   ════════════════════════════════════════ */
@media (max-width: 991px) {

    /* Hero */
    .hero-section {
        padding-top: 65px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-image-wrap {
        margin-top: 2.5rem;
        padding: 1rem;
    }

    .hero-image-main {
        max-width: 380px;
    }

    .hero-floating-card {
        display: none;
    }
    /* إخفاء الـ floating cards في الموبايل عشان السبب الرئيسي للـ overflow */
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }

    /* About */
    .about-content {
        padding-right: 0;
    }

    .about-img-badge {
        left: 1rem;
        bottom: -1rem;
    }

    /* Sections */
    .section-py {
        padding: 4rem 0;
    }

    .services-section, .products-section,
    .gallery-section, .reviews-section,
    .contact-section {
        padding: 4rem 0;
    }

    /* Gallery Masonry */
    .gallery-masonry {
        columns: 2;
        column-gap: 0.75rem;
    }

    .gallery-item {
        margin-bottom: 0.75rem;
    }

    /* Products */
    .product-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.82rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 0;
    }

    .footer-bottom-links {
        gap: 1rem;
    }
}

/* ════════════════════════════════════════
   MOBILE (max 767px)
   ════════════════════════════════════════ */
@media (max-width: 767px) {

    /* Root */
    :root {
        --font-size-base: 15px;
        --navbar-height: 65px;
    }

    /* Sections */
    .section-py {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Hero */
    .hero-section {
        padding-top: var(--navbar-height);
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 1.2rem;
        flex-wrap: wrap;
    }

    .hero-stat .stat-number {
        font-size: 1.6rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Buttons — prevent overflow */
    .d-flex.gap-3.flex-wrap .btn {
        width: 100%;
        justify-content: center;
    }

    /* About */
    .about-img-wrap {
        margin-bottom: 3rem;
    }

    .about-img-badge {
        left: 0.75rem;
        bottom: -0.75rem;
        padding: 0.9rem 1.1rem;
        min-width: 110px;
    }

        .about-img-badge .badge-number {
            font-size: 1.7rem;
        }

    .about-content {
        padding-right: 0;
    }

    .about-feature-item {
        padding: 0.85rem;
    }

    .about-features {
        gap: 0.85rem;
    }

    /* Service Cards */
    .service-card-body {
        padding: 1.1rem;
    }

    /* Products */
    .product-body {
        padding: 1rem;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .price-discounted {
        font-size: 1.1rem;
    }

    /* Gallery */
    .gallery-masonry {
        columns: 2;
        column-gap: 0.6rem;
    }

    .gallery-item {
        margin-bottom: 0.6rem;
        border-radius: var(--radius-sm);
    }

    /* Reviews Dashboard */
    .rating-overview {
        padding: 1.8rem 1.3rem;
    }

    .rating-score {
        font-size: 3.5rem;
    }

    .category-rating-card {
        padding: 1.1rem;
    }

    .cat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .write-review-form, .review-form-section {
        padding: 1.3rem;
    }

    .star-category-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .star-input-wrap label {
        font-size: 1.8rem;
    }

    /* Contact */
    .contact-form-card, .contact-info-card {
        padding: 1.3rem;
    }

    .contact-info-title {
        font-size: 1.3rem;
    }

    .contact-item-icon {
        width: 38px;
        height: 38px;
    }

    .map-wrap iframe {
        height: 220px;
    }

    .quick-contact-card {
        padding: 1.1rem 0.9rem;
    }

    .quick-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    /* Reviews toolbar */
    .reviews-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

        .reviews-toolbar select {
            font-size: 0.82rem;
        }

    /* Footer */
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-brand-name {
        font-size: 1.4rem;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 0.92rem;
    }

    .footer-links li a {
        font-size: 0.85rem;
    }

    .footer-newsletter {
        flex-direction: column;
        gap: 0.5rem;
    }

        .footer-newsletter button {
            width: 100%;
            padding: 0.6rem;
        }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.4rem;
    }

    /* Floating buttons */
    .whatsapp-float {
        bottom: 1.2rem;
        left: 1.2rem;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
    /* إخفاء الـ tooltip في الموبايل */
    .back-to-top {
        right: 1.2rem;
        bottom: 1.2rem;
        width: 40px;
        height: 40px;
    }

    /* Page Hero */
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    /* Process Steps */
    .process-step::after {
        display: none;
    }

    .process-num {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    /* Package Card */
    .package-card {
        padding: 1.5rem 1.2rem;
    }

    .package-price {
        font-size: 1.8rem;
    }
}

/* ════════════════════════════════════════
   SMALL MOBILE (max 480px)
   ════════════════════════════════════════ */
@media (max-width: 480px) {
    :root {
        --font-size-base: 14px;
    }

    /* Hero */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-stats {
        justify-content: space-around;
    }

    /* Gallery — single column */
    .gallery-masonry {
        columns: 1;
    }

    /* Products grid — 1 col */
    .product-card-wrap { /* handled by bootstrap col */
    }

    /* Rating */
    .rating-stars-lg {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .dist-label {
        min-width: 35px;
        font-size: 0.75rem;
    }

    /* Forms */
    .form-floating > label {
        font-size: 0.82rem;
    }

    .star-input-wrap label {
        font-size: 1.6rem;
    }

    /* Review card */
    .reviewer-info {
        gap: 0.6rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    /* Navbar brand */
    .navbar-decorilla .navbar-brand {
        font-size: 1.15rem;
    }

    .navbar-decorilla .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    /* Footer */
    .contact-social {
        gap: 0.5rem;
    }

    .social-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   22. SMOOTH PAGE TRANSITIONS
   ============================================================ */
.page-wrapper {
    animation: pageFadeIn 0.4s ease-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   23. CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold);
    }

/* ============================================================
   24. CRITICAL RTL FIXES — Bootstrap overrides
   ============================================================ */

/* FIX: ms-auto في RTL يكون على الشمال مش اليمين */
.navbar-decorilla .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* FIX: Bootstrap row لا يتسبب في horizontal scroll */
.row {
    --bs-gutter-x: 1.5rem;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767px) {
    .row {
        --bs-gutter-x: 1rem;
    }
}

/* FIX: col padding في الموبايل */
@media (max-width: 575px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    [class^="col-"], [class*=" col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* FIX: hero row لا يتسبب في overflow */
.hero-section .row {
    margin: 0;
}

    .hero-section .row > [class*="col"] {
        padding: 0 0.75rem;
    }

/* FIX: About section img badge */
@media (max-width: 991px) {
    .about-img-badge {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 1rem;
        display: inline-block;
    }
}

/* FIX: منع أي position absolute من التسبب في scroll */
.hero-floating-card {
    position: absolute;
}

@media (max-width: 991px) {
    .hero-floating-card {
        display: none !important;
    }
}

/* FIX: Masonry columns في الموبايل الصغير */
@media (max-width: 400px) {
    .gallery-masonry {
        columns: 1;
    }

    .product-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* FIX: form floating label RTL */
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label,
.form-floating > .form-control:focus ~ label {
    transform: scale(0.85) translateY(-0.75rem) translateX(0);
}

/* FIX: package ribbon في RTL */
.package-ribbon {
    right: -0.5rem;
    left: auto;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
}

/* FIX: hero section no horizontal overflow */
.hero-section {
    overflow-x: hidden;
    overflow-y: visible;
}

/* FIX: services section image hover */
@media (max-width: 767px) {
    .service-card-img {
        aspect-ratio: 16/9;
    }

    .about-img-main {
        aspect-ratio: 3/2;
    }

    .hero-image-main {
        aspect-ratio: 3/4;
        max-width: 100%;
    }
}

/* ============================================================
   25. FINAL RESPONSIVE POLISH
   ============================================================ */

/* ── منع أي عنصر من التسبب في horizontal scroll ── */
* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Section padding موبايل ── */
@media (max-width: 767px) {
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* ── Navbar height fix: يمنع الـ content من الاختباء تحته ── */
body {
    padding-top: 0;
}

.hero-section,
.page-hero {
    padding-top: var(--navbar-height) !important;
}

/* ── About section: الـ img badge ميطلعش برة ── */
.about-img-wrap {
    overflow: visible;
}

@media (max-width: 767px) {
    .about-img-wrap {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .about-img-badge {
        position: absolute;
        left: 1rem !important;
        bottom: -1rem !important;
        min-width: 110px;
    }
}

/* ── Hero في الموبايل: content فوق والصورة تحت ── */
@media (max-width: 991px) {
    .hero-section .row {
        flex-direction: column;
    }

    .hero-section .col-lg-6:first-child {
        order: 1;
    }

    .hero-section .col-lg-6:last-child {
        order: 2;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-section .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-image-wrap {
        padding: 0.5rem 1rem 2rem;
    }

    .hero-image-main {
        max-width: 320px;
        margin: 0 auto;
        aspect-ratio: 3/4;
    }
}

/* ── Services page: تفاصيل الخدمة ميتكسرش في الموبايل ── */
@media (max-width: 767px) {
    .services-section .row.flex-row-reverse {
        flex-direction: column !important;
    }

    .services-section .row .col-lg-6:first-child {
        order: 2;
    }

    .services-section .row .col-lg-6:last-child {
        order: 1;
    }

    .services-section [data-aos] {
        text-align: right;
    }
}

/* ── Products: بطاقة المنتج مش تتقطع ── */
@media (max-width: 767px) {
    .product-card {
        border-radius: var(--radius-md);
    }

    .product-img-wrap {
        aspect-ratio: 16/10;
    }

    .overlay-btn {
        display: none;
    }
    /* إخفاء overlay buttons في الموبايل */
}

/* ── Gallery masonry ── */
@media (max-width: 767px) {
    .gallery-masonry {
        columns: 2;
        gap: 0.5rem;
    }

    .gallery-item {
        margin-bottom: 0.5rem;
    }

    .gallery-item-overlay {
        opacity: 1;
    }
    /* دايماً visible في الموبايل */
    .gallery-item-label {
        font-size: 0.75rem;
    }
}

/* ── Reviews: Dashboard في الموبايل ── */
@media (max-width: 767px) {
    .dist-row {
        gap: 0.5rem;
    }

    .dist-label {
        font-size: 0.75rem;
        min-width: 30px;
    }

    .dist-count {
        min-width: 20px;
        font-size: 0.75rem;
    }

    .helpful-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .helpful-btn {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .event-chip {
        font-size: 0.72rem;
    }
}

/* ── Contact: Map iframe responsive ── */
@media (max-width: 991px) {
    .map-wrap iframe {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .map-wrap iframe {
        height: 200px;
    }
}

/* ── Footer responsive ── */
@media (max-width: 575px) {
    .footer {
        padding: 2rem 0 0;
    }

        .footer .row > [class*="col-"] {
            padding: 0.5rem 1rem;
        }

    .social-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .footer-newsletter {
        padding: 0.75rem;
    }

        .footer-newsletter input {
            font-size: 0.82rem;
        }
}

/* ── Fix: Bootstrap collapse animation تمنع الـ overflow ── */
.navbar-collapse.collapsing,
.navbar-collapse.show {
    overflow: hidden;
}

/* ── Fix: RTL-specific Bootstrap overrides ── */
[dir="rtl"] .navbar-toggler {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

/* ── Fix: الـ scroll indicator في الـ hero مش يتسبب في overflow ── */
.scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

/* ── Fix: Process steps في السيرفيسز ── */
@media (max-width: 767px) {
    .process-step {
        padding: 1.5rem 1rem;
    }

        .process-step::after {
            display: none;
        }

    .process-num {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .process-title {
        font-size: 0.92rem;
    }

    .process-desc {
        font-size: 0.82rem;
    }
}

/* ── Fix: Package cards في الموبايل ── */
@media (max-width: 575px) {
    .package-card {
        padding: 1.3rem 1rem;
    }

    .package-features li {
        font-size: 0.83rem;
        padding: 0.3rem 0;
    }

    .package-ribbon {
        font-size: 0.72rem;
        padding: 0.25rem 0.9rem;
    }
}

/* ── Fix: FAQ في السيرفيسز ── */
@media (max-width: 575px) {
    .faq-question {
        font-size: 0.88rem;
        padding: 0.9rem 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
        font-size: 0.83rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* ── Fix: Contact form floating labels في RTL ── */
.form-floating > label {
    right: 0;
    left: auto;
    transform-origin: right top;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.8;
    transform: scale(0.8) translateY(-1rem);
}

/* ── Fix: Star input في الـ reviews ── */
@media (max-width: 575px) {
    .star-category-row {
        gap: 0.3rem;
    }

    .star-cat-label {
        font-size: 0.82rem;
        min-width: 140px;
    }

    .star-cat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .star-input-wrap label {
        font-size: 1.5rem;
    }
}

/* ── Fix: reviewer info في الـ review cards ── */
@media (max-width: 575px) {
    .reviewer-info {
        flex-wrap: wrap;
    }

    .verified-badge {
        margin-top: 0.25rem;
    }

    .review-card {
        padding: 1.1rem;
    }

    .review-footer {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
}

/* ── WhatsApp + BackToTop لا يتعارضوا ── */
@media (max-width: 575px) {
    .whatsapp-float {
        left: 1rem;
        bottom: 1rem;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
}
@media (max-width: 1199px) and (min-width: 991px) {
    .d-zd-none {
        display: none !important;
    }
}
@media (max-width: 991px) {
    nav {
        overflow: visible;
    }
    .navbar-decorilla .navbar-collapse {
        position: absolute;
        top: 57px;
        right: 6px;
        max-width: 305px;
    }
}