/* ============================================
   ALSABAIK ALFAKHIRA - Premium Precious Metals
   Design System & Global Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Gold Palette */
    --gold-100: #FFF8E7;
    --gold-200: #F5E6B8;
    --gold-300: #E8D08A;
    --gold-400: #D4A843;
    --gold-500: #C5A028;
    --gold-600: #B8860B;
    --gold-700: #8B6914;
    --gold-800: #6B4F10;
    --gold-gradient: linear-gradient(135deg, #D4A843 0%, #C5A028 25%, #E8D08A 50%, #C5A028 75%, #B8860B 100%);
    --gold-gradient-text: linear-gradient(135deg, #E8D08A 0%, #C5A028 50%, #D4A843 100%);
    --gold-shimmer: linear-gradient(90deg, transparent 0%, rgba(232, 208, 138, 0.4) 50%, transparent 100%);

    /* Dark Palette */
    --dark-900: #0A0A0F;
    --dark-800: #111118;
    --dark-700: #1A1A25;
    --dark-600: #222233;
    --dark-500: #2A2A3D;
    --dark-400: #3A3A50;

    /* Text */
    --text-primary: #F5F0E8;
    --text-secondary: #B8B0A0;
    --text-muted: #8A8478;
    --text-gold: #D4A843;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    /* Shadows */
    --shadow-gold: 0 0 30px rgba(212, 168, 67, 0.15);
    --shadow-gold-strong: 0 0 60px rgba(212, 168, 67, 0.25);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Amiri', 'Inter', serif;
    background-color: var(--dark-900);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out-expo);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.gold-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--dark-600);
    border-top: 3px solid var(--gold-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.preloader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Particles Canvas --- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-500);
    object-fit: cover;
    transition: transform 0.4s var(--ease-out-expo);
}

.logo-img:hover {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-ar {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1.2;
}

.logo-en {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 4px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 20px;
    left: 20px;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-400);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold-400);
    transition: all 0.3s var(--ease-out-expo);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.5) 40%,
        rgba(10, 10, 15, 0.7) 80%,
        rgba(10, 10, 15, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.hero-logo-wrap {
    margin-bottom: 40px;
    animation: fadeInDown 1s var(--ease-out-expo) 0.5s both;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid var(--gold-500);
    box-shadow: var(--shadow-gold-strong), 0 0 80px rgba(212, 168, 67, 0.1);
    animation: logoGlow 3s ease-in-out infinite alternate;
    object-fit: cover;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 30px rgba(212, 168, 67, 0.2), 0 0 60px rgba(212, 168, 67, 0.1); }
    100% { box-shadow: 0 0 50px rgba(212, 168, 67, 0.35), 0 0 100px rgba(212, 168, 67, 0.15); }
}

.hero-title {
    animation: fadeInUp 1s var(--ease-out-expo) 0.7s both;
}

.hero-title-ar {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin-bottom: 8px;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-300);
    line-height: 1.4;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 6px;
    color: var(--text-secondary);
    margin-top: 16px;
    animation: fadeInUp 1s var(--ease-out-expo) 0.9s both;
}

.hero-divider {
    margin: 32px auto;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    position: relative;
    animation: fadeIn 1s var(--ease-out-expo) 1s both;
}

.divider-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-500);
    font-size: 1.2rem;
    background: var(--dark-900);
    padding: 0 16px;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s var(--ease-out-expo) 1.1s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease-out-expo) 1.3s both;
}

.hero-reg {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeInUp 1s var(--ease-out-expo) 1.5s both;
}

.reg-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 12px;
    border: 1px solid var(--dark-500);
    border-radius: 4px;
}

.reg-number {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold-400);
    letter-spacing: 3px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s var(--ease-out-expo) 1.8s both;
}

.mouse {
    width: 28px;
    height: 44px;
    border: 2px solid var(--gold-500);
    border-radius: 14px;
    position: relative;
    opacity: 0.6;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gold-500);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: 'Amiri', serif;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-shimmer);
    transition: left 0.6s var(--ease-out-expo);
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--dark-900);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    box-shadow: var(--shadow-gold-strong);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-400);
    border: 1.5px solid var(--gold-500);
}

