:root {
    /* Primary Colors */
    --primary-red: #E61D25;
    --primary-red-hover: #C5151D;

    /* Dark Theme Variables (Glassmorphism) */
    --bg-color: #000000;
    --bg-image: radial-gradient(circle at 50% 0%, #2a2a30 0%, #000000 70%);
    --surface-color: rgba(28, 28, 30, 0.4);
    --surface-border: rgba(255, 255, 255, 0.08);
    --text-color: #f5f5f7;
    --text-muted: #86868b;
    --border-color: rgba(255, 255, 255, 0.1);
    --logo-filter: none; 
}

[data-theme="light"] {
    /* Light Theme Variables */
    --bg-color: #f5f5f7;
    --bg-image: radial-gradient(circle at 50% 0%, #ffffff 0%, #e5e5ea 70%);
    --surface-color: rgba(255, 255, 255, 0.6);
    --surface-border: rgba(0, 0, 0, 0.05);
    --text-color: #1d1d1f;
    --text-muted: #86868b;
    --border-color: rgba(0, 0, 0, 0.1);
    --logo-filter: invert(1) hue-rotate(180deg);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip; /* iOS Safari yatay kaydirmayi gercekten engeller */
    max-width: 100%;
    /* iOS'un yazilari kendi kafasina gore buyutmesini (font boosting) engeller */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobil tasma guvenlik agi: medya ogeleri kapsayicisini asla asamaz */
img, video, iframe {
    max-width: 100%;
}

/* Grid kartlari icerik (uzun yazi vb.) yuzunden kapsayicidan genis olamaz */
.services-grid > *, .why-us__grid > *, .workshop-grid > *, .social-grid > *,
.reels-grid > *, .stats-grid > *, .values-grid > *, .brands-grid > *,
.team-grid > *, .gallery-grid > *, .footer-content > *, .process-steps > *,
.contact-info-cards > *, .compare-showcase > * {
    min-width: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    background-image: var(--bg-image);
    background-attachment: fixed;
    color: var(--text-color);
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, background-image 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    letter-spacing: -0.03em;
}

p {
    font-weight: 300;
    letter-spacing: -0.01em;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInChar {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Mouse Glow Effect */
.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 29, 37, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
}

[data-theme="light"] .mouse-glow {
    background: radial-gradient(circle, rgba(230, 29, 37, 0.08) 0%, transparent 70%);
    mix-blend-mode: multiply;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .navbar {
    background-color: rgba(255, 255, 255, 0.8);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 85px;
    max-width: 250px;
    object-fit: contain;
}

.theme-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.theme-btn:hover {
    color: var(--primary-red);
}

/* Navbar Modifications for Hamburger */
.navbar {
    z-index: 2100; /* Ensure navbar is always on top of the side menu */
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 35px; /* Larger gap for premium feel */
}

/* Elegant Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    z-index: 2200;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    backdrop-filter: blur(5px);
}

[data-theme="light"] .hamburger-menu {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.hamburger-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
}

.hamburger-menu .bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger to X Animation */
.hamburger-menu.is-active .hamburger-inner {
    justify-content: center;
}
.hamburger-menu.is-active .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.hamburger-menu.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-menu.is-active .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Elegant Side Menu (Glassmorphism) */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 450px;
    max-width: 85vw;
    height: 100vh;
    background-color: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 140px 4rem 4rem 4rem; /* Padding top to account for navbar */
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

[data-theme="light"] .side-menu {
    background-color: rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.side-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.side-menu-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(0.1s * var(--i));
}

.side-menu.open .side-menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.side-menu-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: color 0.4s ease, transform 0.4s ease;
    position: relative;
    width: fit-content;
}

.link-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    font-style: normal;
    color: var(--primary-red);
    margin-right: 1.5rem;
    position: relative;
    top: -10px;
    opacity: 0.7;
}

.side-menu-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-red);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.side-menu-links a:hover {
    color: var(--text-color);
    transform: translateX(10px);
}

.side-menu-links a:hover::after {
    width: 100%;
}

.side-menu-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(0.1s * var(--i));
}

.side-menu.open .side-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-menu {
    margin-bottom: 2rem;
}

.contact-info-menu p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.menu-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"] .menu-phone {
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.menu-phone:hover {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.menu-socials {
    display: flex;
    gap: 1.5rem;
}

.menu-socials a {
    color: var(--text-color);
    font-size: 1.2rem;
    text-decoration: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="light"] .menu-socials a {
    border-color: rgba(0,0,0,0.1);
}

.menu-socials a:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-4px);
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

[data-theme="light"] .side-menu-overlay {
    background: rgba(255, 255, 255, 0.3);
}

.side-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), #ff4d55);
    color: #ffffff;
    padding: 1.2rem 2.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px; /* Apple-style pill button */
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::after {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(230, 29, 37, 0.4), 0 5px 10px rgba(230, 29, 37, 0.2);
}

