/* ==================== */
/* CSS Variables & Reset */
/* ==================== */

:root {
    /* Colors — Luxury Navy & Gold palette (matching style 1) */
    --navy-blue: #1b2a3b;
    --dark-navy: #0d1821;
    --mid-navy: #243447;
    --gold: #c8a96e;
    --gold-light: #dfc28e;
    --gold-dark: #a8893e;
    --cream: #f8f4ec;
    --cream-dark: #efe9dc;
    --white: #ffffff;
    --text-dark: #1e2d3d;
    --text-mid: #4a5568;
    --text-light: #718096;
    --light-bg: #f5f1e9;

    /* Legacy aliases kept for compatibility */
    --color-primary-dark: #0d1821;
    --color-secondary-dark: #1b2a3b;
    --color-gold: #c8a96e;
    --color-gold-light: #dfc28e;
    --color-white: #ffffff;
    --color-light-gray: #f5f1e9;
    --color-text-dark: #1e2d3d;
    --color-text-medium: #4a5568;
    --navy-dark: #0d1821;
    --text-light-alias: #718096;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 12px;

    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ══════════════════════════════
   NAVBAR — cream/white light (matching style 1)
   ══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255, 252, 246, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(27, 42, 59, 0.08);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.logo img { height: 50px; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--gold-dark); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px; height: 3px;
    background: var(--navy-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px); left: 0;
    background: var(--cream);
    width: 220px;
    list-style: none; padding: 10px 0; margin: 0;
    box-shadow: 0 8px 24px rgba(27, 42, 59, 0.12);
    border-radius: 8px;
    border: 1px solid rgba(200, 169, 110, 0.15);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px; background: transparent;
}

.dropdown-menu li { border-bottom: 1px solid rgba(200, 169, 110, 0.1); }
.dropdown-menu li:last-child { border-bottom: none; }

.dropdown-menu li a {
    display: block;
    padding: 11px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(200, 169, 110, 0.08);
    color: var(--gold-dark);
    padding-left: 25px;
}

/* Language Switcher */
.lang-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark) !important;
}

.lang-link:hover { color: var(--gold-dark) !important; }

.flag-icon {
    width: 20px; height: 14px;
    object-fit: cover; border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* ══════════════════════════════
   HERO SECTION — unchanged
   ══════════════════════════════ */
.hero-section {
    position: relative;
    height: 690px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1600&h=900&fit=crop') center/cover;
    margin-top: 60px;
    background-blend-mode: overlay;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title::after {
    content: '';
    display: block;
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 14px auto 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.92;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

.scroll-indicator {
    display: inline-flex;
    color: var(--gold-light);
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ══════════════════════════════
   PRODUCT INTRO — white with gold accents
   ══════════════════════════════ */
.product-intro {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    position: relative;
}

.product-intro::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: var(--spacing-lg);
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.decorative-icon {
    color: var(--gold);
    margin: var(--spacing-md) 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.intro-description {
    color: var(--text-mid);
    margin-bottom: var(--spacing-sm);
    line-height: 1.85;
    font-size: 1.05rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 30px;
    cursor: pointer;
    margin-top: var(--spacing-md);
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(13, 24, 33, 0.25);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--mid-navy) 0%, var(--navy-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 24, 33, 0.35);
}

/* Product Circles */
.product-circles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 25px;
    padding: 20px 0;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatIn 0.8s ease forwards;
    opacity: 0;
    transition: transform 0.3s ease;
}

.circle-item:nth-child(1)  { animation-delay: 0.10s; }
.circle-item:nth-child(2)  { animation-delay: 0.15s; }
.circle-item:nth-child(3)  { animation-delay: 0.20s; }
.circle-item:nth-child(4)  { animation-delay: 0.25s; }
.circle-item:nth-child(5)  { animation-delay: 0.30s; }
.circle-item:nth-child(6)  { animation-delay: 0.35s; }
.circle-item:nth-child(7)  { animation-delay: 0.40s; }
.circle-item:nth-child(8)  { animation-delay: 0.45s; }
.circle-item:nth-child(9)  { animation-delay: 0.50s; }
.circle-item:nth-child(10) { animation-delay: 0.55s; }
.circle-item:nth-child(11) { animation-delay: 0.60s; }
.circle-item:nth-child(12) { animation-delay: 0.65s; }
.circle-item:nth-child(13) { animation-delay: 0.70s; }
.circle-item:nth-child(14) { animation-delay: 0.75s; }
.circle-item:nth-child(15) { animation-delay: 0.80s; }

@keyframes floatIn {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.circle-image {
    width: 130px; height: 130px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(27, 42, 59, 0.12);
}

.circle-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.circle-item:hover { transform: scale(1.05); }

.circle-item:hover .circle-image {
    transform: rotate(5deg);
    box-shadow: 0 8px 30px rgba(200, 169, 110, 0.35);
    border-color: var(--gold-light);
}

.circle-item:hover .circle-image img { transform: scale(1.15); }

.circle-label {
    margin-top: 12px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.2px;
    line-height: 1.4;
    text-transform: uppercase;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════
   TRUST / STATISTICS — dark navy overlay (background unchanged)
   ══════════════════════════════ */
.trust-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background:
        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600') center/cover;
    background-blend-mode: overlay;
    color: var(--white);
    text-align: center;
}

.trust-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        160deg,
        rgba(13, 24, 33, 0.90) 0%,
        rgba(27, 42, 59, 0.85) 50%,
        rgba(13, 24, 33, 0.90) 100%
    );
}

.trust-content { position: relative; z-index: 2; }

.trust-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.3;
    color: var(--cream);
}

.trust-title::after {
    content: '';
    display: block;
    width: 70px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 14px auto 0;
}

.trust-description {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(248, 244, 236, 0.82);
}

.statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
    min-width: 160px;
}

