/* Bahar Premium CSS Design System - RTL & 3D Interactive Focused */

:root {
    --bg-dark: #030807;
    --bg-card: rgba(8, 24, 20, 0.55);
    --bg-card-hover: rgba(14, 38, 32, 0.75);
    --accent-gold: #e5c158;
    --accent-gold-rgb: 229, 193, 88;
    --accent-emerald: #10b981;
    --accent-emerald-rgb: 16, 185, 129;
    --text-main: #f3f4f6;
    --text-muted: #a0aec0;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(225, 190, 80, 0.25);
    --border-active: rgba(16, 185, 129, 0.4);
    --font-kurdish: 'NRT', 'Readex Pro', 'Outfit', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Scrollbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-kurdish);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.6);
}

/* Custom Cursors */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
}

.custom-cursor-glow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(229, 193, 88, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease-out;
}

/* Ambient Ambient Sound Control */




/* Background Image Setup */
.video-background-wrapper {
    position: fixed;
    top: -10vh; /* Extra offset to accommodate scroll parallax without gaps */
    left: 0;
    width: 100%;
    height: 120vh; /* Taller than screen to enable smooth shift */
    z-index: -2;
    overflow: hidden;
    background: url('assets/images/forest_bg.jpg') no-repeat center top;
    background-size: cover;
    opacity: 0.55; /* Soft background blend */
    filter: saturate(0.9) contrast(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(3, 8, 7, 0.2) 0%, rgba(3, 8, 7, 0.85) 80%);
    pointer-events: none;
}

/* Global App Wrapper */
.app-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
.main-header {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1200px;
    background: rgba(10, 25, 20, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 0 30px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 25px;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b89223 100%);
    color: #030807;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(229, 193, 88, 0.2);
    transition: var(--transition-bounce);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(229, 193, 88, 0.4);
}

/* Sections Base */
.section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding-top: 130px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-glow {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.trust-features {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(8px);
}

.feature-badge .icon {
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: inline-block;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #0c825b 100%);
    color: white;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* 3D Glass Showcase Card */
.showcase-container {
    perspective: 1000px;
}

.glass-3d-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    padding: 24px;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(229, 193, 88, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.video-frame {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #000;
    border: 1px solid var(--border-glass);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.1);
}

.card-details {
    margin-top: 20px;
    text-align: center;
}

.card-details h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.card-details p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Section Common Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Mixer Grid Layout */
.mixer-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Visualizer Card */
.mixer-visualizer-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.visualizer-container {
    height: 380px;
    background: rgba(5, 15, 12, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bottle-silhouette {
    width: 140px;
    height: 250px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 70px 70px 20px 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bottle-silhouette::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 35px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.liquid-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Dynamic fill */
    background: linear-gradient(0deg, rgba(16, 185, 129, 0.6) 0%, rgba(229, 193, 88, 0.4) 100%);
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.bottle-reflection {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 15px;
    height: 90%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 10px;
}

/* Blend Status Panel */
.blend-status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 25px;
    padding: 24px;
    backdrop-filter: blur(15px);
}

.blend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 12px;
}

.blend-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.btn-text {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-family: var(--font-kurdish);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.btn-text:hover {
    color: white;
    text-shadow: 0 0 8px rgba(229, 193, 88, 0.4);
}

.selected-ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    min-height: 50px;
    align-content: flex-start;
}

.placeholder-text {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    width: 100%;
    padding: 15px 0;
}

.ingredient-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ingredient-pill .remove-btn {
    cursor: pointer;
    opacity: 0.6;
    font-weight: bold;
    transition: opacity 0.2s;
}

.ingredient-pill .remove-btn:hover {
    opacity: 1;
    color: #ef4444;
}

/* Blend Stats Chart inside customizer */
.blend-stats {
    margin-top: 24px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
    animation: fadeIn 0.4s ease-out;
}

.stat-bar-group {
    margin-bottom: 14px;
}

.stat-bar-group label {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blend-effect-text {
    font-size: 13px;
    color: var(--accent-gold);
    line-height: 1.6;
    margin-top: 15px;
    background: rgba(229, 193, 88, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(229, 193, 88, 0.1);
}

/* Ingredients Grid Selector Panel */
.ingredients-selector-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 32px;
    backdrop-filter: blur(15px);
    max-height: 720px;
    overflow-y: auto;
}

.ingredients-selector-panel h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.instruction-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ingredient-selection-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.ingredient-selection-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    border-color: var(--border-gold);
}

.ingredient-selection-card.selected {
    border-color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.05);
}

.card-info-side {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ingredient-icon {
    font-size: 22px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.ingredient-selection-card:hover .ingredient-icon {
    transform: scale(1.1) rotate(10deg);
}

.ingredient-names {
    display: flex;
    flex-direction: column;
}

.name-ku {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.name-en {
    font-size: 10px;
    color: var(--text-muted);
}

.add-circle-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.ingredient-selection-card:hover .add-circle-btn {
    border-color: white;
    color: white;
}

.ingredient-selection-card.selected .add-circle-btn {
    background: var(--accent-emerald);
    border-color: var(--accent-emerald);
    color: white;
}

/* Ingredients Showroom Cards Slider */
.showroom-section {
    padding-bottom: 50px;
}

.showroom-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.showroom-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 25px;
    padding: 30px;
    backdrop-filter: blur(15px);
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.showroom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 70%, rgba(var(--accent-rgb, 16, 185, 129), 0.15) 100%);
    pointer-events: none;
}

.showroom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--accent-rgb, 16, 185, 129), 0.35);
}

