        /* =============================================
           RESET & DESIGN SYSTEM
           Color Palette (Black-White with branding exceptions)
        ============================================= */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* General Palette */
            --black: #121212;
            --near-black: #0a0a0a;
            --dark-card: #1c1c1c;
            --gray-700: #333333;
            --gray-500: #666666;
            --gray-400: #888888;
            --gray-200: #e5e5e5;
            --gray-100: #f5f5f5;
            --white: #ffffff;

            /* Brand Exceptions */
            --whatsapp-green: #25D366;
            --whatsapp-hover: #1ebd50;
            --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            --tiktok-color: #000000;
            --youtube-red: #FF0000;

            /* Typography */
            --heading: 'Playfair Display', 'Georgia', serif;
            --body: 'Jost', 'Helvetica Neue', 'Arial', sans-serif;

            /* Transitions & Shadows */
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --transition: all 0.6s var(--ease-out-expo);
            --transition-fast: all 0.3s ease;
            --shadow-premium: 0 30px 80px rgba(0, 0, 0, 0.08);
            --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--body);
            color: var(--black);
            background-color: var(--white);
            line-height: 1.8;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        ul { list-style: none; }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--gray-100); }
        ::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--black); }

        /* =============================================
           ANIMATIONS & SCROLL REVEAL
        ============================================= */
        @keyframes revealUp {
            from { opacity: 0; transform: translateY(50px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }
        @keyframes slideNavDown {
            from { transform: translateY(-100%); opacity: 0; }
            to   { transform: translateY(0); opacity: 1; }
        }
        @keyframes heroTextReveal {
            from { opacity: 0; transform: translateY(35px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .reveal-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
        }

        .reveal-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger for grid elements */
        .stagger-grid > *:nth-child(1) { transition-delay: 0s; }
        .stagger-grid > *:nth-child(2) { transition-delay: 0.1s; }
        .stagger-grid > *:nth-child(3) { transition-delay: 0.2s; }
        .stagger-grid > *:nth-child(4) { transition-delay: 0.3s; }

        /* =============================================
           STICKY NAVBAR
        ============================================= */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 24px 0;
            background: transparent;
            border-bottom: 1px solid transparent;
            transition: padding 0.5s var(--ease-out-expo),
                        background 0.5s var(--ease-out-expo),
                        box-shadow 0.5s var(--ease-out-expo),
                        border-color 0.5s var(--ease-out-expo);
            animation: slideNavDown 0.8s var(--ease-out-expo) both;
        }

        /* When scrolled: Yarı saydam siyah arka plan */
        .navbar.scrolled {
            padding: 14px 0;
            background: rgba(18, 18, 18, 0.92);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-wrapper {
            background: transparent;
            padding: 0;
            border-radius: 0;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s var(--ease-out-expo);
            box-shadow: none;
            mix-blend-mode: screen;
        }

        .navbar.scrolled .logo-wrapper {
            padding: 0;
        }

        .nav-logo img {
            height: 120px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: height 0.5s var(--ease-out-expo);
        }

        .navbar.scrolled .nav-logo img {
            height: 90px;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-center a {
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.75);
            position: relative;
            padding: 6px 0;
            transition: var(--transition-fast);
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1.5px;
            background: var(--white);
            transition: width 0.4s var(--ease-out-expo);
        }

        .nav-center a:hover,
        .nav-center a.active {
            color: var(--white);
        }

        .nav-center a:hover::after,
        .nav-center a.active::after {
            width: 100%;
        }

        /* Brand Exception: WhatsApp Button with Original Green */
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 26px;
            background: var(--whatsapp-green);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 4px;
            border: 2px solid var(--whatsapp-green);
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: transparent;
            color: var(--whatsapp-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
        }

        .nav-cta svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Nav Actions Wrapper & Instagram Button */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .instagram-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--instagram-gradient);
            color: var(--white);
            border-radius: 4px;
            transition: var(--transition);
        }

        .instagram-btn:hover {
            transform: translateY(-3px) scale(1.08) !important;
            box-shadow: 0 8px 20px rgba(225, 48, 108, 0.35) !important;
        }

        .instagram-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Mobile Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 8px;
            z-index: 10001;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* Mobile Menu Overlay */
        .mobile-overlay {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100vh;
            background: var(--near-black);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s var(--ease-out-expo);
        }

        .mobile-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-overlay a {
            font-family: var(--heading);
            font-size: 2rem;
            font-weight: 500;
            color: var(--white);
            position: relative;
            letter-spacing: 1px;
        }

        .mobile-overlay .nav-cta {
            font-family: var(--body);
            font-size: 0.8rem;
            margin-top: 15px;
        }

        /* =============================================
           HERO SECTION
        ============================================= */
        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--near-black);
        }

        /* Hero Background - Full Color by Default */
        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.55);
            transform: scale(1.05);
            transition: filter 1s ease, transform 1s ease;
        }

        .hero:hover .hero-bg {
            filter: brightness(0.68);
            transform: scale(1.02);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 60%, rgba(18,18,18,1) 100%);
            pointer-events: none;
        }

        /* Qutter thin line guides */
        .deco-line {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255, 255, 255, 0.05);
            z-index: 1;
        }
        .line-left { left: 80px; }
        .line-right { right: 80px; }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 24px;
            padding: 8px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            animation: heroTextReveal 1s var(--ease-out-expo) 0.2s both;
        }

        .hero h1 {
            font-family: var(--heading);
            font-size: clamp(2.8rem, 6.5vw, 5.2rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 24px;
            animation: heroTextReveal 1s var(--ease-out-expo) 0.4s both;
        }

        .hero h1 em {
            font-style: italic;
            font-weight: 400;
        }

        .hero-desc {
            font-size: clamp(0.95rem, 1.2vw, 1.1rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            max-width: 580px;
            margin: 0 auto 40px;
            animation: heroTextReveal 1s var(--ease-out-expo) 0.6s both;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            animation: heroTextReveal 1s var(--ease-out-expo) 0.8s both;
        }

        /* Hero Primary: WhatsApp Green button */
        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 38px;
            background: transparent;
            color: var(--whatsapp-green);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 2px solid var(--whatsapp-green);
            transition: var(--transition);
        }

        .btn-whatsapp:hover {
            background: var(--whatsapp-green);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 38px;
            background: transparent;
            color: var(--white);
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: var(--transition);
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        .hero-scroll-cue {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: fadeIn 1s ease 1.4s both;
        }

        .hero-scroll-cue span {
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
        }

        .hero-scroll-cue .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
        }

        /* =============================================
           ASIMETRIK SECTION LAYOUT (QUTTER STYLE)
        ============================================= */
        .section-spacer {
            padding: 120px 0;
            position: relative;
        }

        .q-section-label {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .q-section-label::before {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--gray-200);
        }

        .q-section-title {
            font-family: var(--heading);
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 700;
            color: var(--black);
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 30px;
        }

        .q-section-title em {
            font-style: italic;
            font-weight: 400;
        }

        /* =============================================
           HAKKIMIZDA (ABOUT - LAYERED LAYOUT)
        ============================================= */
        .about {
            background: var(--white);
            overflow: hidden;
        }

        /* Large background graphic number */
        .about-watermark {
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            font-family: var(--heading);
            font-size: clamp(15rem, 25vw, 28rem);
            font-weight: 900;
            color: #fafafa;
            line-height: 1;
            pointer-events: none;
            z-index: 0;
            user-select: none;
        }

        .about-layout {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-visual {
            position: relative;
        }

        .about-img-container {
            position: relative;
        }

        /* Asymmetric frame behind photo */
        .about-img-container::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 30px;
            bottom: 30px;
            border: 2px solid var(--gray-200);
            z-index: 0;
            transition: var(--transition);
        }

        .about-visual:hover .about-img-container::before {
            top: -12px;
            left: -12px;
            border-color: var(--black);
        }

        /* Owner Photo - Full Color */
        .about-photo {
            position: relative;
            z-index: 1;
            width: 100%;
            height: auto;
            max-height: 580px;
            object-fit: cover;
            object-position: center;
            box-shadow: var(--shadow-premium);
            transition: transform 0.6s var(--ease-out-expo);
        }

        .about-visual:hover .about-photo {
            transform: scale(1.02);
        }

        /* Asymmetric Badges */
        .about-badge {
            position: absolute;
            bottom: -15px;
            left: -15px;
            z-index: 2;
            background: var(--black);
            color: var(--white);
            padding: 20px 24px;
            box-shadow: var(--shadow-hover);
            display: flex;
            align-items: center;
            gap: 15px;
            transition: var(--transition);
        }

        .about-visual:hover .about-badge {
            transform: translate(-3px, 3px);
        }

        .about-badge-star {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        .about-badge-info strong {
            display: block;
            font-family: var(--heading);
            font-size: 1.15rem;
            letter-spacing: 0.5px;
        }

        .about-badge-info span {
            font-size: 0.68rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-400);
        }

        .about-text-col p {
            font-size: 1.02rem;
            font-weight: 300;
            color: var(--gray-500);
            margin-bottom: 24px;
        }

        /* Counter/Stats layout */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            margin-top: 45px;
            border-top: 1px solid var(--gray-200);
            padding-top: 30px;
        }

        .about-stat {
            text-align: center;
            border-right: 1px solid var(--gray-200);
            padding: 10px 0;
        }

        .about-stat:last-child {
            border-right: none;
        }

        .about-stat-fixed {
            font-family: var(--heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--black);
            line-height: 1;
            margin-bottom: 6px;
        }

        .about-stat-label {
            font-size: 0.65rem;
            font-weight: 600;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* =============================================
           ADSENSE SPACES
        ============================================= */
        .adsense-space {
            padding: 30px 0;
            background: var(--gray-100);
            text-align: center;
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
        }

        .adsense-wrapper {
            max-width: 728px;
            min-height: 90px;
            margin: 0 auto;
            background: var(--white);
            border: 1px dashed var(--gray-400);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .adsense-wrapper::before {
            content: 'Google AdSense Reklam Alanı';
            font-size: 0.65rem;
            color: var(--gray-400);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* =============================================
           HİZMETLERİMİZ (SERVICES - DARK THEME)
        ============================================= */
        .services {
            background: var(--black);
            color: var(--white);
        }

        .services .q-section-label {
            color: var(--gray-400);
        }
        
        .services .q-section-label::before {
            background: var(--gray-500);
        }

        .services .q-section-title {
            color: var(--white);
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 70px;
        }

        .services-header-desc {
            max-width: 480px;
            font-size: 1rem;
            color: var(--gray-400);
            font-weight: 300;
            margin-bottom: 10px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        /* Services Cards: Grayscale bg image transitions to color on card hover */
        .service-card {
            position: relative;
            background: #111111;
            height: 550px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.6s var(--ease-out-expo), border-color 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
        }

        .service-image-wrap {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;
            transition: height 0.6s var(--ease-out-expo);
        }

        .service-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.75;
            filter: grayscale(100%);
            transition: transform 0.8s ease, filter 0.8s ease, opacity 0.8s ease;
        }

        .service-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(12,12,12,0.4) 0%, rgba(12,12,12,0) 100%);
            z-index: 1;
            transition: background 0.6s ease;
        }

        /* Magazine Style Bottom Text Container */
        .service-info-wrap {
            position: relative;
            background: #161616;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px 24px 30px 24px;
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 100px;
            transition: height 0.6s var(--ease-out-expo), background-color 0.6s var(--ease-out-expo), border-color 0.6s var(--ease-out-expo);
        }

        .service-card h3 {
            font-family: 'Jost', sans-serif;
            font-size: 1.4rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
            margin: 0;
            line-height: 1.3;
        }

        .service-card p {
            font-size: 0.88rem;
            color: var(--gray-300);
            font-weight: 300;
            line-height: 1.6;
            margin-top: 0;
            margin-bottom: 0;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo), margin-top 0.6s var(--ease-out-expo);
        }

        .service-link {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
            display: inline-flex;
            align-items: center;
            margin-top: 0;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            position: relative;
            padding-bottom: 2px;
            transition: max-height 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo), margin-top 0.6s var(--ease-out-expo), color 0.3s ease;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--white);
            transition: width 0.3s ease;
        }

        .service-link-arrow {
            margin-left: 6px;
            transition: transform 0.3s ease;
        }

        /* Hover behaviors on card */
        .service-card:hover {
            transform: translateY(-20px);
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 40px 80px rgba(0,0,0,0.2);
        }

        .service-card:hover .service-image-wrap {
            height: 250px;
        }

        .service-card:hover .service-bg-image {
            transform: scale(1.1);
            filter: grayscale(0%);
            opacity: 0.85;
        }

        .service-card:hover .service-info-wrap {
            height: 300px;
            background: #1b1b1b;
            justify-content: center;
        }

        .service-card:hover p {
            opacity: 1;
            max-height: 120px; /* Safe expanded limit for description */
            margin-top: 15px;
        }

        .service-card:hover .service-link {
            opacity: 1;
            max-height: 40px; /* Safe expanded limit for link button */
            margin-top: 18px;
        }

        .service-link:hover::after {
            width: 100%;
        }

        .service-link:hover .service-link-arrow {
            transform: translateX(4px);
        }

        /* =============================================
           GOOGLE REVIEWS (MÜŞTERİLERİMİZ NE DİYOR?)
        ============================================= */
        .reviews {
            background: var(--white);
            position: relative;
        }

        .reviews-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 70px;
        }

        .reviews-header .q-section-label {
            justify-content: center;
        }
        .reviews-header .q-section-label::before {
            display: none;
        }

        /* reviews cards grid */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--gray-100);
            padding: 40px 30px;
            border: 1px solid var(--gray-200);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition);
        }

        .review-card:hover {
            transform: translateY(-5px);
            background: var(--white);
            box-shadow: var(--shadow-hover);
            border-color: var(--black);
        }

        .review-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Avatar styling */
        .reviewer-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--black);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
        }

        .reviewer-meta h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--black);
        }

        .reviewer-meta span {
            font-size: 0.72rem;
            color: var(--gray-400);
        }

        .google-icon {
            width: 20px;
            height: 20px;
            fill: #4285F4;
        }

        .review-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 18px;
        }

        .review-rating svg {
            width: 16px;
            height: 16px;
            fill: #FFC107;
        }

        .review-content {
            font-size: 0.95rem;
            color: var(--gray-500);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .review-badge {
            font-size: 0.65rem;
            font-weight: 600;
            color: var(--gray-400);
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .review-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #25D366;
        }

        /* =============================================
           RANDEVU / CTA SECTION
        ============================================= */
        .cta {
            background: var(--gray-100);
            text-align: center;
        }

        .cta-inner {
            max-width: 720px;
            margin: 0 auto;
        }

        .cta-inner .q-section-label {
            justify-content: center;
        }
        .cta-inner .q-section-label::before {
            display: none;
        }

        #booking-calendar-container {
            max-width: 600px;
            min-height: 120px;
            margin: 0 auto 40px;
            border: 2px dashed var(--gray-400);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            position: relative;
            background: var(--white);
            transition: var(--transition);
        }

        #booking-calendar-container:hover {
            border-color: var(--black);
        }

        #booking-calendar-container::after {
            content: 'Online Randevu Sistemi Yakında Hizmetinizde';
            font-family: var(--body);
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--gray-400);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* CTA WhatsApp with corporate color */
        .cta-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 48px;
            background: transparent;
            color: var(--whatsapp-green);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 2px solid var(--whatsapp-green);
            transition: var(--transition);
        }

        .cta-whatsapp:hover {
            background: var(--whatsapp-green);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
        }

        .cta-whatsapp svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .cta-note {
            font-size: 0.8rem;
            color: var(--gray-500);
            margin-top: 15px;
            font-weight: 300;
        }

        /* =============================================
           FOOTER
        ============================================= */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 90px 0 0;
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
            gap: 30px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-logo-wrapper {
            background: transparent;
            padding: 0;
            border-radius: 0;
            border: none;
            display: inline-block;
            margin-bottom: 16px;
            box-shadow: none;
            mix-blend-mode: screen;
        }

        .footer-brand-logo {
            height: 150px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-brand-desc {
            font-size: 0.9rem;
            font-weight: 300;
            color: var(--gray-400);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        /* Social Icons: Brand Exception (original colors) */
        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: var(--transition);
        }

        .footer-socials a svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        /* WhatsApp Button styling */
        .footer-socials a.whatsapp {
            background: var(--whatsapp-green);
        }
        .footer-socials a.whatsapp:hover {
            background: #20ba56;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        /* Instagram styling */
        .footer-socials a.instagram {
            background: var(--instagram-gradient);
        }
        .footer-socials a.instagram:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
        }

        /* TikTok styling */
        .footer-socials a.tiktok {
            background: var(--tiktok-color);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: -2px -2px 0 #00f2fe, 2px 2px 0 #fe0979;
        }
        .footer-socials a.tiktok:hover {
            transform: translateY(-3px);
            box-shadow: -3px -3px 0 #00f2fe, 3px 3px 0 #fe0979;
        }

        /* YouTube styling */
        .footer-socials a.youtube {
            background: var(--youtube-red);
        }
        .footer-socials a.youtube:hover {
            background: #e60000;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
        }

        .footer-col-heading {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 24px;
        }

        .footer-nav li {
            margin-bottom: 12px;
        }

        .footer-nav a {
            font-size: 0.88rem;
            font-weight: 300;
            color: var(--gray-400);
            transition: var(--transition-fast);
        }

        .footer-nav a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-contact-row {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }

        .footer-contact-icon {
            flex-shrink: 0;
            margin-top: 3px;
        }

        .footer-contact-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--gray-400);
            fill: none;
            stroke-width: 1.5;
        }

        .footer-contact-text {
            font-size: 0.88rem;
            font-weight: 300;
            color: var(--gray-400);
            line-height: 1.6;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 0;
        }

        .footer-copy {
            font-size: 0.75rem;
            font-weight: 300;
            color: var(--gray-500);
            letter-spacing: 0.5px;
        }

        .footer-bottom-nav {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-nav a {
            font-size: 0.75rem;
            font-weight: 300;
            color: var(--gray-500);
        }

        .footer-bottom-nav a:hover {
            color: var(--white);
        }

        /* =============================================
           INSTAGRAM FEED SECTION
        ============================================= */
        .instagram-section {
            background: var(--white);
        }

        .instagram-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px;
        }

        .instagram-header .q-section-label {
            justify-content: center;
        }
        .instagram-header .q-section-label::before {
            display: none;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }

        .instagram-item {
            position: relative;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: var(--black);
            display: block;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }

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

        .instagram-item-overlay {
            position: absolute;
            inset: 0;
            background: rgba(18, 18, 18, 0.8);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            z-index: 2;
            transition: opacity 0.4s ease;
            color: var(--white);
            font-size: 0.88rem;
            font-weight: 500;
            gap: 8px;
        }

        .instagram-item-overlay svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
            margin-bottom: 4px;
        }

        .instagram-stats-wrap {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .instagram-stat-detail {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .instagram-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .instagram-item:hover .instagram-img {
            transform: scale(1.08);
        }

        .instagram-item:hover .instagram-item-overlay {
            opacity: 1;
        }

        .instagram-btn-wrap {
            text-align: center;
        }

        .btn-instagram-follow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            background: var(--instagram-gradient);
            color: var(--white);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
            transition: var(--transition);
        }

        .btn-instagram-follow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
        }

        .btn-instagram-follow svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        /* =============================================
           RESPONSIVENESS (100% MOBILE COMPATIBLE)
        ============================================= */
        @media (max-width: 1100px) {
            .container { padding: 0 30px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .about-layout { gap: 40px; }
            .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
            .instagram-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 860px) {
            .nav-center { display: none; }
            .hamburger { display: flex; }
            .navbar { padding: 18px 0; }
            .navbar.scrolled { padding: 12px 0; }
            .container { padding: 0 20px; }
            .section-spacer { padding: 80px 0; }

            .about-layout {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-watermark { display: none; }

            .about-img-container::before {
                top: -12px;
                left: -12px;
                right: 15px;
                bottom: 15px;
            }

            .about-photo {
                height: auto;
                max-height: 420px;
            }

            .about-text-col {
                text-align: center;
            }

            .about-text-col .q-section-label {
                justify-content: center;
            }
            .about-text-col .q-section-label::before {
                display: none;
            }

            .services-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 50px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .service-card {
                height: 480px;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-actions {
                flex-direction: column;
                gap: 15px;
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }

            .btn-whatsapp, .btn-outline-light {
                width: 100%;
                justify-content: center;
            }

            .hero h1 {
                font-size: clamp(2.2rem, 7vw, 3.2rem);
            }

            .line-left, .line-right {
                display: none;
            }

            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 35px;
            }

            .footer-brand-col {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-socials { justify-content: center; }
            .footer-contact-row { justify-content: center; }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .about-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .about-stat {
                border-right: none;
                border-bottom: 1px solid var(--gray-200);
                padding: 15px 0;
            }

            .about-stat:last-child {
                border-bottom: none;
            }

            .about-photo {
                height: auto;
                max-height: 320px;
            }

            .about-badge {
                bottom: 10px;
                left: 10px;
                padding: 14px 18px;
            }

            .about-badge-star {
                width: 20px;
                height: 20px;
            }

            .about-badge-info strong {
                font-size: 1rem;
            }

            .nav-cta {
                padding: 10px 18px;
                font-size: 0.7rem;
            }

            .cta-whatsapp {
                padding: 16px 30px;
                font-size: 0.75rem;
                width: 100%;
                justify-content: center;
            }
        }

/* ============================================================
   SUBPAGE & DROPDOWN NAVIGATION STYLES
   ============================================================ */

/* Desktop Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.55rem;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 12px 0;
    min-width: 210px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 0.76rem !important;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.65) !important;
    text-transform: uppercase;
    text-align: left;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none !important; /* disable default line anim */
}

.dropdown-menu a:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 28px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(5px);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown Styling */
.mobile-nav-section-title {
    font-size: 0.72rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 15px;
    margin-bottom: 8px;
}

.mobile-nav-sub-link {
    font-family: var(--heading) !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 6px 0 !important;
    display: block;
}

.mobile-nav-sub-link:hover {
    color: var(--white) !important;
}

/* Subpage Hero */
.subpage-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--near-black);
    padding-top: 100px; /* Offset for fixed header */
}

