/* =========================================
   BOUGRINE ZAHRA - FARMASI WEBSITE
   VIP NOIR & OR — PRESTIGE EDITION
   ========================================= */

/* === VARIABLES === */
:root {
    --bg:           #050505;
    --bg-2:         #090909;
    --bg-card:      #0E0E0E;
    --bg-card-2:    #131313;
    --bg-card-3:    #1A1A1A;
    --gold:         #D4AF37;
    --gold-light:   #F0D060;
    --gold-dark:    #9A7A1A;
    --gold-pale:    rgba(212,175,55,0.07);
    --gold-pale-2:  rgba(212,175,55,0.14);
    --text:         #FFFFFF;
    --text-muted:   rgba(255,255,255,0.62);
    --text-dim:     rgba(255,255,255,0.28);
    --border:       rgba(212,175,55,0.16);
    --border-hover: rgba(212,175,55,0.45);
    --shadow:       0 4px 28px rgba(0,0,0,0.75);
    --shadow-gold:  0 4px 24px rgba(212,175,55,0.22);
    --shadow-gold-lg: 0 8px 45px rgba(212,175,55,0.32);
    --radius:       16px;
    --radius-sm:    8px;
    --radius-lg:    24px;
    --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font:         'Cairo', sans-serif;
    --gradient-gold: linear-gradient(135deg, #9A7A1A 0%, #C9A84C 35%, #F0D060 62%, #C9A84C 100%);
    --gradient-gold-2: linear-gradient(135deg, #D4AF37 0%, #F0D060 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #050505 0%, #141414 100%);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 90px 0; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    background: var(--gold-pale-2);
    color: var(--gold);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.section-badge.light {
    background: rgba(212,175,55,0.15);
    color: var(--gold-light);
    border-color: rgba(212,175,55,0.3);
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 14px;
}
.section-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title.light { color: white; }
.section-title.light span { background: var(--gradient-gold-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: #050505;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent);
    opacity: 0;
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold-lg); color: #050505; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary.btn-large { padding: 18px 38px; font-size: 1.05rem; }
.btn-primary.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--gold);
    padding: 14px 30px; border-radius: 50px; font-weight: 700;
    border: 2px solid var(--gold); transition: var(--transition);
}
.btn-secondary:hover { background: var(--gradient-gold); color: #050505; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--gold);
    padding: 14px 30px; border-radius: 50px; font-weight: 700;
    border: 2px solid var(--border-hover); transition: var(--transition);
}
.btn-outline:hover { background: var(--gradient-gold); color: #050505; border-color: var(--gold); }

/* === HEADER === */
.header {
    position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
    background: rgba(5,5,5,0.96);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 35px rgba(212,175,55,0.14); border-bottom-color: rgba(212,175,55,0.28); }
.navbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px; max-width: 1200px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 50px; height: 50px; object-fit: contain; }
.brand-name {
    font-size: 1.2rem; font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    letter-spacing: 0.5px;
}
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-link { color: var(--text-muted); font-weight: 600; padding: 8px 14px; border-radius: 8px; transition: var(--transition); font-size: 0.9rem; }
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-pale); }
.btn-join-nav {
    background: var(--gradient-gold); color: #050505 !important;
    padding: 10px 22px; border-radius: 50px; font-weight: 800;
    display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
    transition: var(--transition); box-shadow: var(--shadow-gold);
}
.btn-join-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold-lg); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 5px; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* === HERO === */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(212,175,55,0.04) 0%, transparent 50%),
        var(--bg);
    display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; }