.hero-image-placeholder {
    flex: 1;
    margin-left: 4rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    border-radius: 16px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230,29,37,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.placeholder-text {
    font-size: 1.8rem;
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Hero Visual (slideshow + booking) */
.hero-visual {
    flex: 1;
    margin-left: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hero-visual .hero-image-placeholder {
    flex: none;
    margin-left: 0;
    width: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Booking Buttons */
.hero-booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}
.hero-booking__title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-color);
}
.hero-booking__buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.booking-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.booking-btn i {
    font-size: 1.2rem;
}
.booking-btn--wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
}
.booking-btn--wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}
.booking-btn--call {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.booking-btn--call:hover {
    transform: translateY(-3px);
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 12px 25px rgba(230, 29, 37, 0.2);
}

/* Services Section */
.services {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--surface-color);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--surface-border);
}

.service-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(230, 29, 37, 0.15);
    border-color: rgba(230, 29, 37, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: #050505;
    color: #ffffff;
    padding: 4rem 5% 2rem;
    border-top: 2px solid var(--primary-red);
}

[data-theme="light"] .footer {
    background-color: #111111;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.footer h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-style: normal;
}

.contact-link, .social-link {
    display: flex;
    align-items: center;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    min-height: 44px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link i, .social-link i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--primary-red);
}

.contact-link:hover, .social-link:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}


/* Carousel */
.gallery-carousel {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}
.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.carousel-track-container {
    height: 560px;
    perspective: 1200px;
    position: relative;
    width: 100%;
    flex: 1;
}
.carousel-track {
    list-style: none;
    width: 100%;
    height: 100%;
}
.carousel-slide {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 560px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s ease, opacity 0.5s ease, z-index 0.5s ease, width 0.5s ease;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-slide.active {
    opacity: 1;
    z-index: 10;
    transform: translateX(-50%) translateZ(0) scale(1);
    pointer-events: auto;
}
.carousel-slide.prev {
    opacity: 0.7;
    z-index: 5;
    transform: translateX(-92%) translateZ(-150px) scale(0.88);
}
.carousel-slide.next {
    opacity: 0.7;
    z-index: 5;
    transform: translateX(-8%) translateZ(-150px) scale(0.88);
}
.slide-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(28,28,30,0.8), rgba(0,0,0,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

.slide-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
.carousel-btn {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.carousel-btn:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn {
    left: -30px;
}
.next-btn {
    right: -30px;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--surface-color);
    overflow: hidden;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}
.stars-arch {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 3rem;
}
.stars-arch i {
    color: var(--primary-red);
    text-shadow: 0 0 15px rgba(230, 29, 37, 0.4);
}
[data-theme="dark"] .stars-arch i {
    color: var(--primary-red);
    text-shadow: 0 0 25px rgba(230, 29, 37, 0.6);
}
.stars-arch i:nth-child(1) { transform: translateY(20px) rotate(-20deg) scale(0.7); }
.stars-arch i:nth-child(2) { transform: translateY(5px) rotate(-10deg) scale(0.9); }
.stars-arch i:nth-child(3) { transform: translateY(-10px) scale(1.3); text-shadow: 0 0 30px rgba(230, 29, 37, 0.8); }
.stars-arch i:nth-child(4) { transform: translateY(5px) rotate(10deg) scale(0.9); }
.stars-arch i:nth-child(5) { transform: translateY(20px) rotate(20deg) scale(0.7); }

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.marquee-row {
    display: flex;
    width: 200%;
}
.marquee-content {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

/* Review Card inside Marquee */
.review-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.review-user-info strong {
    color: var(--text-color);
}
.review-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.review-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* About Section */
.about {
    padding: 6rem 5%;
}
.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: 'Inter', sans-serif;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}
.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-red);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}
.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.05);
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(230, 29, 37, 0.2);
}