.stat-item:hover {
    background: rgba(200, 169, 110, 0.08);
    border-color: rgba(200, 169, 110, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(248, 244, 236, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(200, 169, 110, 0.25);
}

/* ══════════════════════════════
   CAROUSEL SECTION — cream background
   ══════════════════════════════ */
.carousel-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.container-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-header {
    text-align: center;
    margin-bottom: 60px;
}

.carousel-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-light {
    font-weight: 400;
    color: var(--text-mid);
    display: block;
}

.title-bold {
    font-weight: 700;
    color: var(--navy-blue);
    display: block;
}

.carousel-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: var(--font-body);
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.carousel-container-new {
    overflow: hidden;
    padding: 30px 0 40px;
}

.carousel-slide-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
}

.carousel-slide-track:active { cursor: grabbing; }

/* Product Cards */
.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(27, 42, 59, 0.08);
    border: 1px solid rgba(200, 169, 110, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(27, 42, 59, 0.15);
    border-color: rgba(200, 169, 110, 0.3);
}

/* Gold Frame Corners */
.card-frame {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.frame-corner {
    position: absolute;
    width: 50px; height: 50px;
    border: 3px solid var(--gold);
}

.frame-corner.tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.frame-corner.br { bottom: 20px; right: 20px; border-left: none; border-top: none; }

/* Card Image */
.card-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-wrapper img { transform: scale(1.15); }

/* Card Content */
.card-content {
    padding: 30px 25px 25px;
    text-align: center;
}

.card-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.card-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(168, 137, 62, 0.35);
}

.card-btn:hover {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 24, 33, 0.3);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid rgba(200, 169, 110, 0.3);
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(27, 42, 59, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    color: var(--navy-blue);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(200, 169, 110, 0.4);
}

.carousel-btn:active { transform: translateY(-50%) scale(0.95); }
.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }
.carousel-btn svg { width: 24px; height: 24px; }

/* Dot Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(27, 42, 59, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.indicator-dot:hover {
    background: var(--gold-dark);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: var(--gold);
    width: 35px;
    border-radius: 6px;
}

/* ══════════════════════════════
   CONTACT SECTION — dark navy
   ══════════════════════════════ */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(160deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.contact-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,169,110,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: var(--spacing-md);
}

.contact-title::after {
    content: '';
    display: block;
    width: 70px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 14px auto 0;
}

.contact-subtitle {
    color: rgba(248, 244, 236, 0.75);
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(248, 244, 236, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.12);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(168, 137, 62, 0.35);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 137, 62, 0.5);
}

.form-notification {
    margin-top: var(--spacing-md);
    padding: 1rem;
    border-radius: var(--border-radius);
    display: none;
    font-weight: 600;
}

