/* ==========================================
   FLOWER PERFUMES — Premium Luxury CSS
   Black & Gold Theme
   ========================================== */

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

/* CSS Variables */
:root {
    --bg-primary: #f8e9c1; /* Soft Golden Light background */
    --bg-secondary: #f2dec0; /* Warm sand secondary */
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-dark: #0a0a0a;
    --gold: #bd8e12; /* Richer gold for contrast on golden bg */
    --gold-light: #d4af37;
    --gold-dark: #8c6a0d;
    --gold-glow: rgba(189, 142, 18, 0.15);
    --gold-subtle: rgba(189, 142, 18, 0.08);
    --white: #ffffff;
    --text-primary: #000000; /* Absolute black for best readability */
    --text-secondary: #1a1a1a;
    --text-muted: #4d4d4d;
    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --border-gold: 2px solid rgba(189, 142, 18, 0.25);
}

html[dir="rtl"] {
    --font-display: 'Amiri', serif;
    --font-elegant: 'Amiri', serif;
    --font-body: 'Tajawal', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-flower {
    font-size: 3rem;
    color: var(--gold);
    animation: preloaderSpin 2s ease-in-out infinite;
}

@keyframes preloaderSpin {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 6px;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease forwards;
}

/* ==========================================
   GOLD PARTICLES BACKGROUND
   ========================================== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-fast);
    background: var(--bg-dark);
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
}

.logo-icon svg {
    transition: var(--transition-fast);
}

.logo:hover .logo-icon svg {
    transform: rotate(45deg);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

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

.logo-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
    line-height: 1;
}

.logo-title.gold {
    color: var(--gold);
}

.logo-subtitle {
    font-family: var(--font-elegant);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--gold);
    font-style: italic;
    margin-top: 2px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.lang-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.nav-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25d36620;
    color: #25d366;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.nav-wa-btn:hover {
    background: #25d366;
    color: white;
    transform: scale(1.1);
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover {
    color: var(--gold);
    transform: scale(1.1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

/* ==========================================
   MOBILE NAV
   ========================================== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.98);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    right: 2rem;
}

.close-btn {
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-btn:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mob-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    transition: var(--transition-fast);
    letter-spacing: 2px;
}

.mob-link:hover {
    color: var(--gold);
}

.mobile-lang {
    margin-top: 3rem;
    padding: 0.6rem 2rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 233, 193, 0.85); /* Matching Golden Light overlay */
}

/* Decorative thin gold line at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    z-index: 5;
}

/* Gold corner ornaments */
.hero-ornament {
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
    z-index: 3;
    opacity: 0.4;
}

.hero-ornament.top-left {
    top: 30px;
    left: 30px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.hero-ornament.top-right {
    top: 30px;
    right: 30px;
    border-top-width: 1px;
    border-right-width: 1px;
}

.hero-ornament.bottom-left {
    bottom: 30px;
    left: 30px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.hero-ornament.bottom-right {
    bottom: 30px;
    right: 30px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    font-weight: 600;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-primary); /* Changed to black */
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    margin-bottom: -0.5rem;
}

.hero-title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: 6.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ==========================================
   SECTION BASE STYLES
   ========================================== */
section {
    padding: 7rem 0;
    position: relative;
}

.section-label {
    display: block;
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.gold-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    margin: 1.2rem 0 2rem;
    position: relative;
}

.gold-divider.center {
    margin: 1.2rem auto 3rem;
}

.gold-divider::after {
    content: '✦';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.5rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background: var(--bg-secondary);
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: relative;
    width: 70%;
    height: 400px;
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    overflow: hidden;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

.img-border {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    z-index: 2;
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.exp-number {
    font-size: 1.8rem;
    color: var(--bg-primary);
    line-height: 1;
}

.exp-text {
    font-family: var(--font-body);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-primary);
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}

/* Features */
.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* ==========================================
   COLLECTION SECTION
   ========================================== */
.collection-section {
    background: var(--bg-primary);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.collection-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-fast);
}

.collection-card:hover {
    transform: translateY(-8px);
}

.card-image {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.collection-card:hover .card-image img {
    transform: scale(1.08);
    filter: brightness(0.6);
}

.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.card-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    transform: translateY(20px);
}

.collection-card:hover .card-btn {
    transform: translateY(0);
}

.card-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
}