.showroom-card-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-glass);
}

.showroom-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showroom-card:hover .showroom-card-img {
    transform: scale(1.08);
}

.showroom-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.showroom-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Verification Section */
.verification-section {
    display: flex;
    align-items: center;
}

.verification-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 35px;
    padding: 50px;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.verification-info h2 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 20px;
}

.verification-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.badge-verified {
    background: rgba(229, 193, 88, 0.1);
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.code-helper-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 16px 20px;
}

.code-helper-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.code-helper-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.code-helper-card code {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Outfit', monospace;
    font-size: 13px;
}

/* Verification Input & Results Form */
.verification-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-box {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: 25px;
    padding: 30px;
}

.verification-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 6px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.input-group:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(229, 193, 88, 0.15);
}

.input-group input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 18px;
    color: white;
    font-family: var(--font-kurdish);
    font-size: 14px;
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-group button {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b89223 100%);
    color: #030807;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-family: var(--font-kurdish);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.input-group button:hover {
    transform: scale(1.05);
}

.verification-result {
    min-height: 120px;
    border: 1px dashed var(--border-glass);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition-smooth);
}

.result-placeholder {
    color: var(--text-muted);
    font-size: 13px;
}

/* Success Card details */
.success-result-card {
    text-align: center;
    width: 100%;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--accent-emerald);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.success-result-card h4 {
    font-size: 16px;
    color: var(--accent-emerald);
    margin-bottom: 6px;
}

.success-result-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Failure Card details */
.fail-result-card {
    text-align: center;
    width: 100%;
    animation: shake 0.5s ease-in-out;
}

.fail-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: #ef4444;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.fail-result-card h4 {
    font-size: 16px;
    color: #ef4444;
    margin-bottom: 6px;
}

