:root {
    --bg-main: #06090e;
    --bg-secondary: #0e131b;
    --bg-tertiary: #161e2b;
    --primary: #D4AF37; /* Luxury Gold */
    --primary-hover: #F2CA4C;
    --primary-glow: rgba(212, 175, 55, 0.4);
    --accent: #2A4365;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --card-bg: rgba(255, 255, 255, 0.02);
    --glass-bg: rgba(20, 25, 33, 0.6);
    --border-color: rgba(212, 175, 55, 0.15);
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(42, 67, 101, 0.2), transparent 25%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.text-white { color: #fff; }
.highlight { 
    background: linear-gradient(90deg, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Scroll Animation Classes (GSAP-like pure CSS) */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Navigation - Futuristic */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(6, 9, 14, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { text-decoration: none; font-family: var(--font-heading); font-size: 1.6rem; letter-spacing: 2px; }
.logo-bold { font-weight: 800; color: #fff; }
.logo-light { font-weight: 400; color: var(--primary); }

.nav-links a {
    text-decoration: none; color: var(--text-main); margin: 0 1.5rem;
    font-weight: 500; transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--primary); text-shadow: 0 0 10px var(--primary-glow); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: width 0.3s ease; box-shadow: 0 0 8px var(--primary)
}
.nav-links a:hover::after { width: 100%; }

.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 30px;
    padding: 2px;
    backdrop-filter: blur(10px);
}
.lang-switcher button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    margin: 0;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}
.lang-switcher button:hover {
    color: #fff;
    text-shadow: 0 0 5px var(--primary-glow);
}
.lang-switcher button.active {
    background: var(--primary);
    color: var(--bg-main);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s;
}
.mobile-menu-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    background: rgba(212, 175, 55, 0.05);
}
.hamburger {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    left: 0;
}
.hamburger::before { top: -5px; }
.hamburger::after { bottom: -5px; }

/* Mobile Navigation Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    z-index: 2000;
    background: rgba(6, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.5, 0, 0, 1);
}
html[dir="rtl"] .mobile-drawer {
    right: auto;
    left: -100%;
    border-left: none;
    border-right: 1px solid var(--border-color);
    box-shadow: 10px 0 30px rgba(0,0,0,0.8);
    transition: left 0.4s cubic-bezier(0.5, 0, 0, 1);
}
.mobile-drawer.active {
    right: 0;
}
html[dir="rtl"] .mobile-drawer.active {
    left: 0;
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}
.close-drawer-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.close-drawer-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}
.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.drawer-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    transition: all 0.3s;
}
.drawer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
    text-shadow: 0 0 8px var(--primary-glow);
}
html[dir="rtl"] .drawer-links a:hover {
    padding-left: 0;
    padding-right: 8px;
}

/* Quiz Results Page styling */
.quiz-results-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    animation: slideUpFade 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.result-circle-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
}
.circular-chart {
    display: block;
    width: 100%;
    height: 100%;
}
.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2.8;
}
.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke: var(--primary);
    transition: stroke-dasharray 1s ease-in-out;
    animation: progress 1.5s ease-out forwards;
}
@keyframes progress {
    0% {
        stroke-dasharray: 0, 100;
    }
}
.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 10px var(--primary-glow);
}
.quiz-results-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
    text-align: center;
}
.quiz-results-feedback {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 500px;
}

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    padding-top: 80px; overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(110deg, rgba(6, 9, 14, 0.95) 0%, rgba(6, 9, 14, 0.6) 50%, transparent 100%);
    z-index: 1;
}
html[dir="rtl"] .hero-overlay { background: linear-gradient(-110deg, rgba(6, 9, 14, 0.95) 0%, rgba(6, 9, 14, 0.6) 50%, transparent 100%); }

.hero-content {
    position: relative; z-index: 2; max-width: 800px;
    animation: slideUpFade 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes slideUpFade { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 { font-size: 4.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.5rem; border-radius: 8px; font-weight: 600; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-heading); cursor: pointer; border: none; font-size: 1.1rem;
    position: relative; overflow: hidden; z-index: 1;
}
.btn-primary {
    background: var(--primary); color: #000; box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease; z-index: -1;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6); }

.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); margin-left: 1rem; }
html[dir="rtl"] .btn-outline { margin-left: 0; margin-right: 1rem; }
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-5px); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }

/* Quick Stats Floating Bar */
.quick-stats {
    position: relative; margin-top: -60px; z-index: 10;
}
.stats-container {
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
    padding: 2.5rem; border-radius: 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.stat-card { text-align: center; }
.stat-number { font-size: 3rem; color: var(--primary); margin-bottom: 0.2rem; text-shadow: 0 0 15px var(--primary-glow); }
.stat-card p { color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.9rem; }

/* Sections Common */
section { padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-title { font-size: 3rem; margin-bottom: 1rem; position: relative; display: inline-block; }
.section-title::after {
    content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px; background: var(--primary); border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
}
html[dir="rtl"] .section-title::after { left: 50%; /* translateX handles RTL effectively centering */ }

/* Bento Grid Services */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}
.bento-item {
    background: var(--bg-tertiary); padding: 3rem; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03); transition: all 0.4s ease;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
}
.bento-item::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.1), transparent 50%);
    opacity: 0; transition: opacity 0.4s ease;
}
.bento-item:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); }
.bento-item:hover::before { opacity: 1; }

