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

        :root {
            --primary: #1B4332;
            --primary-dark: #0F2A20;
            --primary-light: #2D6A4F;
            --secondary: #14251E;
            --bg-main: #ffffff;
            --bg-light: #f8fafc;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f1f5f9;
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .brand-font {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Navbar - Premium Cafe: Logo + Menü + QR/Giriş */
        .navbar {
            position: relative;
            background: linear-gradient(135deg, #FBF8F1 0%, #F6EFDD 100%) !important;
            padding: 0px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(27, 67, 50, 0.04);
            border-bottom: 1px solid rgba(27, 67, 50, 0.1);
            backdrop-filter: blur(12px);
        }

        .navbar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
            pointer-events: none;
        }

        .navbar.scrolled {
            padding: 0px 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
        }

        .navbar .container-fluid,
        .navbar .navbar-container {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .navbar-brand {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 800;
            color: #1B4332 !important;
            letter-spacing: -0.5px;
            text-decoration: none;
        }
        @media (max-width: 991.98px) {
            .navbar-brand {
                width: 100%;
                justify-content: center !important;
            }
        }

        .navbar-logo-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 14px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-logo-wrap:hover {
            transform: scale(1.03);
            opacity: 0.95;
        }

        .navbar-logo-img {
            height: 108px;
            max-width: 290px;
            object-fit: contain;
        }

        @media (max-width: 991.98px) {
            .navbar-logo-img {
                height: 92px;
            }
        }

        /* Premium nav links - koyu yeşil */
        .navbar-nav .nav-link {
            color: rgba(27, 67, 50, 0.85) !important;
            font-weight: 600;
            font-size: 0.875rem;
            padding: 8px 14px !important;
            margin: 0 2px;
            letter-spacing: 0.3px;
            border-radius: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            border-radius: 2px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-nav .nav-link:hover {
            color: #1B4332 !important;
            background: rgba(27, 67, 50, 0.07);
        }

        .navbar-nav .nav-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .navbar-nav .nav-link.active {
            color: #1B4332 !important;
            background: rgba(27, 67, 50, 0.12);
        }

        .navbar-nav .nav-link.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Navbar CTA Buttons */
        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .navbar-cta .btn {
            font-weight: 600;
            font-size: 0.85rem;
            padding: 9px 18px;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-cta .btn-qr {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff !important;
            border: none;
            box-shadow: 0 4px 15px rgba(27, 67, 50, 0.35);
        }

        .navbar-cta .btn-qr:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(27, 67, 50, 0.45);
            color: #fff !important;
        }

        .navbar-cta .btn-rezervasyon {
            border: 1px solid rgba(27, 67, 50, 0.35);
            color: #1B4332 !important;
            background: rgba(27, 67, 50, 0.04);
        }

        .navbar-cta .btn-rezervasyon:hover {
            background: #1B4332;
            border-color: #1B4332;
            color: #fff !important;
        }

        .navbar .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-height: 56px;
        }

        .navbar .navbar-nav.navbar-nav-right {
            flex-direction: row;
            margin-left: auto;
            gap: 0;
        }

        /* Etkinlik Bildirim Balonu - sağ alt köşe, 10sn sonra kaybolur */
        .event-notification-balloon {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 9998;
            max-width: 300px;
            background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(27, 67, 50, 0.2);
            padding: 0;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
        }
        .event-notification-balloon.show {
            opacity: 1;
            visibility: visible;
            animation: balloonSlideInBottom 0.5s ease-out forwards;
        }
        .event-notification-balloon.balloon-bottom-right {
            bottom: 90px;
            right: 20px;
        }
        .event-balloon-close {
            position: absolute;
            top: 8px;
            right: 8px;
            z-index: 2;
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .event-balloon-close:hover {
            background: rgba(0, 0, 0, 0.6);
        }
        .event-notification-balloon.hiding {
            opacity: 0;
            visibility: hidden;
        }
        @keyframes balloonSlideInBottom {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .event-notif-inner {
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }
        .event-notif-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #f1f5f9;
            flex-shrink: 0;
        }
        .event-notif-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .event-notif-img.event-notif-img-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            font-size: 2rem;
        }
        .event-notif-content {
            padding: 12px 14px;
        }
        .event-notif-content strong {
            display: block;
            color: var(--text-main);
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        .event-notif-days {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
            background: rgba(27, 67, 50, 0.12);
            padding: 2px 8px;
            border-radius: 6px;
            margin-bottom: 6px;
        }
        .event-notif-date {
            font-size: 0.8rem;
            color: var(--primary);
            display: block;
            margin-bottom: 6px;
        }
        .event-notif-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .event-notification-balloon[data-mobile-click-modal="1"] {
            cursor: pointer;
        }
        @media (min-width: 769px) {
            .event-notification-balloon[data-mobile-click-modal="1"] {
                cursor: default;
            }
        }
        .event-notif-modal-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 12px;
            overflow: hidden;
            background: #f1f5f9;
        }
        .event-notif-modal-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        @media (max-width: 768px) {
            .event-notification-balloon {
                max-width: 280px;
                bottom: 80px;
                right: 12px;
                left: auto;
            }
        }

        /* Mobil menü kaldırıldı - hamburger menü yok */
        .navbar #navbarMobileWrapper {
            display: none !important;
        }

        .navbar-toggler {
            display: none !important;
        }

        /* Bootstrap mavi yerine turuncu */
        .btn-outline-primary {
            border-color: var(--primary) !important;
            color: var(--primary) !important;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary) !important;
            border-color: var(--primary) !important;
            color: #fff !important;
        }

        .text-primary,
        a.text-primary {
            color: var(--primary) !important;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            border: none;
            box-shadow: 0 8px 25px rgba(27, 67, 50, 0.35);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary-custom:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(27, 67, 50, 0.45);
            color: #fff;
        }

        .btn-primary-custom:active {
            transform: translateY(-1px) scale(0.98);
        }

        .btn-qr-menu {
            background: linear-gradient(135deg, #C9A227 0%, #1B4332 100%);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            box-shadow: 0 8px 25px rgba(27, 67, 50, 0.35);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-qr-menu::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-qr-menu:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-qr-menu:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(27, 67, 50, 0.45);
            color: #fff;
        }

        /* Hero Section (Giriş) - Beyaz arka plan, hareketli animasyonlar */
        .hero {
            position: relative;
            padding: 160px 0 100px;
            overflow: hidden;
            background: #ffffff;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero-blobs {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .hero-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.85;
            will-change: transform;
            pointer-events: none;
        }

        .hero-blob-1 {
            width: 400px;
            height: 400px;
            top: 5%;
            left: 0%;
            background: radial-gradient(circle, rgba(27, 67, 50, 0.35) 0%, rgba(27, 67, 50, 0.1) 40%, transparent 70%);
            animation: heroBlobFloat 8s ease-in-out infinite;
        }

        .hero-blob-2 {
            width: 320px;
            height: 320px;
            top: 45%;
            right: 0%;
            background: radial-gradient(circle, rgba(45, 106, 79, 0.3) 0%, rgba(45, 106, 79, 0.08) 40%, transparent 70%);
            animation: heroBlobFloat 10s ease-in-out infinite 1.5s reverse;
        }

        .hero-blob-3 {
            width: 280px;
            height: 280px;
            bottom: 10%;
            left: 15%;
            background: radial-gradient(circle, rgba(27, 67, 50, 0.25) 0%, rgba(27, 67, 50, 0.06) 40%, transparent 70%);
            animation: heroBlobFloat 9s ease-in-out infinite 2s;
        }

        .hero-blob-4 {
            width: 300px;
            height: 300px;
            top: 20%;
            right: 20%;
            background: radial-gradient(circle, rgba(27, 67, 50, 0.2) 0%, rgba(27, 67, 50, 0.05) 40%, transparent 70%);
            animation: heroBlobFloat 11s ease-in-out infinite 0.5s reverse;
        }

        @keyframes heroBlobFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            20% { transform: translate(80px, -50px) scale(1.15); }
            40% { transform: translate(-60px, 60px) scale(0.9); }
            60% { transform: translate(50px, 40px) scale(1.1); }
            80% { transform: translate(-70px, -30px) scale(0.95); }
        }

        .hero .hero-desen {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-color: transparent;
            background-image: radial-gradient(circle, rgba(27, 67, 50, 0.08) 2px, transparent 2px);
            background-size: 40px 40px;
            animation: heroDesenMove 15s linear infinite;
            pointer-events: none;
        }

        @keyframes heroDesenMove {
            0% { background-position: 0 0; }
            100% { background-position: 40px 40px; }
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(25px, -25px) rotate(120deg);
            }

            66% {
                transform: translate(-15px, 15px) rotate(240deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 10px 24px;
            background: rgba(27, 67, 50, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(27, 67, 50, 0.2);
            border-radius: 50px;
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(27, 67, 50, 0.1);
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--text-main) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.3s both, titleShine 6s ease-in-out infinite 1s;
            filter: drop-shadow(0 2px 12px rgba(27, 67, 50, 0.25));
        }

        @keyframes titleShine {

            0%,
            100% {
                background-position: 0% center;
            }

            50% {
                background-position: 100% center;
            }
        }

        .hero-text {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 550px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-image {
            position: relative;
            z-index: 1;
        }

        .hero-image-box {
            border-radius: 24px;
            overflow: hidden;
            min-height: 450px;
            background: linear-gradient(135deg, #1B4332 0%, #C9A227 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInRight 1s ease-out 0.5s both;
            transform-style: preserve-3d;
            box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.4), 0 0 20px rgba(27, 67, 50, 0.2), 0 15px 50px -15px rgba(27, 67, 50, 0.25);
        }

        .hero-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 3px;
            background: linear-gradient(135deg, #1B4332, #C9A227, #1B4332);
            background-size: 200% 200%;
            animation: borderGradient 5s ease infinite;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        @keyframes borderGradient {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .hero-image-box.has-image {
            background: #000;
        }

        .hero-image-box:hover {
            box-shadow: 0 20px 60px -15px rgba(27, 67, 50, 0.35), 0 0 50px -10px rgba(27, 67, 50, 0.2);
        }

        .hero-image-box:hover::after {
            animation-duration: 4s;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-slider-wrap .carousel {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slider-wrap .carousel-inner,
        .hero-slider-wrap .carousel-item {
            height: 100%;
            min-height: 450px;
        }

        .hero-slider-wrap .carousel-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-slider-wrap .carousel-control-prev,
        .hero-slider-wrap .carousel-control-next {
            display: none;
        }

        .hero-image-box::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--primary), #C9A227, var(--primary));
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .hero-image-box:hover::before {
            opacity: 1;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .hero-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform 0.5s;
        }

        .hero-image-box:not(.hero-slider-wrap):hover img {
            transform: scale(1.05);
        }

        .hero-image-placeholder {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
            padding: 40px;
        }

        .hero-image-placeholder i {
            font-size: 5rem;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .hero-image-placeholder h4 {
            color: #fff;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        /* ===== PREMIUM CAFE/RESTORAN - Modern Animasyonlu Arka Planlar ===== */
        @keyframes cafeGradientFlow {

            0%,
            100% {
                background-position: 0% 50%;
                filter: hue-rotate(0deg);
            }

            33% {
                background-position: 100% 50%;
                filter: hue-rotate(5deg);
            }

            66% {
                background-position: 50% 100%;
                filter: hue-rotate(-3deg);
            }
        }

        @keyframes blobFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }

            25% {
                transform: translate(20px, -15px) scale(1.05) rotate(2deg);
            }

            50% {
                transform: translate(-15px, 20px) scale(0.98) rotate(-2deg);
            }

            75% {
                transform: translate(10px, 10px) scale(1.02) rotate(1deg);
            }
        }

        @keyframes steamRise {
            0% {
                opacity: 0.3;
                transform: translateY(0) scale(0.9);
            }

            50% {
                opacity: 0.6;
                transform: translateY(-20px) scale(1.1);
            }

            100% {
                opacity: 0.2;
                transform: translateY(-40px) scale(1);
            }
        }

        @keyframes shimmerWave {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        @keyframes meshPulse {

            0%,
            100% {
                opacity: 0.6;
                transform: scale(1);
            }

            50% {
                opacity: 0.9;
                transform: scale(1.1);
            }
        }

        /* Etkinlik - konfeti düşme animasyonu */
        @keyframes confettiFall {
            0% {
                transform: translateY(-50px) rotate(0deg);
                opacity: 0.9;
            }

            100% {
                transform: translateY(120vh) rotate(720deg);
                opacity: 0.4;
            }
        }

        @keyframes confettiFloat {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }

            25% {
                transform: translate(15px, -10px) rotate(90deg) scale(1.1);
            }

            50% {
                transform: translate(-10px, 5px) rotate(180deg) scale(0.9);
            }

            75% {
                transform: translate(5px, 10px) rotate(270deg) scale(1.05);
            }
        }

        @keyframes sparklePulse {

            0%,
            100% {
                opacity: 0.4;
                transform: scale(0.8);
            }

            50% {
                opacity: 0.9;
                transform: scale(1.2);
            }
        }

        .section-bg-img {
            position: relative;
            overflow: hidden;
        }

        .section-bg-img .section-bg-layer {
            position: absolute;
            inset: -15%;
            z-index: 0;
            background-size: 300% 300%;
            animation: cafeGradientFlow 12s ease-in-out infinite;
        }

        .section-bg-img .section-bg-layer::before {
            content: '';
            position: absolute;
            width: 60%;
            height: 60%;
            top: 10%;
            left: 20%;
            background: radial-gradient(ellipse, rgba(27, 67, 50, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: blobFloat 8s ease-in-out infinite;
        }

        .section-bg-img .section-bg-layer::after {
            content: '';
            position: absolute;
            width: 40%;
            height: 40%;
            bottom: 10%;
            right: 15%;
            background: radial-gradient(ellipse, rgba(27, 67, 50, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: blobFloat 10s ease-in-out infinite 1s;
        }

        .section-bg-img .section-bg-overlay {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(241, 245, 249, 0.9) 100%);
        }

        .section-bg-img .section-title,
        .section-bg-img .section-subtitle {
            color: var(--text-main) !important;
            -webkit-text-fill-color: var(--text-main) !important;
        }

        .section-bg-img .section-title {
            background: none !important;
            text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
        }

        .section-bg-img .section-subtitle {
            text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
        }

        .section-bg-img .feature-card,
        .section-bg-img .event-card-modern,
        .section-bg-img .product-card,
        .section-bg-img .category-card,
        .section-bg-img .testimonial-card,
        .section-bg-img .ayin-musteri-card,
        .section-bg-img .contact-card {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }

        .section-bg-img .row .col-12>h3 {
            color: var(--text-main) !important;
            text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
        }

        /* Etkinlikler - kutlama animasyonu: düşen konfeti */
        .section-etkinlikler {
            overflow: hidden;
        }

        .section-etkinlikler .section-bg-layer {
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 30%, #e2e8f0 60%, #cbd5e1 100%);
            background-size: 400% 400%;
            animation: cafeGradientFlow 14s ease-in-out infinite;
        }

        .section-etkinlikler .section-bg-layer::before {
            background: radial-gradient(ellipse at 30% 20%, rgba(45, 106, 79, 0.12) 0%, transparent 50%);
        }

        .section-etkinlikler .section-bg-layer::after {
            background: radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
        }

        .section-etkinlikler .etkinlik-desen {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.4;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23fb923c' fill-opacity='0.5'/%3E%3Ccircle cx='0' cy='0' r='1' fill='%23a855f7' fill-opacity='0.4'/%3E%3Ccircle cx='60' cy='30' r='1' fill='%23f472b6' fill-opacity='0.4'/%3E%3Ccircle cx='30' cy='60' r='1' fill='%23facc15' fill-opacity='0.35'/%3E%3Cpath d='M30 25 L32 30 L37 30 L33 33 L34 38 L30 35 L26 38 L27 33 L23 30 L28 30 Z' fill='%23fb923c' fill-opacity='0.2'/%3E%3Cpath d='M50 15 L51 17 L53 17 L51 18.5 L52 21 L50 19 L48 21 L49 18.5 L47 17 L49 17 Z' fill='%23a855f7' fill-opacity='0.15'/%3E%3Cpath d='M10 45 L11 47 L13 47 L11 48.5 L12 51 L10 49 L8 51 L9 48.5 L7 47 L9 47 Z' fill='%23f472b6' fill-opacity='0.15'/%3E%3C/svg%3E");
        }

        /* Konfeti parçacıkları */
        .etkinlik-anim {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .etkinlik-anim span {
            position: absolute;
            display: block;
            width: 10px;
            height: 10px;
            border-radius: 2px;
            animation: confettiFall 8s linear infinite;
        }

        .etkinlik-anim span:nth-child(1) {
            left: 5%;
            background: #fb923c;
            animation-duration: 7s;
            animation-delay: 0s;
        }

        .etkinlik-anim span:nth-child(2) {
            left: 15%;
            background: #a855f7;
            animation-duration: 9s;
            animation-delay: 1s;
            width: 8px;
            height: 8px;
        }

        .etkinlik-anim span:nth-child(3) {
            left: 25%;
            background: #f472b6;
            animation-duration: 6s;
            animation-delay: 0.5s;
            border-radius: 50%;
        }

        .etkinlik-anim span:nth-child(4) {
            left: 35%;
            background: #facc15;
            animation-duration: 10s;
            animation-delay: 2s;
        }

        .etkinlik-anim span:nth-child(5) {
            left: 45%;
            background: #22c55e;
            animation-duration: 7s;
            animation-delay: 0.2s;
            width: 6px;
            height: 6px;
        }

        .etkinlik-anim span:nth-child(6) {
            left: 55%;
            background: #3b82f6;
            animation-duration: 8s;
            animation-delay: 1.5s;
        }

        .etkinlik-anim span:nth-child(7) {
            left: 65%;
            background: #ec4899;
            animation-duration: 9s;
            animation-delay: 0.8s;
            border-radius: 50%;
        }

        .etkinlik-anim span:nth-child(8) {
            left: 75%;
            background: #2D6A4F;
            animation-duration: 6s;
            animation-delay: 2.5s;
        }

        .etkinlik-anim span:nth-child(9) {
            left: 85%;
            background: #8b5cf6;
            animation-duration: 7s;
            animation-delay: 0.3s;
            width: 8px;
            height: 8px;
        }

        .etkinlik-anim span:nth-child(10) {
            left: 95%;
            background: #E0C468;
            animation-duration: 10s;
            animation-delay: 1s;
        }

        .etkinlik-anim span:nth-child(11) {
            left: 10%;
            background: #06b6d4;
            animation-duration: 8s;
            animation-delay: 3s;
            border-radius: 50%;
        }

        .etkinlik-anim span:nth-child(12) {
            left: 50%;
            background: #ef4444;
            animation-duration: 7s;
            animation-delay: 1.8s;
        }

        .etkinlik-anim span:nth-child(13) {
            left: 30%;
            background: #a855f7;
            animation-duration: 9s;
            animation-delay: 0.6s;
            width: 6px;
            height: 6px;
        }

        .etkinlik-anim span:nth-child(14) {
            left: 70%;
            background: #14b8a6;
            animation-duration: 6s;
            animation-delay: 2.2s;
        }

        .etkinlik-anim span:nth-child(15) {
            left: 20%;
            background: #f472b6;
            animation-duration: 10s;
            animation-delay: 0.4s;
            border-radius: 50%;
        }

        /* Neden Pofflounge / Hakkımızda - beyaz arka plan */
        .section-about .section-bg-layer {
            background: #ffffff;
        }
        .section-about .section-bg-layer::before,
        .section-about .section-bg-layer::after {
            display: none;
        }
        .section-about .section-bg-overlay {
            background: rgba(255, 255, 255, 0);
        }

        /* Menü - beyaz arka plan */
        .section-menu .section-bg-layer {
            background: #ffffff;
        }
        .section-menu .section-bg-layer::before,
        .section-menu .section-bg-layer::after {
            display: none;
        }
        .section-menu .section-bg-overlay {
            background: rgba(255, 255, 255, 0);
        }

        /* Randevu - site paleti: kremsi/turuncu kahve tonları */
        .section-randevu {
            overflow: hidden;
        }

        .section-randevu .section-bg-layer {
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 25%, #e2e8f0 50%, #cbd5e1 75%, #94a3b8 100%);
            background-size: 400% 400%;
            animation: cafeGradientFlow 16s ease-in-out infinite;
        }

        .section-randevu .section-bg-layer::before {
            background: radial-gradient(ellipse at 25% 25%, rgba(27, 67, 50, 0.12) 0%, transparent 55%);
            animation: blobFloat 9s ease-in-out infinite;
        }

        .section-randevu .section-bg-layer::after {
            background: radial-gradient(ellipse at 75% 75%, rgba(45, 106, 79, 0.15) 0%, transparent 55%);
            animation: blobFloat 11s ease-in-out infinite 1.5s;
        }

        .section-randevu .randevu-desen {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.3;
            background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='1.5' fill='%23f97316' fill-opacity='0.4'/%3E%3Cpath d='M25 5 L27 18 L40 20 L28 28 L30 42 L25 35 L20 42 L22 28 L10 20 L23 18 Z' fill='%23fb923c' fill-opacity='0.2'/%3E%3Ccircle cx='10' cy='10' r='0.8' fill='%23fdba74' fill-opacity='0.45'/%3E%3Ccircle cx='40' cy='40' r='0.8' fill='%23fdba74' fill-opacity='0.45'/%3E%3C/svg%3E");
            background-size: 55px 55px;
        }

        /* Galeri arka plan - yıldızlı gece gökyüzü, tüm alana */
        .section-gallery.section-bg-img {
            background: radial-gradient(ellipse 120% 120% at 50% 50%, #10231A 0%, #080F0B 100%);
            background-size: cover;
            background-position: center;
        }
        .section-gallery .section-bg-layer.gallery-bg-stars {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            transform: translateX(-50%);
            width: 100vw;
            min-width: 100%;
            background: radial-gradient(ellipse 120% 120% at 50% 50%, #10231A 0%, #080F0B 100%);
            background-size: cover;
            background-position: center;
            animation: none;
            z-index: 0;
        }
        .section-gallery .section-bg-layer::before,
        .section-gallery .section-bg-layer::after {
            display: none;
        }
        .section-gallery .gallery-stars {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            transform: translateX(-50%);
            width: 100vw;
            min-width: 100%;
            z-index: 0;
            overflow: hidden;
        }
        .section-gallery .gallery-stars-inner {
            position: absolute;
            border-radius: 50%;
        }
        #gallery-stars1 {
            width: 1px;
            height: 1px;
            background: transparent;
            box-shadow: 100px 150px #fff, 400px 80px #fff, 250px 300px #fff, 600px 200px #fff, 150px 400px #fff, 700px 350px #fff, 300px 100px #fff, 50px 250px #fff, 500px 450px #fff, 200px 500px #fff, 350px 50px #fff, 650px 150px #fff, 450px 300px #fff, 100px 380px #fff, 550px 80px #fff, 750px 280px #fff;
            animation: galleryAnimStar 80s linear infinite;
        }
        #gallery-stars2 {
            width: 2px;
            height: 2px;
            background: transparent;
            box-shadow: 200px 100px #fff, 500px 250px #fff, 300px 400px #fff, 100px 200px #fff, 600px 50px #fff, 400px 350px #fff, 150px 450px #fff, 550px 180px #fff, 250px 150px #fff, 700px 400px #fff;
            animation: galleryAnimStar 120s linear infinite;
        }
        #gallery-stars3 {
            width: 1px;
            height: 1px;
            background: transparent;
            box-shadow: 180px 220px #fff, 480px 120px #fff, 320px 380px #fff, 80px 180px #fff, 580px 320px #fff, 380px 80px #fff, 220px 420px #fff, 520px 240px #fff;
            animation: galleryAnimStar 150s linear infinite;
        }
        @keyframes galleryAnimStar {
            from { transform: translateY(0); }
            to { transform: translateY(-1200px); }
        }
        .section-gallery .section-bg-overlay {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            transform: translateX(-50%);
            width: 100vw;
            min-width: 100%;
            z-index: 0;
            background: rgba(0, 0, 0, 0.15);
        }
        .section-gallery .section-title,
        .section-gallery .section-subtitle {
            color: #fff !important;
            -webkit-text-fill-color: #fff !important;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        /* Yorumlar - premium gradient (Ayın Müşterileri/İletişim ile uyumlu) */
        .section-testimonials .section-bg-layer {
            background: linear-gradient(135deg, #0B1F17 0%, #10291F 25%, #1B4332 50%, #14532D 75%, #0B2B1F 100%);
            background-size: 200% 200%;
            animation: cafeGradientFlow 15s ease-in-out infinite;
        }
        .section-testimonials .section-bg-layer::before {
            background: radial-gradient(ellipse at 20% 30%, rgba(27, 67, 50, 0.15) 0%, transparent 50%);
            animation: blobFloat 10s ease-in-out infinite;
        }
        .section-testimonials .section-bg-layer::after {
            background: radial-gradient(ellipse at 80% 70%, rgba(224, 196, 104, 0.12) 0%, transparent 50%);
            animation: blobFloat 12s ease-in-out infinite 2s;
        }
        .section-testimonials .section-bg-overlay {
            background: linear-gradient(180deg, rgba(11, 31, 23, 0.75) 0%, rgba(11, 43, 31, 0.85) 100%);
        }
        .section-testimonials .section-title {
            color: #fff !important;
            -webkit-text-fill-color: #fff !important;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        /* Ayın Müşterileri - beyaz arka plan */
        .section-ayin-musteri .section-bg-layer {
            background: #ffffff;
        }
        .section-ayin-musteri .section-bg-layer::before,
        .section-ayin-musteri .section-bg-layer::after {
            display: none;
        }
        .section-ayin-musteri .section-bg-overlay {
            background: rgba(255, 255, 255, 0);
        }
        .ayin-musteri-icons {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }
        .ayin-musteri-icons .ayin-icon {
            position: absolute;
            color: rgba(27, 67, 50, 0.18);
            font-size: 1.5rem;
        }
        .ayin-musteri-icons .ayin-icon-1 { animation: ayinFloat1 8s ease-in-out infinite; }
        .ayin-musteri-icons .ayin-icon-2 { animation: ayinFloat2 7s ease-in-out infinite 0.5s; }
        .ayin-musteri-icons .ayin-icon-3 { animation: ayinFloat3 9s ease-in-out infinite 1s; }
        .ayin-musteri-icons .ayin-icon-4 { animation: ayinFloat1 7.5s ease-in-out infinite 1.5s; }
        .ayin-musteri-icons .ayin-icon-5 { animation: ayinFloat2 8.5s ease-in-out infinite 2s; }
        .ayin-musteri-icons .ayin-icon-6 { animation: ayinFloat3 6.5s ease-in-out infinite 2.5s; }
        .ayin-musteri-icons .ayin-icon-7 { animation: ayinFloat1 7s ease-in-out infinite 3s; }
        @keyframes ayinFloat1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
            25% { transform: translate(12px, -15px) rotate(5deg); opacity: 1; }
            50% { transform: translate(-8px, -8px) rotate(-3deg); opacity: 0.9; }
            75% { transform: translate(-15px, 10px) rotate(4deg); opacity: 1; }
        }
        @keyframes ayinFloat2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
            33% { transform: translate(-10px, 12px) rotate(-6deg); opacity: 1; }
            66% { transform: translate(15px, -10px) rotate(5deg); opacity: 0.85; }
        }
        @keyframes ayinFloat3 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
            50% { transform: translate(8px, 15px) scale(1.1); opacity: 1; }
        }
        .ayin-musteri-icons .ayin-icon-1,
        .ayin-musteri-icons .ayin-icon-7 { font-size: 1.8rem; }
        .ayin-musteri-icons .ayin-icon-1 { top: 15%; left: 8%; }
        .ayin-musteri-icons .ayin-icon-2 { top: 25%; right: 12%; }
        .ayin-musteri-icons .ayin-icon-3 { top: 60%; left: 5%; }
        .ayin-musteri-icons .ayin-icon-4 { top: 70%; right: 8%; }
        .ayin-musteri-icons .ayin-icon-5 { top: 35%; left: 15%; }
        .ayin-musteri-icons .ayin-icon-6 { top: 80%; left: 25%; }
        .ayin-musteri-icons .ayin-icon-7 { top: 20%; right: 22%; }
        .ayin-musteri-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .ayin-musteri-header .ayin-header-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(27, 67, 50, 0.15), rgba(27, 67, 50, 0.08));
            color: var(--primary);
            border-radius: 50%;
            font-size: 1.2rem;
            animation: ayinHeaderPulse 2.5s ease-in-out infinite;
        }
        .ayin-musteri-header .ayin-header-icon:last-child {
            animation-delay: 1.25s;
        }
        @keyframes ayinHeaderPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* İletişim - arka plan: harita + gradyan (map yoksa gradient fallback) */
        .section-contact .section-bg-layer {
            background: linear-gradient(135deg, #0B1F17 0%, #10291F 25%, #1B4332 50%, #14532D 75%, #0B2B1F 100%);
            background-size: 200% 200%;
            animation: cafeGradientFlow 15s ease-in-out infinite;
        }
        .contact-map-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }
        .contact-map-bg iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            filter: saturate(0.4) brightness(0.65) contrast(1.05);
        }
        .contact-map-bg-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(160deg, rgba(11, 31, 23, 0.92) 0%, rgba(27, 67, 50, 0.85) 35%, rgba(11, 43, 31, 0.88) 65%, rgba(20, 37, 30, 0.92) 100%);
        }
        .contact-map-bg-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 25% 35%, rgba(27, 67, 50, 0.06) 0%, transparent 45%);
        }
        .section-contact:has(.contact-map-bg) .section-bg-layer,
        .section-contact:has(.contact-map-bg) .section-bg-overlay { display: none; }
        .section-contact .container { position: relative; z-index: 2; }

        /* Özel Fırsatlar - kristal efekt arka plan */
        .section-promo {
            overflow: hidden;
            position: relative;
            box-shadow: none;
        }

        .section-promo .section-bg-layer {
            background: #000000;
        }

        .section-promo .section-bg-layer::before,
        .section-promo .section-bg-layer::after {
            display: none;
        }

        .section-promo .section-bg-overlay {
            background: transparent;
        }

        .section-promo .promo-desen {
            display: none;
        }

        @keyframes crystalShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .section-promo h3 {
            color: #fff !important;
            font-size: 1.6rem;
            font-weight: 800;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }
        .section-promo h3 i {
            color: var(--primary);
        }
        .section-promo p {
            color: rgba(255, 255, 255, 0.95) !important;
            font-size: 1.1rem;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
        }

        /* Newsletter - koyu yeşilden altına geçiş */
        .section-newsletter .section-bg-layer {
            background:
                radial-gradient(ellipse at 85% 90%, rgba(201, 162, 39, 0.4) 0%, transparent 55%),
                linear-gradient(180deg, #0B2B1F 0%, #14532D 60%, #1B4332 100%);
        }

        .section-newsletter .section-bg-overlay {
            background: rgba(0, 0, 0, 0.45);
        }

        .section-newsletter h3,
        .section-newsletter p {
            color: #fff !important;
        }

        .section-etkinlikler .container,
        .section-about .container,
        .section-menu .container,
        .section-randevu .container,
        .section-gallery .container,
        .section-testimonials .container,
        .section-ayin-musteri .container,
        .section-contact .container,
        .section-promo .container,
        .section-newsletter .container {
            position: relative;
            z-index: 1;
        }

        /* Features Section - Neden Pofflounge */
        .section-about.features-section {
            background: #ffffff;
        }
        .features-section {
            padding: 32px 0;
            position: relative;
            z-index: 1;
        }

        /* Neden Pofflounge - Ultra Premium kartlar */
        /* Neden Pofflounge - kind-liger-90 flip kart stili */
        .section-about .feature-card-flip {
            position: relative;
            width: 100%;
            min-height: 280px;
            background-color: #fff;
            border-radius: 10px;
            transform-style: preserve-3d;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            perspective: 1000px;
            box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .section-about .feature-card-flip:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
        }
        .section-about .feature-card-face {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 24px;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .section-about .feature-card-flip:hover .feature-card-face .feature-icon {
            transform: scale(0);
        }
        .section-about .feature-card-flip:hover .feature-card-face-img {
            transform: scale(0);
        }
        .section-about .feature-card-face-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        @media (max-width: 768px) {
            .section-about .feature-card-face-img {
                object-fit: contain;
                object-position: center center;
            }
            .section-about .feature-card-face {
                min-height: 220px;
                background: #f8fafc;
            }
            .section-about .feature-card-flip {
                min-height: 320px;
            }
        }
        .section-about .feature-card-flip:hover .feature-card-face-img {
            box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.4), 0 0 24px rgba(27, 67, 50, 0.3);
        }
        .section-about .feature-card-flip .feature-icon {
            width: 80px;
            height: 80px;
            font-size: 2.2rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .section-about .feature-card__content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 20px;
            box-sizing: border-box;
            background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
            transform: rotateX(-90deg);
            transform-origin: bottom;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .section-about .feature-card-flip:hover .feature-card__content {
            transform: rotateX(0deg);
        }
        .section-about .feature-card__title {
            margin: 0 0 12px;
            font-size: 1.15rem;
            color: var(--text-main);
            font-weight: 700;
        }
        .section-about .feature-card__description {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        @media (prefers-reduced-motion: reduce) {
            .section-about .feature-card-flip:hover {
                transform: none;
            }
            .section-about .feature-card-flip:hover .feature-card-face .feature-icon,
            .section-about .feature-card-flip:hover .feature-card-face-img {
                transform: none;
            }
        }

        /* Neden Pofflounge - 5 kart yan yana */
        .section-about .features-cards-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
        }
        .section-about .features-col {
            min-width: 0;
        }
        .section-about .feature-icon {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
            border-radius: 10px;
        }
        .section-about .feature-icon img {
            border-radius: 10px;
            object-fit: contain;
        }
        @media (max-width: 1200px) {
            .section-about .features-cards-row {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .section-about .features-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .section-about .features-cards-row {
                grid-template-columns: 1fr;
            }
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 20px 18px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.6);
            height: 100%;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px -15px rgba(27, 67, 50, 0.2);
            border-color: rgba(27, 67, 50, 0.3);
            background: rgba(255, 255, 255, 0.95);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--primary);
            margin: 0 auto 30px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
            border: 4px solid rgba(255, 255, 255, 0.8);
            overflow: hidden;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            box-shadow: 0 15px 35px rgba(27, 67, 50, 0.3);
            border-color: #fff;
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
        }

        .feature-card h4 {
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-main);
            transition: color 0.3s;
        }

        .feature-card:hover h4 {
            color: var(--primary);
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 1rem;
            margin: 0;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Event Cards - Modern */
        .event-card-modern {
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .event-card-modern:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(27, 67, 50, 0.2);
        }

        .event-card-modern .event-img-wrap {
            position: relative;
            height: 260px;
            overflow: hidden;
            background: linear-gradient(135deg, #1B4332 0%, #C9A227 100%);
        }

        .event-card-modern .event-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .event-card-modern:hover .event-img-wrap img {
            transform: scale(1.08);
        }

        .event-card-modern .event-img-wrap .event-days-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 8px 14px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .event-card-modern .event-img-wrap .event-days-badge.today {
            background: var(--primary);
        }

        .event-card-modern .event-img-wrap .event-days-badge.past {
            background: #64748b;
        }

        .event-card-modern .event-img-wrap .event-no-img {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 4rem;
        }

        .event-card-modern .event-body {
            padding: 18px;
            flex: 1;
        }

        .event-card-modern h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .event-card-modern .event-date-text {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .event-card-modern p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.5;
        }

        .event-share-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            background: rgba(27, 67, 50, 0.08);
            border: 1px solid rgba(27, 67, 50, 0.25);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        .event-share-btn:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(27, 67, 50, 0.3);
        }
        .event-share-btn i {
            font-size: 1rem;
        }

        /* Stats Section - Animated Counters + Modern Arka Plan */
        .stats-section {
            padding: 36px 0;
            background: linear-gradient(-45deg, #14532D 0%, #0B2B1F 25%, #2D6A4F 50%, #0F2A20 75%, #14532D 100%);
            background-size: 400% 400%;
            animation: cafeGradientFlow 10s ease-in-out infinite;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 45%);
        }

        .stats-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
        }

        .stats-section .stats-desen {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.35;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
                url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23fff' fill-opacity='0.5'/%3E%3Ccircle cx='0' cy='0' r='0.6' fill='%23fff' fill-opacity='0.35'/%3E%3Ccircle cx='40' cy='20' r='0.6' fill='%23fff' fill-opacity='0.35'/%3E%3Ccircle cx='20' cy='40' r='0.6' fill='%23fff' fill-opacity='0.35'/%3E%3Cpath d='M20 15 L22 20 L27 20 L23 23 L24 28 L20 25 L16 28 L17 23 L13 20 L18 20 Z' fill='%23fff' fill-opacity='0.15'/%3E%3C/svg%3E");
        }

        .stats-section .container {
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-item .stat-num {
            font-size: 2.8rem;
            font-weight: 800;
            display: block;
            line-height: 1.2;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-item:hover .stat-num {
            transform: scale(1.1);
        }

        .stat-item .stat-label {
            font-size: 0.9rem;
            opacity: 0.95;
        }

        /* Promo Banner */
        .promo-section {
            padding: 40px 0;
            background: #000000;
            color: #fff;
        }

        .promo-section h3 {
            color: #fff;
            font-weight: 700;
        }

        .promo-section p {
            margin: 0;
            opacity: 0.95;
        }

        /* Gallery - yıldızlı gece gökyüzü fallback */
        .section-gallery.gallery-section {
            background: radial-gradient(ellipse 120% 120% at 50% 50%, #10231A 0%, #080F0B 100%);
        }
        .gallery-section {
            padding: 32px 0;
        }

        .section-gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            width: 100%;
            max-width: 100%;
        }
        /* 5'ten fazla resim: tek seferde 5 göster, otomatik kayma */
        .section-gallery .gallery-title-wrap {
            position: relative;
            z-index: 1;
        }
        .section-gallery .gallery-full-width {
            width: 100%;
            position: relative;
            z-index: 1;
        }
        .section-gallery .gallery-album-track {
            display: contents;
        }
        .section-gallery .gallery-grid.gallery-album {
            display: block;
            overflow: hidden;
            padding-bottom: 0;
        }
        .section-gallery .gallery-grid.gallery-album .gallery-album-track {
            display: flex;
            flex-wrap: nowrap;
            gap: 1.5rem;
            width: max-content;
            animation: gallerySlide 20s linear infinite;
        }
        @keyframes gallerySlide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (prefers-reduced-motion: reduce) {
            .section-gallery .gallery-grid.gallery-album .gallery-album-track {
                animation: none;
            }
        }
        .section-gallery .gallery-grid.gallery-album .gallery-album-track .gallery-item {
            flex: 0 0 auto;
            width: calc((100vw - 4 * 1.5rem) / 5);
        }

        /* Galeri görselleri - loud-turkey-91: dönen gradient border kart, büyük boyut */
        .section-gallery .gallery-item.gallery-card-box {
            aspect-ratio: 1;
            position: relative;
            display: grid;
            place-items: center;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0, rgba(0, 0, 0, 0.5) 0 2px 25px 0;
            cursor: pointer;
        }
        .section-gallery .gallery-item.gallery-card-box::before {
            content: "";
            position: absolute;
            width: 40%;
            height: 150%;
            background: linear-gradient(to right, #1B4332, #C9A227, #E0C468);
            transform-origin: center;
            animation: galleryGlowingBorder 16s linear infinite;
        }
        @keyframes galleryGlowingBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .section-gallery .gallery-item .gallery-card {
            position: absolute;
            width: 97%;
            height: 97%;
            background: #05130C;
            border-radius: 20px;
            z-index: 2;
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.4) 0 30px 60px -12px inset, rgba(0, 0, 0, 0.5) 0 18px 36px -18px inset;
            transition: transform 0.3s ease;
        }
        .section-gallery .gallery-item:hover .gallery-card {
            transform: scale(1.02);
        }
        .section-gallery .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .section-gallery .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Galeri modal */
        .gallery-modal-content {
            background: transparent !important;
            border: none !important;
            position: relative;
        }
        .gallery-modal-content .modal-dialog {
            max-width: 90vw;
        }
        .gallery-modal-img {
            width: 100%;
            height: auto;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 16px;
        }
        .gallery-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 1056;
            opacity: 1;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
        }
        #galleryModal .modal-content {
            padding: 0;
        }

        /* Genel gallery (fallback) */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }
        .gallery-item {
            aspect-ratio: 1;
            border-radius: 16px;
            overflow: hidden;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Testimonials - Ultra Premium kartlar */
        .testimonials-section {
            padding: 32px 0;
        }

        .section-testimonials .container { position: relative; z-index: 2; }

        .section-testimonials .testimonial-card {
            position: relative;
            border-radius: 28px;
            padding: 3px;
            height: 100%;
            background: linear-gradient(135deg, rgba(27, 67, 50, 0.4), rgba(224, 196, 104, 0.3), rgba(27, 67, 50, 0.2));
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
        }

        .section-testimonials .testimonial-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 30px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(27, 67, 50, 0.3), transparent 40%, transparent 60%, rgba(224, 196, 104, 0.25));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .section-testimonials .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.35), 0 0 80px -15px rgba(27, 67, 50, 0.3);
        }

        .section-testimonials .testimonial-card:hover::before {
            opacity: 1;
        }

        .section-testimonials .testimonial-card-inner {
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 245, 0.97) 100%);
            backdrop-filter: blur(32px);
            -webkit-backdrop-filter: blur(32px);
            border-radius: 26px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .testimonial-google-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 28px 28px 20px;
            background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
            border-bottom: 1px solid rgba(27, 67, 50, 0.08);
        }

        .testimonial-google-icon i.fa-google {
            font-size: 2.2rem;
            background: linear-gradient(135deg, #4285F4, #34A853);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonial-stars {
            color: #FBBC04;
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-shadow: 0 1px 2px rgba(201, 162, 39, 0.3);
        }

        .testimonial-quote {
            flex: 1 1 auto;
            padding: 28px 28px 24px;
            margin: 0;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text-main);
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            font-family: Georgia, serif;
            color: rgba(27, 67, 50, 0.15);
            line-height: 1;
        }

        .testimonial-author {
            padding: 0 28px 28px;
            margin-top: auto;
        }

        .testimonial-author-name {
            display: inline-block;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--primary);
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(27, 67, 50, 0.1), rgba(27, 67, 50, 0.05));
            border-radius: 50px;
        }

        /* Ayın Müşterileri */
        .ayin-musteri-section {
            padding: 32px 0;
            position: relative;
            background: #ffffff;
        }

        .section-ayin-musteri .container { position: relative; z-index: 2; }

        .section-ayin-musteri .ayin-musteri-card {
            max-width: 360px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
            background: transparent;
        }

        .section-ayin-musteri .ayin-musteri-card-inner {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: box-shadow 0.4s;
        }

        .section-ayin-musteri .ayin-musteri-card:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .section-ayin-musteri .ayin-musteri-card:hover .ayin-musteri-card-inner {
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3), 0 0 60px -15px rgba(27, 67, 50, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.5);
        }

        .ayin-musteri-card .photo-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            margin-bottom: 0;
        }

        .ayin-musteri-card .photo-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
        }

        .ayin-musteri-card .photo-wrap img,
        .ayin-musteri-card .photo-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ayin-musteri-card .photo-placeholder {
            background: linear-gradient(135deg, #0B1F17 0%, #1B4332 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 4rem;
        }

        .ayin-musteri-card .crown-badge {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #1B4332 0%, #14532D 100%);
            color: #fff;
            padding: 8px 20px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(27, 67, 50, 0.5);
            z-index: 2;
        }

        .ayin-musteri-card .ayin-musteri-content {
            padding: 24px 24px 28px;
            text-align: center;
        }

        .ayin-musteri-card h4 {
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .ayin-musteri-card .quote {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
            padding-left: 20px;
            border-left: 3px solid rgba(27, 67, 50, 0.4);
            text-align: left;
        }

        /* Newsletter */
        .newsletter-section {
            padding: 28px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #fff;
        }

        .newsletter-section h3 {
            color: #fff;
        }

        .newsletter-section .form-control {
            border-radius: 50px;
            padding: 14px 24px;
        }

        .newsletter-section .btn-newsletter {
            background: #fff;
            color: var(--primary);
            border: none;
            border-radius: 50px;
            padding: 14px 32px;
            font-weight: 700;
            white-space: nowrap;
        }

        .newsletter-input {
            width: 100%;
        }

        @media (min-width: 576px) {
            .newsletter-input {
                width: auto;
                max-width: 300px;
            }
        }

        /* WhatsApp Floating */
        .whatsapp-float {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 999;
            transition: transform 0.3s;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            color: #fff;
            transform: scale(1.1);
        }

        @media (min-width: 992px) {
            .whatsapp-float {
                bottom: 24px;
                right: 24px;
            }
        }

        /* Menu Preview - beyaz arka plan + Ultra Premium kartlar */
        .menu-section {
            padding: 32px 0;
            position: relative;
            background: #ffffff;
        }
        .section-menu .container { position: relative; z-index: 2; }

        /* Kategoriler - masaüstünde 2 satır (örn. 7+6), mobil dokunulmaz */
        .category-cards-row {
            display: flex;
            flex-wrap: nowrap;
            gap: 1rem;
            justify-content: center;
        }
        .category-card-wrap {
            flex: 1 1 0;
            min-width: 0;
        }
        @media (min-width: 769px) {
            .category-cards-row {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
                grid-auto-rows: auto;
                flex-wrap: unset;
                gap: 1rem;
            }
            .category-card-wrap {
                flex: unset;
                min-width: 0;
                min-height: 0;
            }
            .section-menu .category-card-wrap .category-card {
                width: 100%;
                overflow: hidden;
            }
        }

        /* Kategori kartları - Ultra Premium (hepsi aynı ölçüde: aspect-ratio ile sabit) */
        .section-menu .category-card {
            border-radius: 24px;
            height: auto;
            aspect-ratio: 4 / 4.4;
            width: 100%;
            box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.6);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .section-menu .category-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 26px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 50%, rgba(255, 255, 255, 0.3));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s;
            z-index: 1;
        }
        .section-menu .category-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 35px 70px -20px rgba(0, 0, 0, 0.3), 0 0 60px -15px rgba(27, 67, 50, 0.25);
            border-color: rgba(255, 255, 255, 0.9);
        }
        .section-menu .category-card:hover::before {
            opacity: 1;
        }
        .section-menu .category-card-content {
            padding: 24px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
            position: relative;
        }
        .section-menu .category-card .category-card-arrow {
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 1.1rem;
            opacity: 0.9;
            transition: transform 0.3s ease;
        }
        .section-menu .category-card:hover .category-card-arrow {
            transform: translateX(6px);
        }
        .section-menu .category-card h5 {
            font-size: 1.2rem;
            font-weight: 800;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
            padding-right: 28px;
            line-height: 1.35;
            min-height: 2.7em;
            margin-bottom: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        @media (max-width: 768px) {
            .category-cards-row {
                flex-direction: column;
                align-items: center;
            }
            .category-card-wrap {
                width: 100%;
                max-width: 400px;
            }
            .section-menu .category-card {
                aspect-ratio: 8 / 5;
            }
        }

        /* Ürün kartları - Ultra Premium */
        .section-menu .product-card {
            border-radius: 28px;
            overflow: hidden;
            padding: 3px;
            background: linear-gradient(135deg, rgba(27, 67, 50, 0.25), rgba(224, 196, 104, 0.2));
            box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.5);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .section-menu .product-card::after {
            background: linear-gradient(135deg, rgba(27, 67, 50, 0.5), rgba(224, 196, 104, 0.4));
        }
        .section-menu .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.25), 0 0 80px -15px rgba(27, 67, 50, 0.3);
        }
        .section-menu .product-card .product-body {
            background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
            padding: 24px;
        }
        .section-menu .product-card .product-title {
            font-size: 1.15rem;
            font-weight: 800;
        }
        .section-menu .product-card .product-price {
            font-size: 1.4rem;
        }

        .section-title {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 12px;
            background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), #C9A227);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 18px;
            font-weight: 500;
        }
        .section-bg-img .row.text-center.mb-5 {
            margin-bottom: 0.75rem !important;
        }
        .section-bg-img .row.g-4 {
            --bs-gutter-y: 0.75rem;
        }

        .category-card {
            background: linear-gradient(135deg, #C9A227 0%, #1B4332 100%);
            border-radius: 20px;
            padding: 0;
            text-align: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 180px;
            box-shadow: 0 12px 40px rgba(27, 67, 50, 0.25);
            position: relative;
            overflow: hidden;
        }

        .category-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .category-card:hover::after {
            width: 300px;
            height: 300px;
        }

        .category-card.has-image {
            background: #000;
        }

        .category-card.has-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.7;
            z-index: 1;
            transition: all 0.5s;
        }

        .category-card.has-image:hover::before {
            opacity: 0.85;
            transform: scale(1.1);
        }

        .category-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 60px rgba(27, 67, 50, 0.4);
            color: #fff;
        }

        .category-card-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
        }

        .category-card-image {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .category-card i {
            font-size: 2.5rem;
            margin-bottom: 10px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .category-card h5 {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .product-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .product-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary), #C9A227);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .product-card:hover::after {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            height: 170px;
            object-fit: cover;
            background: var(--bg-light);
        }

        .product-body {
            padding: 16px;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .product-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
        }

        /* Contact Section - telefon ve e-posta linkleri siyah */
        .contact-section a:not(.btn-map-directions),
        .contact-card a {
            color: var(--text-main) !important;
        }
        .contact-section a:not(.btn-map-directions):hover,
        .contact-card a:hover {
            color: var(--text-main) !important;
            opacity: 0.85;
        }
        .contact-section {
            padding: 32px 0;
            position: relative;
        }

        .section-contact .section-title,
        .section-contact .section-subtitle {
            color: #fff !important;
            -webkit-text-fill-color: #fff !important;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .section-contact .contact-card {
            background: rgba(255, 255, 255, 0.95);
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 20px;
            padding: 20px 18px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
            height: 100%;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(27, 67, 50, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        .contact-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(27, 67, 50, 0.2);
            border-color: rgba(27, 67, 50, 0.3);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(27, 67, 50, 0.1) 0%, rgba(27, 67, 50, 0.05) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 14px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .contact-card:hover .contact-icon {
            transform: rotate(360deg) scale(1.1);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(27, 67, 50, 0.3);
        }

        /* İletişim - Premium Harita Kutusu */
        .contact-map-box {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 245, 0.95) 100%);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 80px -20px rgba(27, 67, 50, 0.25);
            border: 1px solid rgba(27, 67, 50, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .contact-map-box::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 26px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(27, 67, 50, 0.4), rgba(224, 196, 104, 0.3), rgba(27, 67, 50, 0.2));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 0;
            opacity: 0.8;
        }

        .contact-map-box:hover {
            box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.5), 0 0 100px -15px rgba(27, 67, 50, 0.35);
            transform: translateY(-2px);
        }

        .contact-map-header {
            padding: 16px 24px;
            background: linear-gradient(135deg, #1B4332 0%, #14532D 50%, #0B2B1F 100%);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 20px rgba(27, 67, 50, 0.3);
        }

        .contact-map-wrap {
            flex: 1;
            min-height: 280px;
            position: relative;
            background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
        }

        .contact-map-wrap iframe {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 280px;
        }

        .contact-map-footer {
            padding: 14px 24px;
            background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .contact-map-footer .map-address {
            font-size: 0.9rem;
            color: #495057;
        }

        .contact-map-footer .btn-map-directions {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            background: linear-gradient(135deg, #1B4332 0%, #14532D 100%);
            color: #fff !important;
            border-radius: 14px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(27, 67, 50, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .contact-map-footer .btn-map-directions:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(27, 67, 50, 0.45);
            color: #fff !important;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #FBF8F1 0%, #F6EFDD 100%);
            color: #1B4332;
            padding: 12px 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1B4332;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .footer-logo-icon {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #1B4332;
        }

        .footer p {
            color: rgba(27, 67, 50, 0.75);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

        .footer a {
            color: rgba(27, 67, 50, 0.75);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .footer a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-about {
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }
        .footer-about p {
            color: rgba(27, 67, 50, 0.85);
        }
        .footer-social {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 20px;
        }
        .site-footer .footer-social {
            margin-top: 0;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(27, 67, 50, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1B4332;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(27, 67, 50, 0.85);
            font-size: 0.9rem;
            margin: 0;
        }
        .footer-topcu-link {
            color: rgba(27, 67, 50, 0.7) !important;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-topcu-link:hover {
            color: var(--primary) !important;
        }

        .footer-hours {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .footer-hours-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-hours-item:last-child {
            border-bottom: none;
        }

        /* Mobile Bottom Navigation - Modern Design */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding: 8px 12px calc(8px + env(safe-area-inset-bottom)) 12px;
            box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
            z-index: 1000;
            display: none;
        }

        .mobile-bottom-nav.active {
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .mobile-nav-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 6px;
            text-decoration: none;
            color: var(--text-muted);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border-radius: 16px;
            margin: 0 2px;
            min-width: 0;
        }

        .mobile-nav-item.active {
            color: var(--primary);
        }

        .mobile-nav-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 100%;
            height: 100%;
            background: rgba(27, 67, 50, 0.08);
            border-radius: 16px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-nav-item.active::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .mobile-nav-icon {
            font-size: 1.4rem;
            margin-bottom: 4px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .mobile-nav-item.active .mobile-nav-icon {
            transform: scale(1.2) translateY(-2px);
            color: var(--primary);
        }

        .mobile-nav-label {
            font-size: 0.7rem;
            font-weight: 600;
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }

        /* QR Menu - Featured Button */
        .mobile-nav-item.qr-featured {
            flex: 0 0 auto;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #C9A227 0%, #1B4332 100%);
            color: #fff;
            box-shadow: 0 8px 25px rgba(27, 67, 50, 0.4);
            margin: -15px 8px 0;
            padding: 0;
            position: relative;
            overflow: visible;
        }

        .mobile-nav-item.qr-featured::before {
            display: none;
        }

        .mobile-nav-item.qr-featured::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: linear-gradient(135deg, #C9A227 0%, #1B4332 100%);
            opacity: 0.3;
            z-index: -1;
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.1;
            }
        }

        .mobile-nav-item.qr-featured .mobile-nav-icon {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: #fff;
        }

        .mobile-nav-item.qr-featured .mobile-nav-label {
            display: none;
        }

        .mobile-nav-item.qr-featured:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 35px rgba(27, 67, 50, 0.5);
        }

        .mobile-nav-item.qr-featured:active {
            transform: translateY(-3px) scale(1.02);
        }

        /* WhatsApp Button */
        .mobile-nav-item.whatsapp {
            color: #25D366;
        }

        .mobile-nav-item.whatsapp.active {
            color: #25D366;
        }

        .mobile-nav-item.whatsapp::before {
            background: rgba(37, 211, 102, 0.1);
        }

        .mobile-nav-item.whatsapp:hover {
            transform: translateY(-2px);
        }

        /* Phone Button */
        .mobile-nav-item.phone {
            color: var(--primary);
        }

        .mobile-nav-item.phone.active {
            color: var(--primary);
        }

        .mobile-nav-item.phone:hover {
            transform: translateY(-2px);
        }

        /* Notification Badge */
        .mobile-nav-badge {
            position: absolute;
            top: 2px;
            right: 8px;
            background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
            color: #fff;
            border-radius: 10px;
            min-width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0 4px;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
            animation: pulse 2s infinite;
            z-index: 10;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
            }

            50% {
                transform: scale(1.1);
                box-shadow: 0 2px 12px rgba(255, 71, 87, 0.6);
            }
        }

        .mobile-nav-badge.hidden {
            display: none;
        }


        /* Body padding for mobile nav */
        body {
            padding-bottom: 0;
        }

        @media (max-width: 991px) {
            body {
                padding-bottom: 80px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero {
                padding-top: 100px;
                text-align: center;
                padding-bottom: 80px;
            }

            .navbar {
                padding: max(0px, env(safe-area-inset-top)) 0 0px 0;
            }

            .navbar .container {
                justify-content: center;
            }

            .navbar-brand {
                font-size: 1.3rem;
                margin: 0;
            }

            #navContent {
                display: none !important;
            }

            .hero-image-box {
                margin-top: 30px;
                min-height: 350px;
            }

            .section-title {
                font-size: 2rem;
            }

            .features-section,
            .menu-section,
            .contact-section {
                padding: 36px 0;
            }

            .feature-card,
            .product-card,
            .contact-card {
                margin-bottom: 20px;
            }

            .mobile-bottom-nav {
                display: flex;
            }

            footer {
                padding: 10px 0 80px;
            }

            .btn-primary-custom,
            .btn-qr-menu {
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }

            .hero .d-flex.gap-3 {
                flex-direction: column;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 90px 0 70px;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-text {
                font-size: 0.95rem;
                margin-bottom: 25px;
            }

            .hero-badge {
                padding: 8px 18px;
                font-size: 0.85rem;
            }

            .btn-primary-custom,
            .btn-qr-menu {
                padding: 12px 24px;
                font-size: 0.9rem;
                width: 100%;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .section-menu .category-card {
                aspect-ratio: 8 / 5;
            }

            .category-card-content {
                padding: 18px;
            }

            .section-menu .category-card h5 {
                font-size: 1.1rem;
            }

            .feature-card,
            .contact-card {
                padding: 18px 16px;
            }

            .contact-map-wrap {
                height: 220px;
            }

            .contact-map-header,
            .contact-map-footer {
                padding: 14px 18px;
            }

            .contact-map-footer {
                flex-direction: column;
                align-items: stretch;
            }

            .contact-map-footer .btn-map-directions {
                justify-content: center;
            }

            .product-card {
                margin-bottom: 20px;
            }

            .product-image {
                height: 150px;
            }

            .mobile-nav-label {
                font-size: 0.65rem;
            }

            .mobile-nav-icon {
                font-size: 1.25rem;
            }

            .mobile-nav-item {
                padding: 6px 4px;
                margin: 0 1px;
            }

            .mobile-nav-item.qr-featured {
                width: 60px;
                height: 60px;
                margin: -12px 4px 0;
            }

            .mobile-nav-item.qr-featured .mobile-nav-icon {
                font-size: 1.6rem;
            }

            .mobile-nav-label {
                font-size: 0.65rem;
            }

            .mobile-nav-icon {
                font-size: 1.2rem;
            }

            .mobile-nav-badge {
                min-width: 16px;
                height: 16px;
                font-size: 0.6rem;
                top: 0;
                right: 4px;
            }

            .navbar-nav {
                text-align: center;
                padding: 1rem 0;
            }

            .navbar-nav .nav-link {
                padding: 12px 16px !important;
                margin: 2px 0;
            }

            .navbar-cta {
                justify-content: center;
                padding-top: 0.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.5rem;
            }

            .navbar-cta .btn {
                flex: 1;
                min-width: 140px;
            }

            footer {
                padding: 8px 0 75px;
            }

            .footer-logo {
                font-size: 1.5rem;
            }
        }

        /* Smart Navbar */
        .navbar {
            transition: top 0.3s ease-in-out;
        }

        body {
            /* Navbar height compensation removed */
        }