.fail-result-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Footer styling */
.main-footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 30px 0;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.social-icon:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: rgba(229, 193, 88, 0.05);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-features {
        justify-content: center;
    }
    
    .showcase-container {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .mixer-grid {
        grid-template-columns: 1fr;
    }
    
    .showroom-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .verification-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .app-container {
        padding: 0 15px;
    }
    
    .main-header {
        position: fixed !important;
        top: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 20px) !important;
        height: 56px !important;
        padding: 0 12px !important;
        border-radius: 28px !important;
        background: rgba(10, 25, 20, 0.92) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    }
    
    .logo-container {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        gap: 8px !important;
        flex-direction: row !important;
        align-items: center !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        flex-grow: 1 !important;
        max-width: calc(100% - 50px) !important;
        padding: 4px 0 !important;
        scrollbar-width: none !important;
        margin-right: 10px !important;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none !important;
    }

    .brand-name {
        display: none; /* Hide name on mobile to save width */
    }

    .brand-logo {
        height: 28px;
    }
    
    .nav-menu {
        display: flex;
        gap: 6px;
        flex-direction: row;
        align-items: center;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 78%;
        padding: 6px 0;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    .nav-menu::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    
    .nav-link {
        font-size: 10px;
        padding: 5px 8px;
        flex-shrink: 0;
        border-radius: 12px;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-section {
        padding-top: 100px; /* Prevent overlap with the fixed header */
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .showroom-slider {
        grid-template-columns: 1fr;
    }
    
    }

/* Reviews styling - Horizontal Scrolling Marquee */
.reviews-section {
    padding-bottom: 80px;
    overflow: hidden;
}

.marquee-container {
    direction: ltr !important;
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    padding: 0 15px;
    animation: scrollMarquee 80s linear infinite;
}

/* Continuous scrolling without stopping */

.review-card {
    direction: rtl !important;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 24px;
    width: 380px;
    backdrop-filter: blur(15px);
    transition: var(--transition-bounce);
    flex-shrink: 0;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.user-avatar {
    font-size: 38px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-header h4 {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.verified-purchase {
    font-size: 11px;
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.verified-purchase i {
    font-size: 10px;
}

.rating {
    margin-right: auto; /* Align left in RTL */
    font-size: 11px;
    color: var(--accent-gold);
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Weight Guidance Section Styling */
.weight-guidance-section {
    padding: 80px 0;
}

.guidance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.guidance-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    transition: var(--transition-bounce);
}

.guidance-card.physical {
    border-color: rgba(16, 185, 129, 0.15);
}

.guidance-card.fantasy {
    border-color: rgba(229, 193, 88, 0.15);
}

.guidance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.guidance-card.physical:hover {
    border-color: var(--accent-emerald);
}

.guidance-card.fantasy:hover {
    border-color: var(--accent-gold);
}

.guidance-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.guidance-card.physical h3 {
    color: var(--accent-emerald);
}

.guidance-card.fantasy h3 {
    color: var(--accent-gold);
}

.card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.guide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guide-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.guide-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.guide-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guide-text strong {
    font-size: 15px;
    color: white;
}

.guide-text span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .guidance-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Certificates Section Styling */
.certificates-section {
    padding: 80px 0;
}

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

.certificate-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 25px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: var(--transition-bounce);
}

.certificate-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.category-icon {
    font-size: 20px;
    color: var(--accent-gold);
    background: rgba(229, 193, 88, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(229, 193, 88, 0.2);
}

.category-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: white;
}

.category-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 15px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.cert-item:last-child {
    margin-bottom: 0;
}

.cert-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.05);
}

.cert-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cert-details strong {
    font-size: 14px;
    color: white;
}

.cert-details p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

/* Certificates styles cleaned up */

/* Premium Enhancements for Certificates Section */
.certificate-category-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Gold line accent on top of category cards */
.certificate-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.certificate-category-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--accent-emerald) 0%, var(--accent-gold) 50%, var(--accent-emerald) 100%);
}

.category-icon {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-category-card:hover .category-icon {
    transform: rotateY(360deg);
    background: rgba(229, 193, 88, 0.15);
    border-color: var(--border-gold);
}

.cert-item {
    border-left: 2px solid transparent;
    padding-left: 0px;
    transition: var(--transition-smooth);
}

.certificate-category-card:hover .cert-item {
    padding-left: 4px;
}

.cert-badge {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.certificate-category-card:hover .cert-badge {
    border-color: var(--border-gold);
    box-shadow: 0 0 12px rgba(229, 193, 88, 0.2);
    color: white;
    background: rgba(229, 193, 88, 0.1);
}

.cert-details strong {
    transition: color 0.3s ease;
}

.cert-item:hover .cert-details strong {
    color: var(--accent-gold);
}

/* Scroll snap scrollbar styling for mobile nav */
.nav-menu {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.nav-link {
    scroll-snap-align: start;
}

/* Mobile background fix to prevent black blocks on scroll */
@media (max-width: 768px) {
    .video-background-wrapper {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-attachment: scroll !important;
    }
}

/* Footer Contact Styles */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact h4 {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item {
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--accent-emerald);
}

.contact-item a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-bounce);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--accent-gold);
    color: #030807;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Explicit NRT Font family override for WhatsApp and footer contact */
.whatsapp-badge, .footer-contact, .contact-item, .footer-brand h3, .footer-brand p {
    font-family: var(--font-kurdish) !important;
}

/* Mobile Responsiveness Patches (Header, Footer, Menu) */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 20px 20px 20px !important;
        margin-top: 50px !important;
    }
    
    .footer-top {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px !important;
        width: 100% !important;
    }
    
    .footer-brand, .footer-contact {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .contact-item {
        justify-content: center !important;
        width: 100% !important;
    }
    
    /* Ensure hero elements center on mobile */
    .hero-content h1 {
        font-size: 28px !important;
    }
    
    /* Prevent overflow on cards */
    .review-card {
        width: 290px !important;
        padding: 16px !important;
    }
    
    .review-text {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .main-header {
        width: calc(100% - 16px) !important;
        padding: 0 8px !important;
    }
    
    .nav-menu {
        gap: 4px !important;
        margin-right: 6px !important;
    }
    
    .nav-link {
        font-size: 9.5px !important;
        padding: 4px 6px !important;
    }
    
    .brand-logo {
        height: 24px !important;
    }
}
