/* CSS الأصلي الكامل مع جميع التأثيرات + Order Section */

/* المتغيرات والإعدادات */
:root {
    --bg-dark: #0a0e1a;
    --bg-navy: #12192e;
    --bg-card: #1a2340;
    --gold: #D4C5B0;
    --gold-light: #E8DCC8;
    --gold-dark: #B8A895;
    --text-white: #ffffff;
    --text-light: #e0e6ed;
    --text-gray: #8892a6;
    
    --font-main: 'Almarai', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 197, 176, 0.3);
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
    position: relative;
    padding-bottom: 1rem;
    animation: title-fade-in 0.8s ease-out;
}

@keyframes title-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: line-expand 1s ease-out 0.3s both;
}

@keyframes line-expand {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    margin-top: -2rem;
}

/* الأزرار */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 197, 176, 0.4);
}

/* Button Pulse Animation */
.btn-pulse {
    animation: btn-pulse-effect 2s ease-in-out infinite;
}

@keyframes btn-pulse-effect {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 197, 176, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 197, 176, 0);
    }
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(212, 197, 176, 0.5);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* ======================================
   Live Notifications (إشعارات حية)
   ====================================== */
.live-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 350px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: right 0.5s ease;
    border-left: 4px solid #4CAF50;
}

.live-notification.show {
    right: 30px;
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    animation: bounce-icon 0.6s ease;
}

@keyframes bounce-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 5px;
}

.notification-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.notification-close:hover {
    color: #333;
}

/* Live Viewers Counter */
.live-viewers {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(26, 35, 64, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 197, 176, 0.2);
}

.viewers-pulse {
    width: 10px;
    height: 10px;
    background: #FF4444;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
    }
}

.live-viewers i {
    color: var(--gold);
    font-size: 1.1rem;
}

.live-viewers span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* زر واتساب العائم */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8);
}

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

/* Hero Section */
/* Hero Section - Perfume Background Integration */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0e1a;
    overflow: hidden;
    padding: 100px 20px;
}

/* Hero Background Image - Wide Perfume */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.genspark.ai/api/files/s/QghWtWrR');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    animation: perfume-bg-fade 8s ease-in-out infinite;
}

@keyframes perfume-bg-fade {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(1.02);
    }
}

/* Gradient Overlay for Blending */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg,
            rgba(10, 14, 26, 0.2) 0%,
            rgba(10, 14, 26, 0.5) 25%,
            rgba(10, 14, 26, 0.75) 50%,
            rgba(10, 14, 26, 0.9) 70%,
            rgba(10, 14, 26, 0.98) 90%,
            rgba(10, 14, 26, 1) 100%
        ),
        radial-gradient(circle at center 30%, 
            rgba(212, 197, 176, 0.1) 0%, 
            transparent 50%
        );
    z-index: 1;
}

/* Floating Particles - Psychological Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 197, 176, 0.4);
    border-radius: 50%;
    animation: float-particle 20s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 7s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 85%;
    animation-delay: 2s;
    animation-duration: 28s;
}

.particle:nth-child(6) {
    left: 95%;
    animation-delay: 4s;
    animation-duration: 24s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Hero Perfume Background - Hidden (using ::before instead) */
.hero-perfume-container {
    display: none;
}

@keyframes shine-move {
    0%, 100% {
        opacity: 0;
        left: 20%;
    }
    50% {
        opacity: 1;
        left: 40%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

/* Logo image removed - using text only */

.logo-text {
    font-family: var(--font-main);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 8px;
    background: linear-gradient(135deg, 
        var(--gold-light) 0%, 
        var(--gold) 50%, 
        var(--gold-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logo-shine 3s ease-in-out infinite;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    filter: drop-shadow(0 6px 25px rgba(212, 197, 176, 0.4));
}

@keyframes logo-shine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212, 197, 176, 0.15) 0%, rgba(232, 220, 200, 0.15) 100%);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(212, 197, 176, 0.2);
    animation: fadeInUp 1s ease 0.4s both, text-shimmer 3s ease-in-out infinite;
    position: relative;
    line-height: 1.2;
}

@keyframes text-shimmer {
    0%, 100% {
        text-shadow: 0 6px 25px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(212, 197, 176, 0.2);
    }
    50% {
        text-shadow: 0 6px 30px rgba(0, 0, 0, 0.7), 0 3px 15px rgba(212, 197, 176, 0.4);
    }
}

.hero-subtitle {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.6s both;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.6s both, gradient-text 3s ease infinite;
    text-shadow: 0 2px 10px rgba(212, 197, 176, 0.3);
}

@keyframes gradient-text {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

@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);
    }
}

