/*
                  _   _             _ _ _ _ _        _ 
                 | | | |           | (_|_|_) |      | |
  _ __ ___  _   _| |_| |_   _    __| |_ _ _| |_ __ _| |
 | '_ ` _ \| | | | __| | | | |  / _` | | | | __/ _` | |
 | | | | | | |_| | |_| | |_| | | (_| | | | | || (_| | |
 |_| |_| |_|\__,_|\__|_|\__,_|  \__,_|_| |_|\__\__,_|_|
                                      _/ |             
                                     |__/
Samet Mutlu +05422419932 mutludijital.com.tr
*/

:root {
    /* Light Theme (Premium Light Gray) */
    --bg-color: #a2a2a3; /* Kullanıcının istediği özel gri tonu */
    --text-color: #111827;
    --border-color: #8e8e8f; /* Arka plana uygun kenarlık rengi */
    --accent: #2563eb;
    --card-bg: #ffffff; /* Kartlar bembeyaz, böylece gri arka planda öne çıkar */
    --nav-bg: rgba(162, 162, 163, 0.85); /* Arka plana uygun menü rengi */
    --hover-overlay: rgba(0, 0, 0, 0.05);
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

[data-theme="dark"] {
    /* Dark Theme (Deep Premium Dark) */
    --bg-color: #0a0a0b;
    --text-color: #f9fafb;
    --border-color: #27272a;
    --accent: #3b82f6;
    --card-bg: #18181b;
    --nav-bg: rgba(10, 10, 11, 0.85);
    --hover-overlay: rgba(255, 255, 255, 0.05);
}

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

html {
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Noise Overlay for Elite Brutalist Texture */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 99999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
[data-theme="dark"] .noise-overlay {
    opacity: 0.06;
}

/* Background Texture / Image */
.bg-image-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1557672172-298e090bd0f1?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.03; /* Very subtle */
    pointer-events: none;
    z-index: -1;
}
[data-theme="dark"] .bg-image-overlay {
    opacity: 0.05;
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4vw;
}

.section-padding {
    padding: 15vh 0;
}

/* Typography */
.huge-text {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 10rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.italic-serif {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.section-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6vh;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Visible Custom Cursor */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s,
                border-color 0.3s;
    opacity: 0.5;
}

.cursor.active {
    width: 80px;
    height: 80px;
    background-color: var(--hover-overlay);
    border-color: transparent;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 2vw 4vw;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.5s ease, border-color 0.5s ease;
}

.nav-logo {
    height: 55px; /* Logo boyutu belirgin şekilde artırıldı (eski: 30px) */
    object-fit: contain;
    filter: brightness(0); /* Black logo for light mode */
    transition: filter 0.5s ease, transform 0.3s ease;
}
.nav-logo:hover {
    transform: scale(1.05);
}
[data-theme="dark"] .nav-logo {
    filter: brightness(1) invert(1); /* White logo for dark mode */
}

.nav-links {
    display: flex;
    gap: 3vw;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--text-color);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Theme Toggle Button */
.theme-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s;
}
.theme-btn:hover {
    border-color: var(--text-color);
}
.theme-btn .icon-sun, .theme-btn .icon-moon {
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
}
.theme-btn .icon-sun { transform: translateY(0); opacity: 1; }
.theme-btn .icon-moon { transform: translateY(30px); opacity: 0; }

[data-theme="dark"] .theme-btn .icon-sun { transform: translateY(-30px); opacity: 0; }
[data-theme="dark"] .theme-btn .icon-moon { transform: translateY(0); opacity: 1; }

.btn-circle {
    width: 70px; height: 70px;
    background-color: var(--text-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.05);
}

/* Mobile Menu & Hamburger Styles */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15vh 6vw 6vh;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-link.contact-link {
    color: var(--accent);
    margin-top: 2vh;
    font-size: 2rem;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-footer a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 10vh;
    overflow: hidden;
}

.hero-inner {
    width: 100%; padding: 0 4vw;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10; /* Yazıların videonun üstüne çıkabilmesi için artırıldı */
    width: 60%; /* Genişlik artırıldı ki yazı videonun üstüne kadar uzasın */
    flex-shrink: 0;
    pointer-events: none; /* Yazının altındaki videonun etkileşimlerini bozmamak için */
}

.hero-content * {
    pointer-events: auto; /* Yazı içindeki linklerin vb tıklanabilir olması için */
}

.hero-label {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.hero .line { 
    /* overflow: hidden; kaldırıldı ki yazılar sağa taştığında kesilmesin */
    position: relative;
    display: block;
    white-space: nowrap;
}
.hero .line > span.fade-up { display: inline-block; }

.hero-footer {
    margin-top: 6vh;
    display: flex; justify-content: space-between; align-items: flex-end;
    padding-right: 15vw; /* Footer yazısının sağdan çok taşmasını engellemek için */
}

.hero-footer p {
    max-width: 450px;
    font-size: 1.15rem;
    color: var(--text-color);
    opacity: 0.8;
}

.scroll-indicator {
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 0.5rem;
    font-weight: 600;
}

.hero-visual-wrapper {
    position: absolute;
    right: 0; /* Tam sağa yaslandı */
    top: 10vh;
    width: 45%; /* Biraz daha genişletildi */
    height: 80vh; /* Biraz daha uzatıldı */
    border-radius: 40px 0 0 40px;
    overflow: hidden;
    z-index: 1; /* Yazıların (z-index:10) altında kalacak */
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 300px;
    opacity: 0.15; /* Hafif görünür şeffaflık */
    z-index: 2; /* Videonun üstünde, yazının altında */
    pointer-events: none;
    filter: grayscale(100%) brightness(200%); /* Karanlık videoda beyaz durması için */
    mix-blend-mode: overlay;
}

[data-theme="dark"] .hero-visual-wrapper {
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    opacity: 0.85;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* To allow parallax scale down */
    filter: saturate(1.2) contrast(1.1);
}

/* Adjust Huge Text for Split Layout */
.huge-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 7rem); /* Daha esnek ve küçültülmüş boyut */
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    white-space: normal; /* Harflerin dikine kırılmaması için normal yapıldı */
    word-wrap: break-word;
}

