@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&family=Bellefair&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Clean Black & White Base - Light Mode */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --border-light: #e5e5e5;
    --border-medium: #d4d4d4;
    
    --text-primary: #171717;
    --text-secondary: #525252;
    --text-muted: #a3a3a3;
    --text-inverse: #ffffff;
    
    --surface-dark: #171717;
    --surface-darker: #0a0a0a;
    
    /* Accent Colors - Used Sparingly */
    --accent-orange: #f97316;
    --accent-green: #22c55e;
    --accent-blue: #3b82f6;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #171717;
    --bg-tertiary: #262626;
    --border-light: #262626;
    --border-medium: #404040;
    
    --text-primary: #fafafa;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    --text-inverse: #0a0a0a;
    
    --surface-dark: #171717;
    --surface-darker: #0a0a0a;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Custom scrollbar - minimal */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

::selection {
    background: var(--surface-dark);
    color: var(--text-inverse);
}

[data-theme="dark"] ::selection {
    background: var(--text-inverse);
    color: var(--surface-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY - Elegant & Delicate
   ======================================== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Bellefair', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-primary);
}

/* ========================================
   DARK MODE TOGGLE
   ======================================== */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-medium);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
    margin-left: 12px;
}

html[dir="rtl"] .theme-toggle {
    margin-left: 0;
    margin-right: 12px;
}

.theme-toggle:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

/* ========================================
   NAVIGATION - Minimal & Clean
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .navbar {
    background: rgba(10, 10, 10, 0.9);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo img {
    height: 100px;
    width: auto;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .logo img {
    filter: brightness(0) invert(1);
}

.logo img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: width var(--transition-normal);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-primary);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition-normal);
}

/* ========================================
   BUTTONS - Clean & Bold
   ======================================== */
.btn-primary {
    background: var(--surface-dark);
    color: var(--text-inverse);
    padding: 14px 32px;
    border: 2px solid var(--surface-dark);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    font-family: 'Heebo', sans-serif;
}

[data-theme="dark"] .btn-primary {
    background: var(--bg-primary);
    color: var(--text-inverse);
    border-color: var(--bg-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
}

[data-theme="dark"] .btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 32px;
    border: 2px solid var(--border-medium);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-normal);
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: 'Heebo', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: var(--bg-tertiary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ========================================
   HERO SECTION - Bold & Clean
   ======================================== */
.hero {
    min-height: 100vh;
    background: var(--surface-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle geometric pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.2) 0%, 
        rgba(10, 10, 10, 0.5) 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 24px;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo img {
    height: 220px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', 'Bellefair', Georgia, serif;
}

.hero-content h1 span:first-child {
    display: block;
    font-size: 0.95rem;
    font-family: 'Courier New', 'Consolas', monospace;
    letter-spacing: 0.08em;
    color: var(--accent-orange);
    margin-top: 20px;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-content h1 span:last-child {
    display: block;
    font-size: 3.2rem;
    font-family: 'Cormorant Garamond', 'Bellefair', Georgia, serif;
    letter-spacing: 0.02em;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 44px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-family: 'Heebo', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: #ffffff;
    color: var(--surface-darker);
    border-color: #ffffff;
}

.hero .btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

.hero .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}


/* ========================================
   SECTION STYLING - Clean Layout
   ======================================== */
section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
    transition: background-color var(--transition-normal);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-orange);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 6px;
}

[data-theme="dark"] .section-tag {
    background: rgba(249, 115, 22, 0.15);
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION - Clean Grid
   ======================================== */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--border-light) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.image-placeholder::before {
    content: '◇';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.4;
}

.image-placeholder svg {
    display: none;
}

/* ========================================
   FEATURES SECTION - Card Grid
   ======================================== */
.features {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    position: relative;
}

.feature-card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Accent colors on specific cards */
.feature-card:nth-child(1):hover { border-bottom: 3px solid var(--accent-orange); }
.feature-card:nth-child(2):hover { border-bottom: 3px solid var(--accent-green); }
.feature-card:nth-child(3):hover { border-bottom: 3px solid var(--accent-blue); }
.feature-card:nth-child(4):hover { border-bottom: 3px solid var(--accent-blue); }
.feature-card:nth-child(5):hover { border-bottom: 3px solid var(--accent-orange); }
.feature-card:nth-child(6):hover { border-bottom: 3px solid var(--accent-green); }

