/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #20434d;
    --primary-light: #2a5a68;
    --accent: #c17f44;
    --accent-light: #d4975e;
    --light: #efefef;
    --bg: #fafaf8;
    --bg-warm: #f5f0eb;
    --text: #333;
    --text-light: #777;
    --shadow: 0 4px 30px rgba(32,67,77,0.08);
    --shadow-lg: 0 20px 60px rgba(32,67,77,0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: var(--primary);
    overflow-x: hidden;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Cinzel Decorative', serif; font-weight: 400; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-ring {
    width: 50px; height: 50px; margin: 0 auto 16px;
    border: 2px solid rgba(255,255,255,0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 28px; color: white; letter-spacing: 4px;
}

/* ===== HEADER ===== */
.header {
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 80px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 60px;
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    height: 65px;
    border-bottom: 1px solid rgba(32,67,77,0.08);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.header-left { display: flex; align-items: center; gap: 28px; z-index: 1; }
.header-right { display: flex; align-items: center; gap: 20px; z-index: 1; }

.burger-menu {
    background: none; border: none; cursor: pointer; padding: 0;
    width: 24px; height: 18px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
}
.burger-menu span {
    display: block; width: 100%; height: 2px;
    background: var(--primary); border-radius: 2px;
    transition: all 0.3s ease;
}
.burger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-link {
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px; color: var(--primary);
    position: relative; padding: 4px 0;
    transition: opacity 0.2s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: var(--accent);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.header-logo {
    position: absolute; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; height: 80px; padding: 18px 0;
}
.header.scrolled .header-logo { height: 65px; }
.logo-svg { height: 100%; width: auto; }

.whatsapp-link {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px; color: var(--primary);
    padding: 8px 16px; border: 1.5px solid var(--primary);
    border-radius: 30px; transition: all 0.3s ease;
}
.whatsapp-link:hover {
    background: var(--primary); color: white;
}
.whatsapp-link:hover svg { stroke: white; }

.lang-selector {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 14px; color: var(--primary);
    cursor: pointer; transition: opacity 0.2s;
    padding: 6px 12px; border: 1px solid rgba(32,67,77,0.2);
    border-radius: 6px;
}
.lang-selector:hover { opacity: 0.7; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--bg); z-index: 999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding: 40px 20px; gap: 0;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}
.mobile-nav.open {
    opacity: 1; visibility: visible;
    transform: translateY(0); pointer-events: all;
}
.mobile-nav a {
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px; color: var(--primary);
    padding: 18px 0; width: 100%; text-align: center;
    border-bottom: 1px solid rgba(32,67,77,0.08);
    transition: background 0.2s;
}
.mobile-nav a:hover { background: rgba(32,67,77,0.03); }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative; width: 100%; height: 100vh;
    min-height: 600px; max-height: 900px;
    overflow: hidden; background: var(--primary);
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1s ease;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3640 50%, #0f2028 100%);
}
.hero-slide.active { opacity: 1; }
.hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(193,127,68,0.15) 0%, transparent 60%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 80px; max-width: 650px;
}
.hero-tag {
    display: inline-block;
    font-family: 'Roboto', sans-serif; font-weight: 500;
    font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 20px;
    padding: 6px 16px; border: 1px solid rgba(193,127,68,0.4);
    border-radius: 30px;
    animation: fadeInUp 0.8s ease both;
}
.hero-title {
    font-size: 64px; color: white; line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-desc {
    font-size: 18px; color: rgba(255,255,255,0.7);
    line-height: 1.7; margin-bottom: 32px; max-width: 480px;
    animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-btns {
    display: flex; gap: 16px;
    animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-img-wrapper {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    width: 400px; height: 400px; z-index: 1;
}
.hero-floating-img {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193,127,68,0.2) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-nav {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
}
.hero-dot {
    width: 12px; height: 12px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent; cursor: pointer; padding: 0;
    transition: all 0.3s ease;
}
.hero-dot:hover { border-color: white; transform: scale(1.2); }
.hero-dot.active { background: white; border-color: white; }

.scroll-indicator {
    position: absolute; bottom: 40px; right: 60px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 10; animation: fadeInUp 1s 1s ease both;
}
.scroll-mouse {
    width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px; position: relative;
}
.scroll-wheel {
    width: 3px; height: 8px; background: white;
    border-radius: 2px; position: absolute;
    top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}
.scroll-indicator span {
    font-size: 11px; color: rgba(255,255,255,0.5);
    letter-spacing: 2px; text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px;
    background: var(--accent); color: white;
    font-family: 'Roboto', sans-serif; font-weight: 500;
    font-size: 15px; border: none; border-radius: 6px;
    cursor: pointer; transition: all 0.3s ease;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193,127,68,0.3);
}
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px;
    background: transparent; color: white;
    font-family: 'Roboto', sans-serif; font-weight: 400;
    font-size: 15px; border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 6px; cursor: pointer;
    transition: all 0.3s ease; text-decoration: none;
}
.btn-outline:hover {
    border-color: white; background: rgba(255,255,255,0.1);
}
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-block { width: 100%; text-align: center; }

/* ===== FEATURES STRIP ===== */
.features-strip {
    display: flex; justify-content: center; gap: 0;
    background: white; border-bottom: 1px solid rgba(32,67,77,0.06);
    padding: 0;
}
.feature-item {
    display: flex; align-items: center; gap: 14px;
    padding: 28px 40px;
    border-right: 1px solid rgba(32,67,77,0.06);
    transition: background 0.3s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(193,127,68,0.04); }
.feature-item svg { color: var(--accent); flex-shrink: 0; }
.feature-item strong {
    display: block; font-weight: 500; font-size: 14px;
    color: var(--primary); margin-bottom: 2px;
}
.feature-item span { font-size: 12px; color: var(--text-light); }

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex; align-items: center; justify-content: center;
    gap: 30px; margin-bottom: 40px; padding: 0 40px;
}
.section-line {
    height: 1px; background: var(--primary);
    opacity: 0.15; flex: 1; max-width: 200px;
}
.section-title-wrap { text-align: center; }
.section-subtitle {
    display: block; font-family: 'Roboto', sans-serif;
    font-weight: 500; font-size: 13px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 8px;
}
.section-title {
    font-size: 38px; color: var(--primary); line-height: 1.2;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 60px;
    max-width: 1400px; margin: 0 auto;
}
.category-filter {
    display: flex; justify-content: center; gap: 10px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px; border: 1.5px solid rgba(32,67,77,0.15);
    border-radius: 30px; background: transparent;
    font-family: 'Roboto', sans-serif; font-size: 14px;
    color: var(--primary); cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
    background: var(--primary); color: white;
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.products-loading {
    grid-column: 1 / -1; text-align: center; padding: 60px 0;
    color: var(--text-light);
}
.spinner {
    width: 40px; height: 40px; margin: 0 auto 16px;
    border: 3px solid rgba(32,67,77,0.1);
    border-top-color: var(--accent);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}

/* Product Card */
.product-card {
    background: white; border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.product-card-img {
    width: 100%; height: 280px; overflow: hidden;
    position: relative; background: var(--bg-warm);
}
.product-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-img .product-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 4px 12px; background: var(--accent);
    color: white; font-size: 11px; font-weight: 500;
    border-radius: 20px; letter-spacing: 1px;
    text-transform: uppercase;
}
.product-card-body { padding: 20px; }
.product-card-category {
    font-size: 11px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 6px;
}
.product-card-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px; color: var(--primary);
    margin-bottom: 4px;
}
.product-card-size {
    font-size: 13px; color: var(--text-light); margin-bottom: 12px;
}
.product-card-footer {
    display: flex; justify-content: space-between; align-items: center;
}
.product-card-price {
    font-size: 20px; font-weight: 700; color: var(--primary);
}
.product-card-price small {
    font-size: 13px; font-weight: 400; color: var(--text-light);
}
.product-card-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer;
    transition: all 0.3s ease;
}
.product-card-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}
.product-card-placeholder {
    width: 100%; height: 280px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, #e8ddd4 100%);
    display: flex; align-items: center; justify-content: center;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    position: relative; padding: 100px 60px;
    background: var(--primary); overflow: hidden;
    text-align: center;
}
.promo-bg-pattern {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(193,127,68,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(193,127,68,0.1) 0%, transparent 50%);
}
.promo-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.promo-tag {
    display: inline-block; padding: 6px 20px;
    border: 1px solid rgba(193,127,68,0.5);
    border-radius: 30px; color: var(--accent);
    font-size: 12px; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 20px;
}
.promo-title {
    font-size: 44px; color: white; line-height: 1.2;
    margin-bottom: 16px;
}
.promo-desc {
    font-size: 17px; color: rgba(255,255,255,0.65);
    line-height: 1.7; margin-bottom: 32px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 60px;
    max-width: 1400px; margin: 0 auto;
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    width: 100%; height: 500px; border-radius: var(--radius);
    overflow: hidden; position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3640 100%);
}
.about-img-main img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}