.char {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

/* Marquee */
.marquee-section {
    padding: 4vh 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    background-color: var(--card-bg);
}

.marquee { white-space: nowrap; }

.marquee-inner {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    opacity: 0.9;
}

.marquee-inner span { margin-right: 2rem; }

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

/* Services List (Bento/Card Style) */
.services {
    position: relative;
    z-index: 20;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.service-item {
    display: flex; padding: 6vh 4vw;
    border: 1px solid var(--border-color);
    background-color: transparent; /* Kart arka planı transparan yapıldı ki resim görünsün */
    border-radius: 24px;
    gap: 4vw; align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Contains the background image */
}

/* Static Background Image */
.service-bg, .work-bg {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    background-size: cover;
    background-position: center;
    opacity: 1; /* Always visible */
    z-index: -1;
    transition: filter 0.4s ease, transform 0.8s ease, opacity 0.4s ease;
    transform: scale(1);
    filter: blur(0px);
}

.work-bg {
    opacity: 1; /* Always visible for work items */
    filter: blur(0px);
}

.service-bg::after, .work-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Lighter overlay to ensure image is visible */
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.service-item:hover .service-bg {
    opacity: 1;
    filter: blur(10px); /* Blur only on hover for services */
    transform: scale(1.05);
}

.work-item:hover .work-bg {
    filter: blur(0px);
    transform: scale(1.02);
}

.service-item:hover .service-bg::after {
    background: rgba(0,0,0,0.5); /* Slightly darker on hover to make text pop */
}

.work-item:hover .work-bg::after {
    background: rgba(0,0,0,0.6); /* Darker on hover to make text pop */
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
[data-theme="dark"] .service-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.s-number {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    width: 10%; color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative; z-index: 2;
}

.s-content {
    width: 90%; display: flex; justify-content: space-between; align-items: flex-start;
    position: relative; z-index: 2;
}

.s-content h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    text-transform: uppercase;
    width: 45%; line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: color 0.4s;
}

[data-theme="dark"] .s-content h3 {
    color: #ffffff;
}

.s-content p {
    width: 45%; font-size: 1.1rem; opacity: 0.8;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: color 0.4s;
}

/* Make text white only when background image reveals on hover */
.service-item:hover .s-content h3,
.service-item:hover .s-content p,
.service-item:hover .s-number {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Work / References (Static Hover Reveal & Scrolling Image) */
.work {
    position: relative;
    z-index: 20;
}

.work-list { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* 2 Sütunlu (Yatay 2) */
    gap: 2vw; /* Kutular arası boşluk */
}

.work-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6vh 3vw; /* Sabit iç boşluk */
    border: 1px solid var(--border-color); /* Kutu sınırları */
    border-radius: 16px;
    position: relative; z-index: 1;
    overflow: hidden;
    height: 400px; /* Sabit yükseklik, uzun görsellerin kayması için */
    text-decoration: none;
}

/* Kutu Hover Olunca */
.work-item:hover {
    /* padding değişimi iptal edildi, kutu sabit kalacak */
}

/* Diğerleri solmasın iptal edildi, grid yapısında bağımsız durmaları daha şık */

/* Statik Arka Plan & Scrolling Animasyonu */
.work-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: 100% auto; /* Genişliği tam kapla, yüksekliği serbest bırak */
    background-position: top center; /* Görselin en üstünden başla */
    background-repeat: no-repeat;
    opacity: 0.8; /* Her zaman görünür ama biraz soluk */
    z-index: -1;
    transition: background-position 4s linear, filter 0.4s ease, opacity 0.4s ease; /* Yavaşça kayma efekti */
    filter: blur(0px);
}

.work-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* Okunabilirlik için karanlık filtre */
    transition: background 0.4s ease;
}