.form-notification.success {
    display: block;
    background: rgba(76, 175, 80, 0.15);
    color: #6fcf7f;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.form-notification.error {
    display: block;
    background: rgba(244, 67, 54, 0.15);
    color: #f07f78;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

/* ══════════════════════════════
   FOOTER — dark navy
   ══════════════════════════════ */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 70px 0 24px;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.footer-description {
    color: rgba(248, 244, 236, 0.6);
    line-height: 1.85;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col ul li a {
    color: rgba(248, 244, 236, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-col ul li i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    color: var(--gold);
}


.footer-col ul li span {
    color: rgba(248, 244, 236, 0.65);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li span:hover {
    color: var(--gold-light);
}

.social-links, .social-links-footer {
    display: flex;
    gap: 1rem;
}

.social-links a,
.social-links-footer a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(248, 244, 236, 0.7);
    transition: var(--transition);
    border: 1px solid rgba(200, 169, 110, 0.15);
}

.social-links a:hover,
.social-links-footer a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(168, 137, 62, 0.35);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(248, 244, 236, 0.4);
    font-size: 0.88rem;
}

/* ══════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px; left: 30px;
    width: 50px; height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.active { opacity: 1; visibility: visible; }

.scroll-top:hover {
    background: var(--navy-blue);
    transform: translateY(-5px);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1200px) {
    .product-card { flex: 0 0 calc(50% - 15px); }
    .product-circles { grid-template-columns: repeat(4, 1fr); gap: 25px 20px; }
}

@media (max-width: 1024px) {
    .statistics { gap: 2rem; flex-wrap: wrap; }
    .stat-divider { display: none; }
}

@media (max-width: 900px) {
    .product-circles { grid-template-columns: repeat(3, 1fr); gap: 25px 15px; }
    .circle-image { width: 110px; height: 110px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%; top: 70px;
        flex-direction: column;
        background: var(--cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.08);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active { left: 0; }

    .dropdown-menu {
        position: static;
        opacity: 1; visibility: hidden;
        transform: none; box-shadow: none;
        border-radius: 0;
        background: rgba(200,169,110,0.06);
        width: 100%; padding: 0; border: none;
        border-left: 3px solid var(--gold);
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s;
    }

    .dropdown.open .dropdown-menu { visibility: visible; max-height: 300px; }
    .dropdown-menu li a { padding: 12px 24px 12px 32px; }

    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .carousel-section { padding: 60px 0; }
    .container-carousel { padding: 0 20px; }
    .carousel-wrapper { padding: 0 50px; }
    .carousel-title { font-size: 2rem; }
    .product-card { flex: 0 0 100%; }
    .carousel-btn { width: 45px; height: 45px; }
    .carousel-btn svg { width: 20px; height: 20px; }
    .card-img-wrapper { height: 220px; }
    .card-name { font-size: 1.2rem; }
    .frame-corner { width: 35px; height: 35px; border-width: 2px; }
    .frame-corner.tl, .frame-corner.tr, .frame-corner.bl, .frame-corner.br { top: 15px; left: 15px; }
    .frame-corner.tr, .frame-corner.br { right: 15px; left: auto; }
    .frame-corner.bl, .frame-corner.br { bottom: 15px; top: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .statistics { flex-direction: column; gap: 1.5rem; }
    .intro-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .product-circles { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
    .circle-image { width: 100px; height: 100px; }
    .circle-label { font-size: 10px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .stat-number { font-size: 3rem; }
    .carousel-wrapper { padding: 0 40px; }
    .carousel-btn { width: 40px; height: 40px; }
    .carousel-btn-prev { left: -5px; }
    .carousel-btn-next { right: -5px; }
    .carousel-slide-track { gap: 20px; }
    .card-content { padding: 20px 15px 20px; }
    .card-btn { padding: 10px 30px; font-size: 0.85rem; }
}

/* ══════════════════════════════
   RTL SUPPORT
   ══════════════════════════════ */
body.rtl { direction: rtl; font-size: 1rem; }
body.rtl .nav-menu { direction: rtl; }
body.rtl .logo { order: 2; }
body.rtl .nav-menu { order: 1; }

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');
body.rtl, body.rtl * { font-family: 'Cairo', 'Tajawal', sans-serif !important; }
body.rtl h1, body.rtl h2 { font-family: 'Cairo', serif !important; }
body.rtl h1 { font-size: 4rem !important; }
body.rtl h2 { font-size: 2.75rem !important; }
body.rtl h3 { font-size: 1.15em; }
body.rtl p, body.rtl li, body.rtl a,
body.rtl span, body.rtl input,
body.rtl textarea, body.rtl button { font-size: 1.05em; }
body.rtl .nav-menu a { font-size: 1.05em; }

@media (max-width: 768px) {
    .dropdown.open > span::after {
        transform: rotate(-135deg);
        margin-top: 2px;
    }
}

@media (min-width: 769px) {
    .nav-wrapper { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
    .nav-menu { display: flex; align-items: center; }
}