/* About Decorative Design */
.about-design {
    width: 100%; height: 100%;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.about-design-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(82,183,136,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(193,127,68,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
    background-size: 100% 100%;
}
.about-design-pattern::before {
    content: '';
    position: absolute; inset: 30px;
    border: 1px solid rgba(193,127,68,0.12);
    border-radius: 16px;
}
.about-design-pattern::after {
    content: '';
    position: absolute; inset: 50px;
    border: 1px solid rgba(193,127,68,0.08);
    border-radius: 12px;
}
.about-design-circle {
    width: 280px; height: 280px;
    animation: aboutRotate 40s linear infinite;
}
@keyframes aboutRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.about-design-circle svg {
    width: 100%; height: 100%;
}
.about-design-monogram {
    position: absolute;
    font-family: 'Cinzel Decorative', serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(193,127,68,0.85);
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(193,127,68,0.2);
    pointer-events: none;
}
.about-design-tagline {
    position: absolute;
    bottom: 38%;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 6px;
    color: rgba(193,127,68,0.45);
    text-transform: uppercase;
    pointer-events: none;
}
.about-design-icon {
    position: absolute;
    width: 36px; height: 36px;
    opacity: 0.7;
    animation: aboutFloat 6s ease-in-out infinite;
}
.about-icon-1 {
    top: 12%; right: 15%;
    animation-delay: 0s;
}
.about-icon-2 {
    bottom: 18%; left: 12%;
    animation-delay: -2s;
}
.about-icon-3 {
    top: 20%; left: 18%;
    animation-delay: -4s;
    width: 30px; height: 30px;
}
@keyframes aboutFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.about-img-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 200px; height: 200px;
    border: 3px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}
.about-title {
    font-size: 38px; color: var(--primary);
    line-height: 1.2; margin-bottom: 20px;
}
.about-desc {
    font-size: 16px; color: var(--text-light);
    line-height: 1.8; margin-bottom: 32px;
}
.about-stats {
    display: flex; gap: 40px; margin-bottom: 32px;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px; color: var(--accent);
}
.stat-suffix {
    font-family: 'Cinzel Decorative', serif;
    font-size: 24px; color: var(--accent);
}
.stat-label {
    display: block; font-size: 13px; color: var(--text-light);
    margin-top: 4px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 80px 60px;
    background: var(--bg-warm);
}
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.process-card {
    text-align: center; padding: 40px 24px;
    background: white; border-radius: var(--radius);
    position: relative; transition: all var(--transition);
    box-shadow: var(--shadow);
}
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.process-num {
    position: absolute; top: 16px; right: 20px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px; color: rgba(32,67,77,0.05);
    font-weight: 700; line-height: 1;
}
.process-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: rgba(193,127,68,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.process-card h3 {
    font-size: 20px; color: var(--primary); margin-bottom: 10px;
}
.process-card p {
    font-size: 14px; color: var(--text-light); line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 60px;
    max-width: 1400px; margin: 0 auto;
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.contact-title {
    font-size: 38px; color: var(--primary);
    margin-bottom: 16px;
}
.contact-desc {
    font-size: 16px; color: var(--text-light);
    line-height: 1.7; margin-bottom: 32px;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
    display: flex; align-items: center; gap: 16px;
    padding: 16px; border-radius: var(--radius-sm);
    transition: background 0.3s;
    color: var(--primary);
}
.contact-method:hover { background: rgba(32,67,77,0.03); }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.whatsapp-bg { background: #25d366; }
.phone-bg { background: var(--primary); }
.email-bg { background: var(--accent); }
.location-bg { background: #6c757d; }
.contact-method strong {
    display: block; font-weight: 500; font-size: 15px;
    margin-bottom: 2px;
}
.contact-method span { font-size: 13px; color: var(--text-light); }

.contact-form-wrap {
    background: white; border-radius: var(--radius);
    padding: 40px; box-shadow: var(--shadow);
}
.contact-form .form-group { margin-bottom: 16px; }
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 14px 18px;
    border: 1.5px solid rgba(32,67,77,0.12);
    border-radius: var(--radius-sm);
    font-family: 'Roboto', sans-serif;
    font-size: 15px; color: var(--primary);
    background: var(--bg);
    transition: border-color 0.3s;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--primary); color: var(--light);
    padding: 70px 60px 40px;
}
.footer-content {
    display: flex; justify-content: space-between;
    max-width: 1400px; margin: 0 auto;
    gap: 40px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-left { gap: 20px; max-width: 280px; }
.footer-logo {
    display: flex; align-items: center; gap: 12px;
}
.footer-brand {
    font-family: 'Cinzel Decorative', serif;
    font-size: 24px; color: white;
}
.footer-tagline {
    font-size: 14px; color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.social-media { display: flex; gap: 14px; }
.social-media a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}
.social-media a:hover {
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 16px; color: var(--accent);
    margin-bottom: 18px;
}
.footer-col a {
    display: block; color: rgba(255,255,255,0.6);
    font-size: 14px; padding: 5px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-right-col { text-align: right; }
.arabic-link {
    display: inline-block !important;
    border: 1px solid var(--accent);
    padding: 5px 14px !important;
    border-radius: 5px;
    font-family: 'Noto Sans Arabic', sans-serif !important;
    font-size: 14px !important;
    color: var(--accent) !important;
    margin-top: 10px; width: fit-content;
    align-self: flex-end;
}
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 50px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 1400px; margin-left: auto; margin-right: auto;
}
.copyright { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 30px; }
.footer-bottom-links a {
    color: rgba(255,255,255,0.4); font-size: 13px;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999; transition: all 0.3s ease;
    opacity: 0; transform: scale(0.5);
}
.whatsapp-float.visible {
    opacity: 1; transform: scale(1);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ===== PRODUCT MODAL ===== */
.product-modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.product-modal-overlay.open {
    opacity: 1; visibility: visible;
}
.product-modal {
    background: white; border-radius: var(--radius);
    max-width: 900px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
}
.product-modal-overlay.open .product-modal {
    transform: translateY(0) scale(1);
}
.modal-close-btn {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.05); border: none;
    font-size: 24px; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.modal-close-btn:hover { background: rgba(0,0,0,0.1); }
.product-modal-grid {
    display: grid; grid-template-columns: 1fr 1fr;
}
.product-modal-img {
    height: 100%; min-height: 400px;
    background: var(--bg-warm);
    border-radius: var(--radius) 0 0 var(--radius);
    overflow: hidden;
}
.product-modal-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.product-modal-info { padding: 40px; }
.modal-category {
    font-size: 12px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent);
}
.modal-product-name {
    font-size: 28px; color: var(--primary);
    margin: 8px 0 16px;
}
.modal-desc {
    font-size: 15px; color: var(--text-light);
    line-height: 1.7; margin-bottom: 24px;
}
.modal-details {
    display: flex; gap: 20px; margin-bottom: 24px;
}
.modal-detail {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 14px; color: var(--primary);
}
.modal-price {
    font-size: 32px; font-weight: 700;
    color: var(--primary); margin-bottom: 24px;
}
.modal-price small {
    font-size: 16px; font-weight: 400; color: var(--text-light);
}
.btn-order {
    gap: 10px; font-size: 16px; padding: 16px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1; transform: translateY(0);
}
.reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed {
    opacity: 1; transform: translateX(0);
}
.reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed {
    opacity: 1; transform: translateX(0);
}

/* ===== SELECTION ===== */
::selection { background: var(--accent); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .header { padding: 0 30px; }
    .hero-content { padding: 0 50px; }
    .hero-title { font-size: 52px; }
    .hero-img-wrapper { width: 300px; height: 300px; }
    .products-section { padding: 60px 30px; }
    .about-section { padding: 80px 30px; }
    .about-grid { gap: 50px; }
    .process-section { padding: 60px 30px; }
    .contact-section { padding: 80px 30px; }
    .promo-banner { padding: 80px 30px; }
    .promo-title { font-size: 36px; }
    .footer { padding: 60px 30px 30px; }
}

@media (max-width: 1024px) {
    .header-left .nav-link { display: none; }
    .whatsapp-link span { display: none; }
    .whatsapp-link { padding: 8px; border-radius: 50%; }
    .features-strip { flex-wrap: wrap; }
    .feature-item { flex: 1 1 50%; border-bottom: 1px solid rgba(32,67,77,0.06); }
    .feature-item:nth-child(2) { border-right: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-img-wrapper { display: none; }
    .hero-content { max-width: 100%; }
}

@media (max-width: 768px) {
    .header { height: 60px; padding: 0 16px; }
    .header.scrolled { height: 56px; }
    .header-logo { height: 60px; padding: 14px 0; }
    .header.scrolled .header-logo { height: 56px; }
    .mobile-nav { top: 60px; }
    .lang-selector { display: none; }

    .hero-section { min-height: 500px; max-height: 700px; }
    .hero-content { padding: 0 24px; }
    .hero-tag { font-size: 11px; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 15px; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline { width: 100%; text-align: center; }
    .scroll-indicator { display: none; }

    .features-strip { flex-direction: column; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(32,67,77,0.06); padding: 20px 24px; }

    .section-title { font-size: 28px; }
    .section-header { gap: 16px; padding: 0 16px; }
    .section-line { display: none; }

    .products-section { padding: 50px 16px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .promo-banner { padding: 60px 20px; }
    .promo-title { font-size: 28px; }
    .promo-desc { font-size: 15px; }

    .about-section { padding: 60px 16px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-main { height: 300px; }
    .about-img-accent { display: none; }
    .about-title { font-size: 28px; }
    .about-stats { gap: 24px; }
    .stat-number { font-size: 28px; }

    .process-section { padding: 50px 16px; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .process-card { padding: 24px 16px; }
    .process-card h3 { font-size: 16px; }

    .contact-section { padding: 60px 16px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-title { font-size: 28px; }
    .contact-form-wrap { padding: 24px; }

    .footer { padding: 40px 16px 24px; }
    .footer-content { flex-direction: column; gap: 30px; }
    .footer-right-col { text-align: left; }
    .arabic-link { align-self: flex-start; }
    .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

    .product-modal-grid { grid-template-columns: 1fr; }
    .product-modal-img {
        min-height: 250px;
        border-radius: var(--radius) var(--radius) 0 0;
    }
    .product-modal-info { padding: 24px; }
    .modal-product-name { font-size: 22px; }
    .modal-price { font-size: 26px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 14px; }
    .btn-primary { padding: 12px 24px; font-size: 14px; }
    .btn-outline { padding: 12px 24px; font-size: 14px; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-card-img { height: 180px; }
    .product-card-body { padding: 12px; }
    .product-card-name { font-size: 14px; }
    .product-card-price { font-size: 16px; }
    .product-card-btn { width: 32px; height: 32px; }

    .process-grid { grid-template-columns: 1fr; }

    .promo-title { font-size: 24px; }
    .stat-number { font-size: 24px; }
    .about-stats { gap: 16px; }
}