.bento-large { grid-column: span 2; }

.service-icon { width: 60px; height: 60px; color: var(--primary); margin-bottom: 2rem; transition: transform 0.4s; }
.bento-item:hover .service-icon { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 10px var(--primary-glow)); }
.bento-item h3 { font-size: 1.8rem; margin-bottom: 1rem; z-index: 2; position: relative; }
.bento-item p { color: var(--text-muted); font-size: 1.1rem; z-index: 2; position: relative; line-height: 1.6; }

/* Interactive Quiz Section */
.quiz-section { background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(135deg, var(--bg-main) 0%, #111a24 100%); position: relative; }
.quiz-container { max-width: 800px; margin: 0 auto; }
.quiz-card {
    padding: 4rem; text-align: center;
}
.quiz-question-title { font-size: 2rem; margin-bottom: 2rem; color: #fff; }
.quiz-options { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.quiz-option {
    background: var(--bg-secondary); border: 1px solid var(--border-color);
    padding: 1.5rem; border-radius: 12px; cursor: pointer; transition: all 0.3s;
    font-size: 1.2rem; font-weight: 500; font-family: var(--font-sans); color: var(--text-main);
    text-align: left;
}
html[dir="rtl"] .quiz-option { text-align: right; }
.quiz-option:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--primary); transform: translateX(10px); }
html[dir="rtl"] .quiz-option:hover { transform: translateX(-10px); }
.quiz-option.correct { background: rgba(46, 204, 113, 0.2); border-color: #2ecc71; color: #2ecc71; }
.quiz-option.wrong { background: rgba(231, 76, 60, 0.2); border-color: #e74c3c; color: #e74c3c; opacity: 0.6; }

.quiz-feedback { margin-top: 1rem; font-size: 1.2rem; font-weight: 700; min-height: 30px; }
.quiz-progress { margin-top: 3rem; display: flex; justify-content: center; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--bg-tertiary); transition: all 0.3s; }
.dot.active { background: var(--primary); box-shadow: 0 0 10px var(--primary); transform: scale(1.3); }

/* About - Split Design */
.about-container { display: flex; align-items: center; gap: 5rem; }
.about-content { flex: 1; }
.about-text { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-list { list-style: none; margin-top: 2rem; }
.about-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; font-size: 1.2rem; }
.about-icon { display: flex; align-items: center; justify-content: center; width: 35px; height: 35px; background: rgba(212,175,55,0.1); border-radius: 50%; color: var(--primary); }

.about-graphics { flex: 1; position: relative; perspective: 1000px; }
.floating-card {
    background: var(--glass-bg); padding: 3rem; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transform: rotateY(-15deg) rotateX(10deg); transition: transform 0.5s ease;
}
.about-graphics:hover .floating-card { transform: rotateY(0) rotateX(0); }
.floating-card h3 { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; }

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--bg-main);
    border-radius: 6px;
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Contact Grid & Local SEO Cards */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 3rem;
}
.contact-details-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}
.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-methods .info-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.contact-methods .info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}
.contact-methods .info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}
.contact-link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-all;
    font-size: 0.95rem;
}
.contact-link:hover {
    color: var(--primary);
}