.shape-1 { width: 650px; height: 650px; top: -200px; left: -180px; background: radial-gradient(circle, var(--gold), transparent); opacity: 0.05; }
.shape-2 { width: 380px; height: 380px; bottom: 20px; right: -120px; background: radial-gradient(circle, var(--gold), transparent); opacity: 0.04; }
.shape-3 { width: 200px; height: 200px; top: 42%; left: 40%; background: radial-gradient(circle, var(--gold-light), transparent); opacity: 0.035; }
.hero-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 60px 20px; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold-pale-2); border: 1px solid var(--border);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
    color: var(--gold); margin-bottom: 22px; box-shadow: var(--shadow-gold); letter-spacing: 0.5px;
}
.hero-badge-logo { width: 28px; height: 28px; object-fit: contain; }
.hero-title { margin-bottom: 22px; }
.hero-name {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.1; letter-spacing: -1px;
}
.hero-subtitle { display: block; font-size: clamp(1rem, 2.5vw, 1.3rem); font-weight: 600; color: var(--text-muted); margin-top: 10px; }
.hero-desc { color: var(--text-muted); font-size: 1rem; margin-bottom: 32px; line-height: 1.9; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-stats {
    display: flex; align-items: center; gap: 24px;
    background: var(--bg-card); padding: 20px 28px; border-radius: var(--radius);
    border: 1px solid var(--border); width: fit-content; box-shadow: var(--shadow);
}
.stat { text-align: center; }
.stat-number {
    display: block; font-size: 1.7rem; font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-img-wrapper { position: relative; width: 420px; max-width: 100%; }
.hero-photo {
    width: 100%; height: 530px; object-fit: cover; object-position: top center;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 65px rgba(0,0,0,0.85), 0 0 0 1px var(--border);
}
.hero-img-badge {
    position: absolute; bottom: -15px; right: -15px;
    background: var(--gradient-gold); color: #050505;
    padding: 12px 20px; border-radius: var(--radius);
    display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.85rem;
    box-shadow: var(--shadow-gold);
}
.hero-logo-float {
    position: absolute; top: -20px; left: -20px;
    background: var(--bg-card); width: 90px; height: 90px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold); padding: 12px; border: 2px solid var(--border);
}
.float-logo { width: 100%; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.hero-scroll a { color: var(--gold); font-size: 1.5rem; opacity: 0.65; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === ABOUT === */
.about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-images { position: relative; padding-bottom: 50px; }
.about-img-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 65px rgba(0,0,0,0.75); border: 1px solid var(--border); }
.about-img-main img { width: 100%; height: 460px; object-fit: cover; object-position: top center; }
.about-img-badge {
    position: absolute; bottom: 20px; right: 20px;
    background: var(--gradient-gold); color: #050505;
    padding: 10px 18px; border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700;
}
.about-img-secondary {
    position: absolute; bottom: -30px; left: -25px; width: 170px; height: 200px;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.75); border: 3px solid var(--bg-2); outline: 1px solid var(--border);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-img-farmasi {
    position: absolute; top: -20px; left: 120px;
    background: var(--bg-card); width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold); padding: 8px; border: 2px solid var(--border);
}
.about-content { padding-right: 20px; }
.about-text { color: var(--text-muted); margin-bottom: 15px; line-height: 1.9; }
.about-skills { margin: 28px 0; }
.skill-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; font-weight: 600; color: var(--text); }
.skill-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.about-social { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; transition: var(--transition); border: 1px solid transparent; }
.social-btn.tiktok { background: #111; color: white; border-color: #2a2a2a; }
.social-btn.tiktok:hover { background: #000; transform: translateY(-2px); border-color: var(--gold); }
.social-btn.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-btn.instagram:hover { opacity: 0.9; transform: translateY(-2px); }
.social-btn.facebook { background: #1877F2; color: white; }
.social-btn.facebook:hover { background: #0d6efd; transform: translateY(-2px); }
.social-btn.youtube { background: #FF0000; color: white; }
.social-btn.youtube:hover { background: #cc0000; transform: translateY(-2px); }

/* === PRODUCTS === */
.products { background: var(--bg); }
.products-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 45px; flex-wrap: wrap; }
.tab-btn {
    padding: 10px 26px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
    background: var(--bg-card); color: var(--text-muted); border: 1px solid var(--border); transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--gradient-gold); color: #050505; border-color: var(--gold); box-shadow: var(--shadow-gold); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.product-card {
    background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold-lg); border-color: var(--border-hover); }
.product-card.hidden { display: none; }
.product-img-wrap { position: relative; overflow: hidden; }
.product-img { width: 100%; height: 230px; object-fit: contain; object-position: center; transition: var(--transition); background: #0A0A0A; padding: 10px; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-placeholder {
    height: 230px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.skincare-pl  { background: linear-gradient(145deg, #12100A, #1E1800); color: var(--gold); }
.makeup-pl    { background: linear-gradient(145deg, #12080E, #200A18); color: var(--gold-light); }
.haircare-pl  { background: linear-gradient(145deg, #080E10, #0A1820); color: var(--gold); }
.perfume-pl   { background: linear-gradient(145deg, #100814, #1A0A22); color: var(--gold-light); }
.product-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gradient-gold); color: #050505;
    padding: 4px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 800; z-index: 2; letter-spacing: 0.5px;
}
.product-badge.new { background: linear-gradient(135deg, #0a1a10, #122010); color: #4ADE80; border: 1px solid rgba(74,222,128,0.28); }
.product-info { padding: 20px; }
.product-info h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; color: var(--text); line-height: 1.4; }
.product-info p { color: var(--text-muted); font-size: 0.83rem; margin-bottom: 10px; line-height: 1.6; }
.product-tip {
    display: flex; align-items: flex-start; gap: 8px;
    background: var(--bg-card-2); border-right: 3px solid var(--gold);
    padding: 10px 12px; border-radius: 0 8px 8px 0;
    font-size: 0.77rem; color: var(--text-muted); font-weight: 600; margin-bottom: 14px; line-height: 1.6;
}
.product-tip i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.product-rating { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.btn-product {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-pale-2); color: var(--gold);
    padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    transition: var(--transition); border: 1px solid var(--border);
}
.btn-product:hover { background: var(--gradient-gold); color: #050505; border-color: var(--gold); box-shadow: var(--shadow-gold); }
.products-cta { text-align: center; margin-top: 45px; }

/* === WHY FARMASI === */
.why-farmasi { background: var(--bg-2); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.why-card {
    background: var(--bg-card); padding: 35px 25px; border-radius: var(--radius);
    text-align: center; transition: var(--transition); border: 1px solid var(--border);
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.why-icon {
    width: 70px; height: 70px; background: var(--gold-pale-2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
    font-size: 1.6rem; color: var(--gold); transition: var(--transition); border: 1px solid var(--border);
}
.why-card:hover .why-icon { background: var(--gradient-gold); color: #050505; box-shadow: var(--shadow-gold); border-color: transparent; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; }

/* === JOIN SECTION === */
.join-section {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.07) 0%, transparent 70%), var(--bg);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    overflow: hidden; padding: 90px 0;
}
.join-bg {
    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='%23D4AF37' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='14'/%3E%3C/g%3E%3C/svg%3E");
}
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.join-content { color: white; }
.join-desc { color: var(--text-muted); margin: 20px 0 32px; line-height: 1.9; }
.join-steps { margin-bottom: 38px; }
.step { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.step-num {
    width: 52px; height: 52px; background: var(--gold-pale); border: 1px solid var(--border-hover);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 900; color: var(--gold); flex-shrink: 0; box-shadow: var(--shadow-gold);
}
.step-info h4 { color: var(--text); font-weight: 700; margin-bottom: 3px; }
.step-info p { color: var(--text-muted); font-size: 0.87rem; }
.join-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.join-image img { width: 100%; height: 460px; object-fit: cover; object-position: top center; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.join-farmasi-logo {
    position: absolute; bottom: 20px; right: 20px;
    background: rgba(5,5,5,0.92); width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 10px; border: 1px solid var(--border); backdrop-filter: blur(12px);
}

/* === TESTIMONIALS === */
.testimonials { background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; align-items: start; }
.testimonial-card { background: var(--bg-card); padding: 32px; border-radius: var(--radius); transition: var(--transition); border: 1px solid var(--border); }
.testimonial-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.testimonial-card.featured {
    border-color: var(--gold); background: linear-gradient(145deg, #12100A, #1C1608);
    transform: scale(1.03); box-shadow: var(--shadow-gold-lg);
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p { font-size: 0.9rem; line-height: 1.9; margin-bottom: 22px; font-style: italic; color: var(--text-muted); }
.testimonial-card.featured p { color: rgba(255,255,255,0.85); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { font-size: 2.2rem; color: var(--text-dim); }
.testimonial-card.featured .author-avatar { color: var(--gold); }
.author-info strong { display: block; font-weight: 700; color: var(--text); }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* === BLOG PREVIEW === */
.blog-preview { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.blog-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.blog-img { position: relative; }
.blog-img-placeholder { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-img-1 { background: linear-gradient(135deg, #12100A, #1E1800); color: var(--gold); }
.blog-img-2 { background: linear-gradient(135deg, #080E14, #0A1422); color: var(--gold-light); }
.blog-img-3 { background: linear-gradient(135deg, #12120A, #1E1E00); color: var(--gold); }
.blog-category {
    position: absolute; bottom: 12px; right: 12px;
    background: var(--gradient-gold); color: #050505;
    padding: 4px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 800;
}
.blog-content { padding: 22px; }
.blog-meta { display: flex; gap: 15px; margin-bottom: 12px; }
.blog-meta span { color: var(--text-dim); font-size: 0.8rem; display: flex; align-items: center; gap: 5px; }
.blog-content h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; line-height: 1.5; color: var(--text); }
.blog-content h3 a:hover { color: var(--gold); }
.blog-content p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; line-height: 1.7; }
.blog-read-more { color: var(--gold); font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.blog-read-more:hover { gap: 10px; }
.blog-cta { text-align: center; margin-top: 42px; }

/* === CONTACT === */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-title { font-size: 1.8rem; }
.contact-info > p { color: var(--text-muted); margin: 15px 0 30px; }
.contact-items { display: flex; flex-direction: column; gap: 15px; }
.contact-item {
    display: flex; align-items: center; gap: 15px; padding: 16px;
    background: var(--bg-card); border-radius: var(--radius);
    transition: var(--transition); border: 1px solid var(--border);
}
.contact-item:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.contact-item-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; flex-shrink: 0; }
.contact-item-icon.whatsapp  { background: #25D366; }
.contact-item-icon.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.contact-item-icon.tiktok    { background: #111; }
.contact-item-icon.facebook  { background: #1877F2; }
.contact-item-icon.youtube   { background: #FF0000; }
.contact-item-info strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.contact-item-info span { color: var(--text-muted); font-size: 0.85rem; }
.contact-form-wrap { background: var(--bg-card); padding: 38px; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 5px; color: var(--text); }
.form-note { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.87rem; margin-bottom: 6px; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9rem;
    transition: var(--transition); background: var(--bg-card-2); color: var(--text); direction: rtl;
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); background: var(--bg-card-3);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.btn-submit {
    width: 100%; padding: 14px; background: var(--gradient-gold); color: #050505;
    border-radius: 50px; font-weight: 800; font-size: 1rem;
    transition: var(--transition); box-shadow: var(--shadow-gold);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold-lg); }
.form-success, .form-error { margin-top: 15px; padding: 15px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.form-success { background: rgba(74,222,128,0.1); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
.form-error   { background: rgba(248,113,113,0.1); color: #F87171; border: 1px solid rgba(248,113,113,0.2); }
.hidden { display: none !important; }

/* === FOOTER === */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-top { padding: 70px 0; border-bottom: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { width: 60px; height: 60px; object-fit: contain; margin-bottom: 16px; }
.footer-brand h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; color: var(--gold); }
.footer-brand p { color: var(--text-dim); font-size: 0.87rem; line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); color: var(--text-muted);
}
.footer-social a:hover { background: var(--gradient-gold); color: #050505; border-color: var(--gold); transform: translateY(-2px); }
.footer-links h4 { font-size: 1rem; font-weight: 700; margin-bottom: 22px; color: var(--gold); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { color: var(--text-dim); font-size: 0.87rem; transition: var(--transition); }
.footer-links li a:hover { color: var(--gold); padding-right: 5px; }
.footer-contact h4 { font-size: 1rem; font-weight: 700; margin-bottom: 22px; color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold); width: 18px; }
.footer-contact-item a { color: var(--text-dim); font-size: 0.87rem; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact .btn-primary { margin-top: 18px; }
.footer-bottom { padding: 22px 0; text-align: center; }
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; }
.footer-bottom a { color: var(--gold); }
.footer-admin-link { color: var(--text-dim); font-size: 0.75rem; margin-top: 6px; display: block; transition: var(--transition); }
.footer-admin-link:hover { color: var(--gold); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px; width: 64px; height: 64px;
    background: #25D366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.9rem;
    z-index: 999; box-shadow: 0 4px 26px rgba(37,211,102,0.52); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 40px rgba(37,211,102,0.72); color: white; }
.whatsapp-tooltip {
    position: absolute; right: 74px; background: var(--bg-card-3); color: white;
    padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 700;
    white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
    font-family: var(--font); border: 1px solid var(--border);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-pulse {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    background: #25D366; animation: pulse 2.5s infinite; z-index: -1;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* === SCROLL TOP === */
.scroll-top {
    position: fixed; bottom: 105px; left: 30px; width: 46px; height: 46px;
    background: var(--gradient-gold); color: #050505; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    z-index: 999; box-shadow: var(--shadow-gold); transition: var(--transition); opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-lg); }

/* === AOS ANIMATIONS === */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .why-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    section { padding: 65px 0; }
    .nav-links {
        position: fixed; top: 70px; right: -100%; width: 280px; height: calc(100vh - 70px);
        background: var(--bg-card); flex-direction: column; align-items: flex-start; padding: 20px;
        box-shadow: -5px 0 35px rgba(0,0,0,0.9); border-right: 1px solid var(--border);
        transition: right 0.3s ease; overflow-y: auto; z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 40px 20px; }
    .hero-image { order: -1; }
    .hero-img-wrapper { width: 300px; margin: 0 auto; }
    .hero-photo { height: 380px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-logo-float { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-secondary { display: none; }
    .about-content { padding-right: 0; }
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .join-grid { grid-template-columns: 1fr; }
    .join-image { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .whatsapp-float { bottom: 20px; left: 20px; }
    .scroll-top { bottom: 95px; left: 20px; }
}
@media (max-width: 480px) {
    .hero-name { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 10px; }
    .stat-divider { width: 100%; height: 1px; }
    .contact-form-wrap { padding: 22px; }
}