.subpage-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.38);
    transform: scale(1.03);
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.subpage-breadcrumbs {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 15px;
}

.subpage-breadcrumbs a {
    color: var(--white);
    transition: var(--transition-fast);
}

.subpage-breadcrumbs a:hover {
    color: var(--gray-400);
}

.subpage-breadcrumbs span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.2);
}

.subpage-hero h1 {
    font-family: var(--heading);
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Subpage Content Layout */
.subpage-layout {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 60px;
    padding: 80px 0;
}

.subpage-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.subpage-block h2 {
    font-family: var(--heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    border-left: 2px solid var(--white);
    padding-left: 15px;
}

.subpage-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-300);
    font-weight: 300;
    margin-bottom: 20px;
}

/* Subpage Advantage Bullet List */
.advantage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.advantage-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--dark-card);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.advantage-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.advantage-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

.advantage-text h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.advantage-text p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--gray-400);
    margin-bottom: 0;
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header h3 {
    font-family: var(--heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.5px;
}

.faq-icon-toggle {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon-toggle::before,
.faq-icon-toggle::after {
    content: '';
    position: absolute;
    background: var(--white);
    transition: transform 0.3s ease;
}

/* Horizontal line */
.faq-icon-toggle::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.faq-icon-toggle::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active .faq-header {
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-icon-toggle::after {
    transform: rotate(90deg);
}

.faq-item.active .faq-icon-toggle::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
    padding: 0 30px;
}

.faq-item.active .faq-content {
    max-height: 300px;
    opacity: 1;
    padding: 0 30px 30px 30px;
}

.faq-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin: 0;
}

/* Sidebar Styling */
.subpage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 35px 30px;
}