.feature-card-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   GALLERY SECTION - Clean Grid
   ======================================== */
.gallery {
    background: var(--surface-darker);
    padding: 100px 0;
}

.gallery .section-tag {
    background: rgba(249, 115, 22, 0.15);
}

.gallery .section-header h2 {
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border-radius: 8px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #262626 0%, #171717 100%) !important;
    color: #737373;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-slow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0.12) 0%, 
        rgba(34, 197, 94, 0.12) 50%,
        rgba(59, 130, 246, 0.12) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-placeholder::before {
    opacity: 1;
}

.gallery-placeholder span {
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-placeholder span {
    color: #ffffff;
}

/* ========================================
   TESTIMONIALS SECTION - Clean Cards
   ======================================== */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 36px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    color: var(--border-light);
    line-height: 1;
}

[data-theme="dark"] .testimonial-card::before {
    color: var(--border-medium);
}

.testimonial-card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--accent-orange);
    font-size: 0.85rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   CONTACT SECTION - Clean Form
   ======================================== */
.contact {
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info > p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--surface-dark);
    color: var(--text-inverse);
    border-color: var(--surface-dark);
}

[data-theme="dark"] .social-links a:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-medium);
}

/* Contact Form */
.contact-form {
    background: var(--bg-secondary);
    padding: 44px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 28px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Heebo', sans-serif;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.08);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    margin-top: 8px;
}

/* ========================================
   FOOTER - Clean & Minimal
   ======================================== */
.footer {
    background: var(--surface-darker);
    color: #ffffff;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 56px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .features-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        background: var(--bg-primary);
        justify-content: center;
        gap: 32px;
        transition: left var(--transition-normal);
        border: none;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .logo img {
        height: 64px;
    }

    .hero-logo img {
        height: 160px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content h1 span:first-child {
        font-size: 0.75rem;
    }
    
    .hero-content h1 span:last-child {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 52px;
    }
    
    .hero-logo img {
        height: 120px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h1 span:first-child {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }
    
    .hero-content h1 span:last-child {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    section {
        padding: 64px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }

    .contact-form {
        padding: 28px 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

/* ========================================
   LANGUAGE SWITCHER - Clean Style
   ======================================== */
.language-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: 12px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 6px 10px;
    font-size: 0.8rem;
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    border-radius: 6px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.lang-btn:hover {
    border-color: var(--border-medium);
    color: var(--text-primary);
}

.lang-btn.active {
    border-color: var(--text-primary);
    background: var(--surface-dark);
    color: var(--text-inverse);
}

[data-theme="dark"] .lang-btn.active {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* RTL/LTR adjustments */
html[dir="ltr"] .feature-item:hover {
    transform: translateX(2px) translateY(-2px);
}

html[dir="ltr"] .nav-links a:not(.btn-primary)::after {
    right: auto;
    left: 0;
}

html[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 8px;
}

html[dir="ltr"] .contact-form,
html[dir="ltr"] .contact-info,
html[dir="ltr"] .feature-item,
html[dir="ltr"] .testimonial-card,
html[dir="ltr"] .section-header,
html[dir="ltr"] .footer-content {
    text-align: left;
}

html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 12px;
}

/* Mobile language switcher */
@media (max-width: 968px) {
    .language-switcher {
        position: fixed;
        top: 16px;
        left: 70px;
        z-index: 1002;
        margin: 0;
        background: var(--bg-primary);
        padding: 4px;
        border-radius: 8px;
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-sm);
    }
    
    html[dir="rtl"] .language-switcher {
        left: auto;
        right: 70px;
        margin-right: 0;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .theme-toggle {
        position: fixed;
        top: 16px;
        left: 16px;
        z-index: 1002;
        margin: 0;
        width: 36px;
        height: 36px;
        background: var(--bg-primary);
        box-shadow: var(--shadow-sm);
    }
    
    html[dir="rtl"] .theme-toggle {
        left: auto;
        right: 16px;
    }
}

/* ========================================
   DESKTOP OVERRIDES
   ======================================== */
@media screen and (min-width: 969px) {
    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        height: auto !important;
        width: auto !important;
        gap: 36px !important;
        left: auto !important;
    }
    
    .hamburger {
        display: none !important;
    }
}