/* Üzerine Gelince Animasyonlar */
.work-item:hover .work-bg {
    background-position: bottom center; /* Görseli yavaşça en alta kaydır */
    opacity: 1;
    filter: blur(0px); /* Blur iptal edildi, görsel tamamen netleşir */
}

.work-item:hover .work-bg::after {
    background: rgba(0,0,0,0.6);
}

.w-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 4.5rem); /* Grid olduğu için biraz küçültüldü */
    text-transform: uppercase; line-height: 1.1;
    position: relative; z-index: 2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    width: 70%; /* Sol tarafa yasla */
}

.w-category {
    font-size: 0.9rem; font-weight: 600; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.05em;
    position: relative; z-index: 2;
    color: #ffffff;
    width: 25%; /* Sağ tarafa yasla */
    text-align: right;
}

/* Pricing */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2vw;
}

.price-card {
    position: relative;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    padding: 3vw; display: flex; flex-direction: column;
    border-radius: 24px; /* More rounded */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.price-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; width: calc(100% + 2px); height: calc(100% + 2px);
    background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
    z-index: -1;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.price-card:hover::before {
    opacity: 0.5;
}
[data-theme="dark"] .price-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.price-card.dark-card {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: transparent;
}
[data-theme="dark"] .price-card.dark-card {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.p-header { margin-bottom: 4vh; }
.p-header h4 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 1rem; letter-spacing: 0.05em;}
.p-amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; line-height: 1;}

.p-features { list-style: none; margin-top: auto; }
.p-features li {
    padding: 1.2rem 0; border-top: 1px solid var(--border-color); font-size: 0.95rem;
}
.dark-card .p-features li { border-top-color: rgba(255, 255, 255, 0.1); }
[data-theme="dark"] .dark-card .p-features li { border-top-color: rgba(0, 0, 0, 0.1); }

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    margin-top: 5vh;
}

.footer-title a { color: var(--accent); display: inline-block; }

.footer-logo {
    height: 40px; object-fit: contain;
    filter: brightness(1) invert(1); /* Always white in footer */
}
[data-theme="dark"] .footer-logo {
    filter: brightness(0); /* Always black in footer for dark mode */
}