html[dir="rtl"] .card-badge {
    left: auto;
    right: 15px;
}

.card-info {
    padding: 1.5rem 0.5rem;
    background: transparent;
    transition: var(--transition-fast);
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.product-type {
    font-family: var(--font-elegant);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1rem;
    height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.product-emi {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.emi-link {
    color: var(--gold);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.emi-link:hover {
    text-decoration: underline;
}

.product-sizes {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.size-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.size-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.product-actions {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.btn-check {
    background: var(--gold);
    color: #fff;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    flex-grow: 1;
    transition: var(--transition-fast);
}

.btn-check:hover {
    background: var(--gold-dark);
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.4rem;
    transition: var(--transition-fast);
}

.cart-icon:hover {
    background: var(--gold-subtle);
}

.card-badge.premium {
    background: var(--gold);
    color: #fff;
    font-size: 0.6rem;
    padding: 0.3rem 0.8rem;
    letter-spacing: 1px;
}

.collection-card.featured .card-image {
    height: 420px;
}

/* ==========================================
   WHATSAPP BANNER
   ========================================== */
.wa-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.wa-banner-bg {
    position: absolute;
    inset: 0;
}

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

.wa-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.wa-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.wa-banner-text h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.wa-banner-text p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.wa-banner-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wa-contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 8px;
    transition: var(--transition-fast);
    min-width: 250px;
}

.wa-contact-card:hover {
    background: rgba(37, 211, 102, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}

.wa-contact-card i {
    font-size: 2.2rem;
    color: #25d366;
}

.wa-contact-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.wa-contact-card span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: var(--bg-secondary);
    border-top: var(--border-gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 1rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 2rem;
    background: var(--bg-card);
    border: var(--border-gold);
    transition: var(--transition-fast);
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: var(--bg-card-hover);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.map-wrapper {
    position: relative;
}

.map-container {
    height: 100%;
    min-height: 400px;
    border: var(--border-gold);
    overflow: hidden;
}

.map-container iframe {
    filter: grayscale(100%) contrast(85%);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(20%) contrast(90%);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #000000; /* Pure black footer for contrast */
    padding: 4rem 0 0;
    border-top: 1px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links-col a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0.4rem 0;
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

html[dir="rtl"] .footer-links-col a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin-bottom: 2rem;
}

.footer-bottom p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ==========================================
   FLOATING WHATSAPP BTN
   ========================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-fast);
    animation: waPulse 2s ease-in-out infinite;
}

html[dir="rtl"] .floating-wa {
    right: auto;
    left: 30px;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews-section {
    background: var(--bg-secondary);
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold-subtle);
    line-height: 1;
}

.review-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--bg-dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.author-info h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--gold);
}

/* Modal CSS */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.review-modal-content {
    background: var(--bg-primary);
    padding: 3rem 2.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.modal-overlay.active .review-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.review-modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

#review-form input,
#review-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

#review-form input:focus,
#review-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.star-rating-select {
    text-align: center;
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.star-rating-select i {
    transition: var(--transition-fast);
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {

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

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

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

    .about-images {
        height: 400px;
        margin-bottom: 2rem;
    }

    .hero-title-accent {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title-accent {
        font-size: 3rem;
    }

    .hero-title-line {
        font-size: 1.3rem;
    }

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

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

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

    .collection-card.featured .card-image {
        height: 420px;
    }

    .wa-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .wa-banner-cards {
        justify-content: center;
    }

    .footer-grid {
        gap: 2rem;
    }

    .hero-ornament {
        width: 40px;
        height: 40px;
    }

    section {
        padding: 5rem 0;
    }
}

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

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.7rem;
    }

    .about-images {
        height: 350px;
    }

    .about-img-main {
        width: 80%;
        height: 300px;
    }

    .about-img-secondary {
        width: 60%;
        height: 220px;
    }

    .wa-contact-card {
        min-width: 100%;
    }
}