.sidebar-widget h3 {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* CTA Sidebar Card */
.sidebar-cta {
    text-align: center;
    border-color: rgba(255, 255, 255, 0.15);
}

.sidebar-cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-cta-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
}

.sidebar-cta p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-400);
    margin-bottom: 25px;
}

.btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.btn-sidebar-wa {
    background: #25d366;
    color: var(--white);
}

.btn-sidebar-wa:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Sidebar Services Menu */
.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-menu-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.sidebar-menu-list a:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding-left: 24px;
}

.sidebar-menu-list li.active a {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
    font-weight: 500;
}

.sidebar-menu-list li.active a svg {
    stroke: var(--black);
}

.sidebar-menu-arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.sidebar-menu-list a:hover .sidebar-menu-arrow {
    transform: translateX(4px);
}

/* Sidebar Working Hours */
.working-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.working-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-400);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.working-hours-list li span:last-child {
    color: var(--white);
    font-weight: 500;
}

/* Responsive Grid subpage layout */
@media (max-width: 1024px) {
    .subpage-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .subpage-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .subpage-layout {
        padding: 50px 0;
    }
    .subpage-sidebar {
        grid-template-columns: 1fr;
    }
    .advantage-list {
        grid-template-columns: 1fr;
    }
    .subpage-hero {
        height: 320px;
        padding-top: 80px;
    }
}