.footer-bottom {
    margin-top: 10vh; display: flex; justify-content: space-between; align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 4vh;
}
[data-theme="dark"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.f-info p { opacity: 0.7; font-size: 0.9rem;}
.f-info a { font-size: 1.2rem; font-weight: 600;}

.f-socials { display: flex; gap: 2vw; }
.f-socials a { text-transform: uppercase; font-size: 0.9rem; font-weight: 500; }

/* Responsive */
@media (max-width: 1024px) {
    .s-content { flex-direction: column; align-items: flex-start; gap: 2vh; }
    .s-content h3, .s-content p { width: 100%; }
    .pricing-grid { grid-template-columns: 1fr; gap: 4vh; }
    .nav-links { display: none; }
    .desktop-only { display: none; }
    .hamburger-btn { display: flex; }
    
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 5vh;
    }
    .hero-content {
        width: 100%;
        margin-bottom: 5vh;
    }
    .hero-visual-wrapper {
        position: relative;
        width: 100%;
        height: 50vh;
        right: auto;
        top: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .cursor, .cursor-dot, .hover-image-container { display: none; }
    body { cursor: auto; }
    .hero-footer { flex-direction: column; align-items: flex-start; gap: 4vh; }
    .work-item { flex-direction: column; align-items: flex-start; gap: 1vh; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4vh; }
    .nav-logo { height: 24px; }
}

/* iOS Bottom Sheet Modal */
.theme-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.theme-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.theme-modal {
    position: fixed;
    bottom: -100%; left: 0; width: 100%;
    background: var(--card-bg);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    z-index: 100001;
    padding: 20px 24px 40px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-modal.active {
    bottom: 0;
}

.modal-handle {
    width: 40px;
    height: 5px;
    background: var(--border-color);
    border-radius: 10px;
    margin-bottom: 30px;
}

.modal-content {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.modal-content p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* iOS Segmented Control */
.ios-segmented-control {
    display: flex;
    background: var(--border-color);
    padding: 4px;
    border-radius: 12px;
    position: relative;
    margin-bottom: 30px;
}

.segment-slider {
    position: absolute;
    top: 4px; left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.segment-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.6;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.segment-btn.active {
    opacity: 1;
}

.modal-close-btn {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.modal-close-btn:active {
    transform: scale(0.98);
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.f-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

[data-theme="dark"] .f-btn {
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.f-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.f-btn.whatsapp {
    background-color: #25D366;
}

.f-btn.whatsapp:hover {
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.f-btn.phone {
    background-color: var(--accent);
}

.f-btn.phone:hover {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.f-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.f-btn:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .f-btn {
        width: 50px;
        height: 50px;
    }
    .f-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* About Us Section */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6vw;

    align-items: center;

}



.about-subtitle {

    font-size: 2rem;

    font-family: var(--font-display);

    margin-bottom: 2rem;

    line-height: 1.2;

}



.about-text {

    font-size: 1.1rem;

    margin-bottom: 1.5rem;

    opacity: 0.8;

    max-width: 90%;

}



.about-stats {

    display: flex;

    gap: 3vw;

    margin-top: 3rem;

    padding-top: 2rem;

    border-top: 1px solid var(--border-color);

}



.stat-item {

    display: flex;

    flex-direction: column;

}



.stat-number {

    font-family: var(--font-display);

    font-size: 3rem;

    font-weight: 800;

    color: var(--accent);

    line-height: 1;

}



.stat-label {

    font-size: 0.85rem;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    opacity: 0.7;

    margin-top: 0.5rem;

}



.about-image-wrapper {

    position: relative;

    width: 100%;

    aspect-ratio: 4/5;

    border-radius: 24px;

    overflow: hidden;

    background: var(--border-color);

}



.image-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(45deg, var(--card-bg), var(--border-color));

}



.icon-user {

    font-family: var(--font-display);

    font-size: 8rem;

    font-weight: 800;

    color: var(--text-color);

    opacity: 0.1;

}



.award-badge {

    position: absolute;

    bottom: 30px;

    left: -30px;

    background: var(--card-bg);

    padding: 15px 25px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    font-weight: 600;

    font-size: 0.9rem;

    z-index: 2;

}



[data-theme="dark"] .award-badge {

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);

}



@media (max-width: 1024px) {

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

    .award-badge { left: 20px; }

}



/* FAQ Accordion Section */

.faq-container {

    border-top: 1px solid var(--border-color);

    max-width: 1000px;

}



.faq-item {

    border-bottom: 1px solid var(--border-color);

}



.faq-question {

    width: 100%;

    text-align: left;

    background: none;

    border: none;

    padding: 2.5rem 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    font-family: var(--font-display);

    font-size: clamp(1.2rem, 2vw, 1.5rem);

    font-weight: 600;

    color: var(--text-color);

    transition: color 0.3s;

}



.faq-question:hover {

    color: var(--accent);

}



.faq-icon {

    width: 40px;

    height: 40px;

    border: 1px solid var(--border-color);

    border-radius: 50%;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: background 0.3s, transform 0.3s;

    flex-shrink: 0;

}



.faq-icon::before, .faq-icon::after {

    content: '';

    position: absolute;

    background: var(--text-color);

    transition: transform 0.3s;

}



.faq-icon::before {

    width: 14px;

    height: 2px;

}



.faq-icon::after {

    width: 2px;

    height: 14px;

}



.faq-item.active .faq-icon {

    background: var(--text-color);

    border-color: var(--text-color);

}



.faq-item.active .faq-icon::before,

.faq-item.active .faq-icon::after {

    background: var(--bg-color);

}



.faq-item.active .faq-icon::after {

    transform: rotate(90deg);

}



.faq-answer {

    height: 0;

    overflow: hidden;

    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);

}



.faq-answer-inner {

    padding-bottom: 2.5rem;

    font-size: 1.1rem;

    line-height: 1.8;

    opacity: 0.8;

    max-width: 800px;

}