/* Custom Select Dropdown */
.hidden-native-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select.open .custom-select-trigger {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(230, 29, 37, 0.2);
}

.custom-select-trigger i {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.custom-select.open .custom-select-trigger i {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(28, 28, 30, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 100;
    overflow: hidden;
}

[data-theme="light"] .custom-options {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    transition: background 0.2s, padding-left 0.2s;
}

.custom-option:hover {
    background: rgba(230, 29, 37, 0.15);
    color: var(--primary-red);
    padding-left: 1.8rem;
}

.submit-btn {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-red), #ff4d55);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.submit-btn:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 29, 37, 0.3);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover i {
    transform: translateX(5px);
}
.map-container {
    height: 100%;
    min-height: 400px;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    border: 2px dashed var(--border-color);
}
.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.marquee-left-to-right {
    animation: marquee-lr 45s linear infinite;
}
.marquee-right-to-left {
    animation: marquee-rl 45s linear infinite;
    transform: translateX(-50%);
}
.marquee-row:hover {
    animation-play-state: paused;
}

@keyframes marquee-lr {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-rl {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.review-card {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 12px;
    width: 350px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(230, 29, 37, 0.4);
    z-index: 10;
}
.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}
.review-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}
.review-user-info strong {
    font-size: 1rem;
    color: var(--text-color);
}
.review-stars {
    color: #ff9800; /* Google Maps star color */
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}
.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Address Box */
.address-box {
    align-items: flex-start;
}
.address-box i {
    margin-top: 5px;
}
.address-box span {
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 768px) {
    /* Navbar & Menu */
    .navbar {
        padding: 0.8rem 5%;
    }
    .logo img {
        height: 58px;
    }
    .nav-left {
        gap: 18px;
    }
    .side-menu {
        width: 100vw;
        max-width: 100vw;
        padding: 110px 2rem 2rem 2rem;
    }
    .side-menu-links {
        gap: 1.6rem;
        margin-top: 1rem;
    }
    .side-menu-links a {
        font-size: 1.8rem;
    }
    .side-menu-contact {
        margin-top: 2rem;
        padding-top: 1rem;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 5% 3rem 5%; /* Adjusted padding for fixed navbar */
    }
    .hero-image-placeholder {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
        height: 300px;
    }
    .hero-visual {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }
    .hero-visual .hero-image-placeholder {
        margin-top: 0;
    }
    .hero-booking__buttons {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* General Sections */
    .services, .about, .gallery-carousel, .testimonials, .faq, .contact {
        padding: 4rem 5%;
    }
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About Stats */
    .about-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    .stat-number {
        font-size: 2.8rem;
    }

    /* Carousel — telefon için tamamen bağımsız (masaüstünden etkilenmez) */
    .carousel-track-container {
        height: 300px;
        perspective: none;
    }
    .carousel-slide {
        width: 82%;
        height: 300px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }
    .carousel-slide img {
        object-fit: cover;
    }
    .carousel-slide.active {
        transform: translateX(-50%) scale(1);
    }
    .carousel-slide.prev {
        opacity: 0.35;
        transform: translateX(-95%) scale(0.82);
    }
    .carousel-slide.next {
        opacity: 0.35;
        transform: translateX(-5%) scale(0.82);
    }
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
    .slide-placeholder {
        height: 350px;
        font-size: 1.5rem;
    }

    /* Testimonials Marquee */
    .testimonials-header h2 {
        font-size: 2rem;
    }
    .review-card {
        min-width: 280px;
        width: 280px;
        padding: 1.5rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
    .map-container iframe {
        min-height: 300px !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .footer-links ul {
        align-items: center;
    }
    .footer-contact, .footer-contact a, .address-box {
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .address-box {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .service-img {
        height: 200px;
    }
    .carousel-track-container, .slide-placeholder {
        height: 250px;
    }
}

/* ============ PAGE HERO ============ */
.page-hero {
    padding: 8rem 5% 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,29,37,0.08) 0%, transparent 70%);
    transform: translate(-50%, -30%);
    pointer-events: none;
}
.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.page-badge {
    display: inline-block;
    background: rgba(230,29,37,0.15);
    color: var(--primary-red);
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(230,29,37,0.2);
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.page-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}

/* ============ ABOUT STORY ============ */
.about-story {
    padding: 0 5% 6rem;
}
.about-story__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-red);
    margin-bottom: 1rem;
}
.about-story__text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-story__text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}
.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-top: 2rem;
    position: relative;
}
.signature::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    margin-bottom: 0.8rem;
}
.about-story__images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.story-image-placeholder {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    backdrop-filter: blur(15px);
    text-align: center;
}
.story-image-placeholder i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}
.story-image-placeholder span {
    color: var(--text-muted);
    font-size: 1rem;
}
.story-image-small {
    width: 70%;
    align-self: flex-end;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary-red), #ff4d55);
    color: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(230,29,37,0.4);
}
.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.exp-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