/* ============================================================
   GATEWAY PAGE & SERVICES THREE-COLS STYLES
============================================================ */
.gateway-container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #000;
}

.gateway-side {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-side:hover {
    width: 55%;
}

/* Handle siblings when one hover happens */
.gateway-side:hover + .gateway-side {
    width: 45%;
}

.gateway-container:has(.male-side:hover) .female-side {
    width: 45%;
}
.gateway-container:has(.male-side:hover) .male-side {
    width: 55%;
}

.side-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.5);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.gateway-side:hover .side-image {
    transform: scale(1.05);
    filter: grayscale(100%) brightness(0.65);
}

.side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.side-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #c5a880;
    letter-spacing: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.side-title {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 6px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.side-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.gateway-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 0;
}

.gateway-btn .btn-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.gateway-btn:hover {
    background: var(--white);
    color: #000;
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.gateway-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.gateway-logo-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(12, 12, 12, 0.95);
    border: 2px solid #c5a059;
    padding: 20px;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    pointer-events: none;
    transition: all 0.3s ease;
}

.gateway-logo-badge img {
    max-width: 130px;
    max-height: 130px;
    height: auto;
    filter: invert(1) contrast(250%) brightness(90%);
    mix-blend-mode: screen;
    border-radius: 50%;
}

/* Services Three Column Layout Override */
.services-grid.three-cols {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Responsive Gateway & Grid */
@media (max-width: 991px) {
    .gateway-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .gateway-side {
        width: 100% !important;
        height: 50vh;
    }
    
    .gateway-side:hover {
        height: 55vh;
    }
    
    .gateway-container:has(.male-side:hover) .female-side {
        height: 45vh;
        width: 100% !important;
    }
    
    .gateway-container:has(.male-side:hover) .male-side {
        height: 55vh;
        width: 100% !important;
    }
    
    .gateway-logo-badge {
        width: 130px;
        height: 130px;
        padding: 15px;
        border: 2px solid #c5a059;
    }
    
    .gateway-logo-badge img {
        max-width: 90px;
        max-height: 90px;
    }

    .services-grid.three-cols {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .services-grid.three-cols {
        grid-template-columns: 1fr !important;
    }
}


/* Custom Updates: Dropdown Stability, TikTok/YouTube Buttons, Floating Actions */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.tiktok-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--tiktok-color);
    color: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: -2px -2px 0 #00f2fe, 2px 2px 0 #fe0979;
    transition: var(--transition);
}