.btn-outline:hover {
    background: rgba(212, 168, 67, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold-400);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    margin-bottom: 16px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
    border-radius: 3px;
}

/* --- About Section --- */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--dark-800);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image-border {
    position: absolute;
    inset: -12px;
    border: 2px solid var(--gold-500);
    border-radius: 20px;
    opacity: 0.3;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-gold-strong);
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-900);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    color: var(--dark-800);
    margin-top: 4px;
    font-weight: 700;
}

.about-heading {
    font-size: 1.8rem;
    color: var(--gold-400);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 2;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(212, 168, 67, 0.05);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.feature-item:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.2);
    transform: translateX(-4px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--gold-500);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-info h4 {
    font-size: 1.1rem;
    color: var(--gold-400);
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Services Section --- */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--dark-900);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-700);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: var(--shadow-card-hover), var(--shadow-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon-wrap {
    background: rgba(212, 168, 67, 0.15);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 36px;
    height: 36px;
    color: var(--gold-500);
}

.service-title {
    font-size: 1.3rem;
    color: var(--gold-400);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-line {
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-line {
    opacity: 1;
    transform: scaleX(1);
}

/* --- Products Section --- */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--dark-800);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--dark-700);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: var(--shadow-card-hover), var(--shadow-gold);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.product-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold-gradient);
    color: var(--dark-900);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
}

.product-info {
    padding: 30px;
}

.product-title {
    font-size: 1.5rem;
    color: var(--gold-400);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-purity {
    padding: 6px 16px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-400);
}

.product-link {
    font-size: 0.95rem;
    color: var(--gold-500);
    font-weight: 700;
    transition: all 0.3s var(--ease-out-expo);
}

.product-link:hover {
    color: var(--gold-300);
    transform: translateX(-4px);
    display: inline-block;
}

/* --- Stats Section --- */
.stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
}

.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.85);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 16px;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out-expo);
}

.stat-item:hover {
    border-color: rgba(212, 168, 67, 0.35);
    background: rgba(212, 168, 67, 0.05);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* --- Contact Section --- */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--dark-900);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-card {
    background: var(--dark-700);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.contact-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold-500);
    object-fit: cover;
}

.contact-card-header h3 {
    font-size: 1.3rem;
    color: var(--gold-400);
    line-height: 1.3;
}

.contact-card-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-person {
    padding: 20px 0;
}

.person-info h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.person-name-en {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.person-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 50px;
    color: var(--gold-400);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    letter-spacing: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

.person-phone:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-2px);
}

.person-phone svg {
    color: var(--gold-500);
}

.contact-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.contact-extra {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease-out-expo);
}

.contact-item:hover {
    color: var(--gold-400);
}

.contact-item svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--dark-700);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 20px;
    padding: 40px;
}

.form-title {
    font-size: 1.5rem;
    color: var(--gold-400);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: var(--dark-600);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Amiri', serif;
    font-size: 1rem;
    transition: all 0.3s var(--ease-out-expo);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A843' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 18px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-700);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s var(--ease-out-expo);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

/* --- Footer --- */
.footer {
    background: var(--dark-800);
    border-top: 1px solid rgba(212, 168, 67, 0.1);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold-500);
    margin-bottom: 20px;
    object-fit: cover;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links-wrap h4,
.footer-contact-wrap h4 {
    font-size: 1.2rem;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    padding-right: 16px;
}

.footer-links a::before {
    content: '←';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s var(--ease-out-expo);
    color: var(--gold-500);
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-right: 24px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(212, 168, 67, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Animations --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding: 40px;
        transition: right 0.5s var(--ease-out-expo);
        border-left: 1px solid rgba(212, 168, 67, 0.15);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 14px 24px;
        width: 100%;
        text-align: right;
    }

    .hero-title-ar {
        font-size: 2.2rem;
    }

    .hero-title-sub {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

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

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

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-badge {
        right: 10px;
        bottom: -10px;
    }
}

@media (max-width: 480px) {
    .hero-title-ar {
        font-size: 1.8rem;
    }

    .hero-title-sub {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .contact-card,
    .contact-form-wrap {
        padding: 24px;
    }

    .stat-item {
        padding: 24px 12px;
    }
}