/* ============ VALUES ============ */
.values-section {
    padding: 6rem 5%;
}
.values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.values-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 3rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.value-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: left;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(230,29,37,0.2);
}
.value-card i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}
.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}
.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ ABOUT STATS ============ */
.about-stats {
    padding: 5rem 5%;
}
.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item-large {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}
.stat-item-large:hover {
    transform: translateY(-5px);
}
.stat-item-large i {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
}
.stat-item-large .stat-number {
    font-size: 2.8rem;
}
.stat-item-large .stat-label {
    font-size: 0.8rem;
}

/* ============ BRANDS ============ */
.brands-section {
    padding: 5rem 5%;
    text-align: center;
}
.brands-container {
    max-width: 1000px;
    margin: 0 auto;
}
.brands-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.brands-container p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.brand-item {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}
.brand-item:hover {
    transform: scale(1.05);
}
.brand-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}
.brand-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 6rem 5%;
    text-align: center;
}
.cta-section__content {
    max-width: 700px;
    margin: 0 auto;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
}
.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-button--wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.cta-button--wa:hover {
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4), 0 5px 10px rgba(37, 211, 102, 0.2);
}

.cta-button--secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}
.cta-button--secondary:hover {
    background: var(--surface-color);
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: none;
}

/* ============ SERVICES PAGE ============ */
.services-page-list {
    padding: 0 5% 5rem;
}
.services-list-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.service-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}
.service-full-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.service-full-card__text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.service-full-card__text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-color);
}
.service-features li i {
    color: var(--primary-red);
    font-size: 1rem;
}
.service-full-card__img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-big-icon {
    font-size: 6rem;
    color: var(--primary-red);
    opacity: 0.3;
}
.service-full-card:nth-child(even) .service-full-card__img {
    order: -1;
}
.service-full-card {
    position: relative;
}
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}
.service-badge--trending {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}
.service-full-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-full-card__icon i {
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.3;
}
.service-full-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}
.service-stats-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.service-stats-row span {
    background: rgba(230,29,37,0.1);
    border: 1px solid rgba(230,29,37,0.15);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-color);
}
.service-stats-row span strong {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* ============ PROCESS SECTION ============ */
.process-section {
    padding: 5rem 5%;
}
.process-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.process-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 3rem;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-step {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
    text-align: left;
}
.process-step:hover {
    transform: translateY(-5px);
}
.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}
.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============ TEAM SECTION ============ */
.about-team {
    padding: 5rem 5%;
    text-align: center;
}
.team-container {
    max-width: 1000px;
    margin: 0 auto;
}
.team-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}
.team-container > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}
.team-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(230,29,37,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar i {
    font-size: 2.5rem;
    color: var(--primary-red);
}
.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}
.team-role {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}
.team-phone {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.3rem 0.5rem;
}
.team-phone:hover {
    text-decoration: underline;
}

/* ============ GALLERY PAGE ============ */
.gallery-filters {
    padding: 0 5% 2rem;
}
.gallery-filters__container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}
.gallery-filter {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    color: var(--text-color);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}
.gallery-filter:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}
.gallery-filter.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}
.gallery-grid-section {
    padding: 2rem 5% 5rem;
}
.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--surface-border);
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    opacity: 1;
}
.gallery-item:hover {
    transform: scale(1.03);
}
.gallery-item__img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.gallery-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item__img img {
    transform: scale(1.05);
}
.gallery-item__img-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--surface-color), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item__img-placeholder i {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.3;
}
.gallery-item__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.gallery-item__info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.gallery-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-red);
    background: rgba(230,29,37,0.15);
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
}