/* Trust Bar */
.trust-bar {
    padding: 60px 20px;
    background: var(--bg-navy);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(212, 197, 176, 0.3));
}

.trust-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Brand Story */
.brand-story {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 197, 176, 0.1);
    box-shadow: var(--shadow-lg);
}

.story-badge {
    display: inline-block;
    font-family: var(--font-main);
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.story-content .section-title {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Products Section */
.products {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    transition: var(--transition);
    border: 1px solid rgba(212, 197, 176, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 197, 176, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.product-badge.best-seller {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-dark);
}

.product-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-info {
    padding: 40px;
}

.product-title {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(212, 197, 176, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 197, 176, 0.1);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(212, 197, 176, 0.3));
}

.detail-item span {
    font-size: 1rem;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.price-old {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* Diamond Section */
.diamond-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-dark) 50%, var(--bg-navy) 100%);
    position: relative;
    overflow: hidden;
}

.diamond-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 12px 50px rgba(212, 197, 176, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.diamond-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
}

.diamond-image {
    position: relative;
    background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-dark) 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(212, 197, 176, 0.4));
}

.diamond-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diamond-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.diamond-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.diamond-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(212, 197, 176, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 197, 176, 0.2);
}

.benefit-item i {
    font-size: 1.8rem;
    color: var(--gold);
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.diamond-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.diamond-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.diamond-note i {
    color: var(--gold);
}

/* Models Section */
.models-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.model-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 197, 176, 0.3);
}

.model-image {
    height: 500px;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.model-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.model-card:hover .model-overlay {
    transform: translateY(0);
}

.model-overlay h3 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Order Section - NEW */


/* ======================================
   Testimonials Section (آراء العملاء)
   ====================================== */
.testimonials {
    padding: 100px 20px;
    background: var(--bg-navy);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 197, 176, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 220, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 197, 176, 0.1);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(212, 197, 176, 0.08);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 197, 176, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gold-light);
    background: rgba(212, 197, 176, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.testimonial-badge i {
    color: #4CAF50;
}

/* Social Proof Counter */
.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(212, 197, 176, 0.1) 0%, 
        rgba(232, 220, 200, 0.05) 100%
    );
    border-radius: 20px;
    border: 1px solid rgba(212, 197, 176, 0.2);
    position: relative;
    z-index: 1;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.proof-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ======================================
   Order Form Section (استمارة الطلب)
   ====================================== */
.order-form-section {
    padding: 100px 20px;
    background: var(--bg-dark);
    position: relative;
}

.order-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    padding: 20px 30px;
    border-radius: 50px;
    margin: 30px auto 0;
    max-width: 700px;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(255, 107, 107, 0.6);
    }
}

.urgency-banner i {
    font-size: 1.5rem;
    color: #FFD700;
    animation: fire-flicker 1s ease-in-out infinite;
}

@keyframes fire-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.urgency-banner span {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 70px;
}

.timer-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.timer-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

/* Trust Badges */
.trust-badges {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 197, 176, 0.1);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 197, 176, 0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.badge-item:hover {
    background: rgba(212, 197, 176, 0.1);
    transform: translateX(-5px);
}

.badge-item i {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.badge-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Order Form */
.order-form {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(212, 197, 176, 0.1);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 40px;
    text-align: center;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.form-group label i {
    color: var(--gold);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-navy);
    border: 2px solid rgba(212, 197, 176, 0.2);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 197, 176, 0.05);
    box-shadow: 0 0 0 4px rgba(212, 197, 176, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

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

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    justify-content: center;
}

.form-note i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 197, 176, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-dark) 50%, var(--bg-navy) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 197, 176, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(26, 35, 64, 0.6);
    border-radius: 30px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 50px rgba(212, 197, 176, 0.3);
}

.cta-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(212, 197, 176, 0.5);
}