.hours-card, .service-areas-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}
.hours-title, .areas-title {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.hours-list li {
    font-size: 1.05rem;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    padding-bottom: 0.5rem;
}
.hours-list li.closed-day {
    color: var(--text-muted);
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.area-tag {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s;
}
.area-tag:hover {
    background: var(--primary);
    color: var(--bg-main);
    box-shadow: 0 0 10px var(--primary-glow);
    transform: translateY(-2px);
}

/* Styled Local Map Component */
.contact-map-panel {
    display: flex;
    align-items: stretch;
}
.local-map-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    padding: 1rem;
    background: var(--glass-bg);
}
.local-svg-map {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.map-label {
    fill: var(--text-muted);
    font-size: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.map-label-hq {
    fill: var(--primary);
    font-size: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
}
.pulse-glow {
    transform-origin: center;
    animation: mapPulse 2s infinite ease-in-out;
}
.pulse-glow-large {
    transform-origin: center;
    animation: mapPulseLarge 2.5s infinite ease-in-out;
}
.map-pin-group {
    transform-origin: 260px 170px;
    animation: floatPin 3s infinite ease-in-out;
}

@keyframes mapPulse {
    0% { r: 6px; opacity: 0.8; }
    50% { r: 14px; opacity: 0.2; }
    100% { r: 6px; opacity: 0.8; }
}
@keyframes mapPulseLarge {
    0% { r: 12px; opacity: 0.8; }
    50% { r: 24px; opacity: 0.15; }
    100% { r: 12px; opacity: 0.8; }
}
@keyframes floatPin {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* Contact Form Card */
.contact-form-card {
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.form-row { display: flex; gap: 1rem; }
.form-group { margin-bottom: 2rem; flex: 1; }
.form-group label { display: block; margin-bottom: 0.8rem; font-weight: 500; font-size: 1.1rem; }
.form-input { 
    width: 100%; padding: 1.2rem; background: var(--bg-main); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: #fff; font-size: 1rem; transition: all 0.3s;
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 15px rgba(212,175,55,0.2); }

footer { background: #030407; padding: 4rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 4rem; }

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 1; }
    .about-container, .contact-card { flex-direction: column; }
}
@media (max-width: 768px) {
    section { padding: 4rem 1rem; }
    .container { padding: 0 1rem; }
    .navbar { padding: 0 !important; }
    .nav-container { height: 70px; padding: 0 1rem; }
    .logo { font-size: 1.3rem; }
    .nav-links { display: none; }
    .lang-switcher {
        margin-left: auto;
        margin-right: 0.8rem;
        padding: 1px;
    }
    html[dir="rtl"] .lang-switcher {
        margin-right: auto;
        margin-left: 0.8rem;
    }
    .lang-switcher button {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    .mobile-menu-btn { display: flex; }
    
    .hero { min-height: 85vh; padding-top: 90px; text-align: center; }
    .hero h1 { font-size: 2.2rem; line-height: 1.25; }
    .hero-subtitle { font-size: 1.05rem; margin-bottom: 2rem; margin-left: auto; margin-right: auto; }
    .hero-buttons { display: flex; justify-content: center; width: 100%; }
    .btn { padding: 0.8rem 2rem; font-size: 1rem; width: 100%; max-width: 280px; }
    
    .quick-stats { margin-top: -30px; }
    .stats-container { padding: 1.5rem 1rem; gap: 1rem; }
    .stat-card { flex: 1 1 40%; }
    .stat-number { font-size: 2rem; }
    .stat-card p { font-size: 0.75rem; }
    
    .section-header { margin-bottom: 3rem; }
    .section-title { font-size: 2.2rem; }
    
    .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
    .bento-item { padding: 2rem 1.5rem; }
    .bento-item h3 { font-size: 1.5rem; }
    .bento-item p { font-size: 1rem; }
    
    .quiz-card { padding: 2rem 1rem; }
    .quiz-question-title { font-size: 1.3rem; margin-bottom: 1.5rem; }
    .quiz-option { padding: 1rem; font-size: 0.95rem; }
    
    .about-container { gap: 2rem; }
    .about-text { font-size: 1.05rem; }
    .about-list li { font-size: 1.05rem; margin-bottom: 1rem; }
    .floating-card { padding: 2rem 1.5rem; transform: none !important; }
    .about-graphics:hover .floating-card { transform: none !important; }
    .floating-card h3 { font-size: 1.8rem; }
    
    .faq-container { gap: 1rem; }
    .faq-item { padding: 1.5rem; }
    .faq-question { font-size: 1.15rem; }
    .faq-answer { font-size: 0.95rem; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-methods { grid-template-columns: 1fr; }
    .contact-form-card { padding: 2.5rem 1.5rem !important; }
    .info-item { gap: 1rem; margin-bottom: 1.5rem; }
    .info-icon svg { width: 24px; height: 24px; }
    .info-text h4 { font-size: 1.1rem; }
    .info-text p { font-size: 1rem; }
    .form-row { flex-direction: column; gap: 0; }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label { font-size: 1rem; margin-bottom: 0.5rem; }
    .form-input { padding: 1rem; font-size: 0.95rem; }
}

/* Niches */
.niches-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
}
.niche-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.niche-card {
    background: var(--glass-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}
.niche-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
}
.niche-card h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.niche-card h3 .emoji {
    font-size: 2.5rem;
}
.niche-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
@media (max-width: 992px) { .niche-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .niche-cards { grid-template-columns: 1fr; } }

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    position: relative;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}
.pricing-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.pricing-card.premium {
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
    padding: 4rem 2rem;
}
.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}
.premium-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--primary);
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
html[dir="rtl"] .premium-badge {
    right: auto;
    left: -35px;
    transform: rotate(-45deg);
}
.pricing-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.pricing-price {
    font-size: 2.2rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.pricing-period {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 40px;
}
.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}
html[dir="rtl"] .pricing-features { text-align: right; }
.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.pricing-features li:last-child { border-bottom: none; }
.feature-check { color: #2ecc71; font-weight: bold; }
@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 3rem;}
    .pricing-card.premium { transform: scale(1); padding: 3rem 2rem; }
    .pricing-card.premium:hover { transform: translateY(-10px); }
}

/* FAQ Section */
.faq-section {
    background: var(--bg-main);
    padding: 6rem 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}
html[dir="rtl"] .faq-item:hover {
    transform: translateX(-5px);
}
.faq-question {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}
.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
}