/* ============ BLOG PAGE ============ */
.blog-list {
    padding: 0 5% 5rem;
}
.blog-list__container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.blog-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.blog-card__img {
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    border: 3px solid var(--primary-red);
    border-radius: 12px;
    box-sizing: border-box;
}
.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 9px;
}
.blog-card:hover .blog-card__img img {
    transform: scale(1.05);
}
.blog-card__img-placeholder {
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--surface-color), rgba(230,29,37,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card__img-placeholder i {
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.2;
}
.blog-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-category {
    font-size: 0.75rem;
    color: var(--primary-red);
    background: rgba(230,29,37,0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.blog-card__body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}
.blog-card__body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.blog-read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}
.blog-read-more:hover {
    gap: 0.8rem;
}

/* ============ CONTACT PAGE ============ */
.contact-page {
    padding: 0 5% 5rem;
}
.contact-page__container {
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.contact-info-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-4px);
}
.contact-info-card i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}
.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.contact-info-card p, .contact-info-card a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.5;
}
.contact-info-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.3rem 0.6rem;
}
.contact-info-card a:hover {
    color: var(--primary-red);
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
    align-items: start;
}
.contact-form-wrapper {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(15px);
}
.contact-form-wrapper h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.form-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(230,29,37,0.2);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--text-muted);
}
.contact-form select {
    cursor: pointer;
}
.contact-form select option {
    background: var(--bg-color);
    color: var(--text-color);
}
.contact-form textarea {
    resize: vertical;
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hours-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
}
.hours-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hours-card h3 i {
    color: var(--primary-red);
}
.hours-list {
    list-style: none;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list li span:first-child {
    color: var(--text-muted);
}
.hours-list li span:last-child {
    font-weight: 500;
}

/* ============ FAQ SECTION ON SUBPAGES ============ */
.faq-section {
    padding: 0 5% 5rem;
}
.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.faq-section .faq-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 2rem;
}
.faq-section .faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-section .faq-item {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(15px);
}
.faq-section .faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    font-weight: 500;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}
.faq-section .faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-red);
}
.faq-section .faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-section .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}
.faq-section .faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}
.form-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.map-section {
    padding: 0 5% 5rem;
}
.map-section .map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}
.map-section .map-placeholder i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}
.map-section .map-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.map-section .map-placeholder p {
    margin-bottom: 1.5rem;
}

/* ============ APPOINTMENT PAGE ============ */
.appointment-section {
    padding: 0 5% 5rem;
}
.appointment-container {
    max-width: 800px;
    margin: 0 auto;
}
.appointment-intro {
    text-align: center;
    margin-bottom: 3rem;
}
.appointment-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.appointment-intro p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.appointment-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-color);
    font-size: 0.95rem;
}
.benefit-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}
.appointment-form {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(15px);
}
.appointment-form input, .appointment-form select, .appointment-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.appointment-form input:focus, .appointment-form select:focus, .appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(230,29,37,0.2);
}
.appointment-form input::placeholder, .appointment-form textarea::placeholder {
    color: var(--text-muted);
}
.appointment-form select {
    cursor: pointer;
}
.appointment-form select option {
    background: var(--bg-color);
    color: var(--text-color);
}
.appointment-form textarea {
    resize: vertical;
}
.appointment-notice {
    background: rgba(230,29,37,0.08);
    border: 1px solid rgba(230,29,37,0.15);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.appointment-notice i {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-top: 2px;
}
.appointment-notice strong {
    color: var(--primary-red);
}
.appointment-notice div {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============ SUBPAGE RESPONSIVE ============ */
@media (max-width: 768px) {
    .page-hero { padding: 6rem 5% 3rem; }
    .page-hero h1 { font-size: 2.4rem; }
    .about-story__container { grid-template-columns: 1fr; gap: 2rem; }
    .about-story__images { order: -1; }
    .experience-badge { bottom: -10px; left: 10px; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .service-full-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
    .service-full-card:nth-child(even) .service-full-card__img { order: 0; }
    .service-full-card__img { order: -1; }
    .service-big-icon { font-size: 4rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .blog-card { grid-template-columns: 1fr; }
    .blog-card__img-placeholder { min-height: 150px; }
    .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 2rem 1.5rem; }
    .appointment-form { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .service-stats-row { gap: 0.8rem; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ============ WHY US ============ */
.why-us {
    padding: 5rem 5%;
}
.why-us__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.why-us__container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.8rem;
}
.why-us__sub {
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.why-us__card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    text-align: center;
    transition: transform 0.3s ease;
}
.why-us__card:hover {
    transform: translateY(-6px);
}
.why-us__icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}
.why-us__card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.why-us__card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============ WORKSHOP ============ */
.workshop-section {
    padding: 5rem 5%;
}
.workshop-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.workshop-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.8rem;
}
.workshop-container > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.workshop-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}
.workshop-card:hover {
    transform: translateY(-5px);
}
.workshop-card__img {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--surface-color), rgba(230,29,37,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.workshop-card__thumb i {
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.5;
}
.workshop-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 20px rgba(230,29,37,0.4);
}
.workshop-card:hover .workshop-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.workshop-card__play i {
    font-size: 1.1rem;
    color: white;
    margin-left: 2px;
}
.workshop-card__body {
    padding: 1.2rem;
    text-align: left;
}
.workshop-card__cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-red);
    margin-bottom: 0.3rem;
}
.workshop-card__body h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.3rem;
}
.workshop-card__body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    padding: 0;
}