.tiktok-btn:hover {
    background: var(--tiktok-color) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: -3px -3px 0 #00f2fe, 3px 3px 0 #fe0979 !important;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--youtube-red);
    color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--youtube-red);
    transition: var(--transition);
}

.youtube-btn:hover {
    background: #e60000 !important;
    border-color: #e60000 !important;
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35) !important;
}

/* Floating Actions (Sticky WhatsApp & Back to Top) */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    z-index: 9999;
    pointer-events: none;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
}

.floating-whatsapp {
    background: #25d366;
}

.floating-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-back-to-top {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none !important;
    color: var(--white);
}

.floating-back-to-top.show {
    display: flex !important;
}

.floating-back-to-top:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-5px) scale(1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.floating-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Forced SVG colors and sizes for header social buttons */
.instagram-btn svg,
.tiktok-btn svg,
.youtube-btn svg,
.whatsapp-btn svg {
    width: 20px !important;
    height: 20px !important;
    fill: #ffffff !important;
    display: block !important;
}
.instagram-btn:hover svg,
.tiktok-btn:hover svg,
.youtube-btn:hover svg,
.whatsapp-btn:hover svg {
    fill: #ffffff !important;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #25D366;
    color: var(--white);
    border-radius: 4px;
    border: 1px solid #25D366;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #25D366 !important;
    border-color: #25D366 !important;
    transform: translateY(-2px) scale(1.08) !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
}