.cta-description {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(212, 197, 176, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: var(--gold);
}

.footer-tagline {
    font-style: italic;
    color: var(--text-gray);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 197, 176, 0.1);
    text-align: center;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
    .diamond-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-perfume-container {
        width: 250px;
        height: 400px;
        right: 0;
        opacity: 0.4;
    }
    
    .hero::before {
        opacity: 0.2;
        background-position: center center;
    }
    
    .hero-content {
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
    }
    
    /* Logo image removed */
    
    .logo-text {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .brand-story {
        padding: 80px 20px;
    }
    
    .story-content {
        padding: 40px 25px;
    }
    
    .product-image {
        height: 450px;
    }
    
    .product-title {
        font-size: 1.9rem;
    }
    
    .diamond-benefits {
        grid-template-columns: 1fr;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .proof-number {
        font-size: 2.8rem;
    }
    
    /* Order Form Responsive */
    .order-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-badges {
        position: static;
        padding: 30px 20px;
    }
    
    .order-form {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    /* Live Notifications Responsive */
    .live-notification {
        width: 300px;
        right: -350px;
        top: 80px;
    }
    
    .live-notification.show {
        right: 20px;
    }
    
    .live-viewers {
        top: 20px;
        right: 20px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .urgency-banner {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .timer-box {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .timer-value {
        font-size: 1.6rem;
    }
    
    .order-form-container {
        padding: 30px 20px;
    }
    
}

@media (max-width: 480px) {
    .hero::before {
        opacity: 0.15;
        background-size: contain;
    }
    
    /* Logo image removed */
    
    .logo-text {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .particles {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .brand-story {
        padding: 60px 15px;
    }
    
    .story-content {
        padding: 30px 20px;
    }
    
    .story-badge {
        font-size: 1rem;
    }
    
    /* Mobile Testimonials */
    .testimonials {
        padding: 60px 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .proof-number {
        font-size: 2.2rem;
    }
    
    .proof-label {
        font-size: 0.9rem;
    }
    
    /* Mobile Order Form */
    .order-form-section {
        padding: 60px 15px;
    }
    
    .order-form {
        padding: 25px 15px;
    }
    
    .urgency-banner span {
        font-size: 1rem;
    }
    
    /* Mobile Live Notifications */
    .live-notification {
        width: calc(100% - 40px);
        right: -100%;
        top: 70px;
        padding: 15px;
    }
    
    .live-notification.show {
        right: 20px;
    }
    
    .notification-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .notification-title {
        font-size: 0.9rem;
    }
    
    .notification-subtitle {
        font-size: 0.8rem;
    }
    
    .live-viewers {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .live-viewers span {
        font-size: 0.85rem;
    }
    
    .timer-box {
        min-width: 55px;
        padding: 6px 10px;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 20px;
        left: 20px;
    }
}

/* ===================================
   PSYCHOLOGICAL EFFECTS & ANIMATIONS
   =================================== */

/* Smooth Scroll Reveal */
[data-aos] {
    pointer-events: auto;
}

/* Hover Lift Effect - Psychological Attraction */
.product-card,
.info-card,
.trust-item,
.model-card,
.faq-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.product-card:hover,
.info-card:hover,
.model-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 197, 176, 0.3);
}

.trust-item:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Magnetic Cursor Effect for Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 197, 176, 0.4);
}

.btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Breathing Effect for Important Elements */
@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.delivery-badge,
.product-badge {
    animation: breathing 3s ease-in-out infinite;
}

/* Shimmer Effect for Titles */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.section-title::before {
    animation: shimmer 3s infinite linear;
}

/* Attention-Grabbing Pulse for CTA */
@keyframes attention-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 197, 176, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 197, 176, 0);
    }
}

.btn-primary:not(:hover) {
    animation: attention-pulse 2s infinite;
}

/* Parallax Effect for Sections */
.brand-story,
.products,
.models-section {
    transform-style: preserve-3d;
}

/* Smooth Fade-in for Images */
img {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

/* Depth Effect with Shadows */
.story-content,
.product-card,
.diamond-card {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.3);
}

/* Smooth Color Transitions */
* {
    transition: color 0.3s ease,
                background-color 0.3s ease,
                border-color 0.3s ease;
}

/* Focus States for Accessibility & UX */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(212, 197, 176, 0.5);
    outline-offset: 3px;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Performance Optimization */
.hero-perfume-image,
.perfume-glow-effect,
.particles {
    will-change: transform, opacity;
}

/* ===================================
   END PSYCHOLOGICAL EFFECTS
   =================================== */
}