/* ============ COMPARE ============ */
.compare-section {
    padding: 5rem 5%;
}
.compare-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.compare-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.8rem;
}
.compare-container > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.compare-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
.compare-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    text-align: left;
}
.compare-card--bad {
    border-color: rgba(255,68,68,0.2);
}
.compare-card--good {
    border-color: rgba(76,175,80,0.2);
}
.compare-card__badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: rgba(255,68,68,0.1);
    color: #ff4444;
    text-align: center;
    border-bottom: 1px solid rgba(255,68,68,0.1);
}
.compare-card__badge--good {
    background: rgba(76,175,80,0.1);
    color: #4caf50;
    border-bottom: 1px solid rgba(76,175,80,0.1);
}
.compare-card__visual {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,68,68,0.03), rgba(255,68,68,0.08));
}
.compare-card__visual--good {
    background: linear-gradient(135deg, rgba(76,175,80,0.03), rgba(76,175,80,0.08));
}
.compare-visual-content {
    position: relative;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scratch-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,68,68,0.4), transparent);
    border-radius: 2px;
}
.chip-mark {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,68,68,0.3);
    border: 1px solid rgba(255,68,68,0.5);
}
.compare-x {
    position: absolute;
    font-size: 4rem !important;
    color: rgba(255,68,68,0.12) !important;
}
.shield-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(76,175,80,0.08) 0%, transparent 70%);
}
.compare-check {
    position: absolute;
    font-size: 4rem !important;
    color: rgba(76,175,80,0.12) !important;
}
.compare-card__label {
    padding: 1rem 1.2rem 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}
.compare-card__effects {
    list-style: none;
    padding: 0.3rem 1.2rem 1.2rem;
    margin: 0;
}
.compare-card__effects li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    padding-left: 1.1rem;
    position: relative;
}
.compare-card__effects li::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 0.65rem;
    color: #ff4444;
}
.compare-card__effects--good li::before {
    content: "\f00c";
    color: #4caf50;
}
.compare-vs-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-vs-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}
.compare-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============ STATS BAR ============ */
.stats-bar {
    padding: 3rem 5%;
    background: var(--surface-color);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}
.stats-bar__container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.stats-bar__item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 0.3rem;
}
.stats-bar__item strong {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
}
.stats-bar__item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============ VIDEO SECTION ============ */
.video-section {
    padding: 5rem 5%;
}
.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.video-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.8rem;
}
.video-container > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.video-player {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: transform 0.3s, box-shadow 0.3s;
}
.video-player:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.video-player__thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a1a2e, rgba(230,29,37,0.15), #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}
.video-player__thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><circle cx="20" cy="30" r="15" fill="white"/><circle cx="75" cy="25" r="10" fill="white"/><circle cx="50" cy="70" r="20" fill="white"/><circle cx="85" cy="65" r="8" fill="white"/></svg>');
    background-size: cover;
}
.video-player__overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: white;
}
.video-player__overlay i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
    transition: transform 0.3s, opacity 0.3s;
    filter: drop-shadow(0 4px 20px rgba(230,29,37,0.4));
}
.video-player__thumbnail:hover .video-player__overlay i {
    transform: scale(1.1);
    opacity: 1;
}
.video-player__overlay span {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.video-player__info {
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.video-player__duration {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.video-player__duration i {
    font-size: 0.7rem;
}
.video-player__info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.video-player__info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============ SOCIAL SECTION ============ */
.social-section {
    padding: 5rem 5%;
    text-align: center;
}
.social-container {
    max-width: 900px;
    margin: 0 auto;
}
.social-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.8rem;
}
.social-container > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.social-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 2rem 1rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s;
    cursor: pointer;
}
.social-card:hover {
    transform: translateY(-5px);
}
.social-card i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}
.social-card span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============ NEW HOMEPAGE RESPONSIVE ============ */
@media (max-width: 768px) {
    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
    .workshop-grid { grid-template-columns: 1fr; }
    .compare-showcase { grid-template-columns: 1fr; }
    .compare-vs-icon { display: none; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar__container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .why-us__grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; }
    .stats-bar__container { grid-template-columns: 1fr; }
}

/* ============ INSTAGRAM REELS (PHONE MOCKUPS) ============ */
.reels-section {
    padding: 5rem 5%;
    text-align: center;
}
.reels-container {
    max-width: 1100px;
    margin: 0 auto;
}
.reels-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.8rem;
}
.reels-container > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.reel-phone {
    text-decoration: none;
    display: block;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reel-phone:hover {
    transform: translateY(-10px);
}
.reel-phone__frame {
    position: relative;
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), inset 0 0 0 2px rgba(255, 255, 255, 0.04);
}
.reel-phone__notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 42%;
    height: 16px;
    background: #0a0a0c;
    border-radius: 0 0 12px 12px;
    z-index: 3;
}
.reel-phone__screen {
    position: relative;
    aspect-ratio: 9 / 17;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, #2a2a35 0%, #12121a 55%, #0a0a10 100%);
    display: flex;
    align-items: flex-end;
}
.reel-phone__cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.reel-phone:hover .reel-phone__cover {
    transform: scale(1.06);
}
.reel-phone__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}
.reel-phone__play i {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 3px;
}
.reel-phone:hover .reel-phone__play {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--primary-red);
    border-color: var(--primary-red);
}
.reel-phone__meta {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2.5rem 0.9rem 0.9rem;
    text-align: left;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}
.reel-phone__account {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.reel-phone__avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reel-phone__avatar i {
    color: #fff;
    font-size: 0.7rem;
}
.reel-phone__title {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
}
@media (max-width: 768px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 420px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
    .reel-phone__frame {
        border-radius: 22px;
        padding: 5px;
    }
    .reel-phone__play {
        width: 42px;
        height: 42px;
    }
}

/* ============ SORO BLOG SECTION ============ */
.soro-section {
    padding: 5rem 5%;
    /* Asenkron yuklenen icerikte reveal animasyonu takilabildigi icin
       bu bolum her zaman gorunur kalir. */
    opacity: 1 !important;
    transform: none !important;
}
.soro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.soro-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 2rem;
}
.soro-container #soro-blog {
    text-align: left;
}
@media (max-width: 768px) {
    .soro-section {
        padding: 3rem 5%;
    }
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    z-index: 3000;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}
@keyframes wa-pulse {
    0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 480px) {
    .wa-float {
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
        bottom: calc(18px + env(safe-area-inset-bottom));
        right: calc(18px + env(safe-area-inset-right));
    }
}
@media (prefers-reduced-motion: reduce) {
    .wa-float { animation: none; }
}

/* ============ ADMIN ACCESS BUTTON (discreet, bottom-left) ============ */
.admin-access {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 42px;
    height: 42px;
    background: rgba(20, 20, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none;
    z-index: 3000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.admin-access:hover {
    opacity: 1;
    color: var(--primary-red);
    border-color: rgba(230, 29, 37, 0.4);
    transform: translateY(-2px);
}
@media (max-width: 480px) {
    .admin-access {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        bottom: calc(18px + env(safe-area-inset-bottom));
        left: calc(18px + env(safe-area-inset-left));
    }
}
