 
        /* --- CSS DEĞİŞKENLERİ --- */
        :root {
            --primary-bg: #FF5A4C; 
            --primary-bg-gradient: linear-gradient(135deg, #FF6B5B 0%, #FF4D3E 100%);
            
            --bg-cream: #FFF9F0; 
            --bg-card-pink: #FFF5F6; 
            --bg-card-orange: #FFF8F0; 
            --bg-card-white: #FAFAFA; 
            
            --text-white: #ffffff;
            --text-dark: #000000;
            --text-grey: #666666;
            --text-burgundy: #590018; /* Bordo */
            --footer-bg: #500014; /* Footer için hafif koyu ton */
            --icon-yellow: #F2A900;

            --btn-dark-bg: #590018; 
            --btn-light-bg: #FF6B5B;
            
            --card-bg: #ffffff;
            --shadow-soft: 0 20px 40px rgba(0,0,0,0.1);
            
            --main-font: 'Google Sans', 'Google Sans Flex', 'Inter', sans-serif;
            --container-width: 1470px;
            --header-height: 100px;
        }

        /* --- TEMEL AYARLAR --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: var(--main-font);
            color: var(--text-dark);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* --- HEADER --- */
        .site-header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); z-index: 1000; transition: all 0.3s ease; display: flex; align-items: center; background: transparent; }
        .site-header.scrolled { background: rgba(255, 90, 76, 0.95); backdrop-filter: blur(10px); box-shadow: 0 4px 30px rgba(0,0,0,0.1); height: 80px; }
        .site-header.menu-open { z-index: 2000 !important; background: transparent !important; backdrop-filter: none !important; box-shadow: none !important; }
        .header-inner { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
        .logo svg { height: 54px; width: auto; fill: none;  transition: stroke 0.3s ease; }
        .logo text { fill: var(--text-white); transition: fill 0.3s ease; }
        .site-header.menu-open .logo svg { stroke: var(--text-dark); }
        .site-header.menu-open .logo text { fill: var(--text-dark); }
        .desktop-nav { display: flex; gap: 40px; }
        .nav-link { color: var(--text-white); text-decoration: none; font-weight: 500; font-size: 1rem; position: relative; opacity: 0.95; transition: opacity 0.3s; }
        .nav-link:hover { opacity: 1; }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 50%; background-color: var(--text-white); transition: width 0.3s ease, left 0.3s ease; }
        .nav-link:hover::after { width: 100%; left: 0; }
        .header-cta { background-color: var(--btn-dark-bg); color: var(--text-white); padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s; }
        .header-cta:hover { transform: translateY(-2px); }
        .hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 10px; }
        .bar { width: 30px; height: 3px; background-color: var(--text-white); border-radius: 3px; transition: all 0.3s ease; }
        .site-header.menu-open .bar { background-color: var(--text-dark) !important; }
        .hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
        .hamburger.active .bar:nth-child(2) { opacity: 0; }
        .hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
        
        /* Mobile Menu */
        .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: #ffffff; z-index: 1001; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0.4s ease; }
        .mobile-menu-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
        .mobile-nav-list { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 40px; }
        .mobile-nav-link { color: var(--text-dark); text-decoration: none; font-size: 3rem; font-weight: 700; letter-spacing: -1px; transition: color 0.3s, transform 0.3s; display: block; }
        .mobile-nav-link:hover { color: var(--primary-bg); transform: scale(1.05); }

        /* HERO SECTION */
        .hero-section { background: var(--primary-bg); background: var(--primary-bg-gradient); color: var(--text-white); position: relative; padding-top: 150px; padding-bottom: 100px; }
        .bg-decoration { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; pointer-events: none; overflow: hidden; }
        .circle-outline { position: absolute; border: 2px solid rgba(255,255,255,0.15); border-radius: 50%; }
        .c1 { width: 600px; height: 600px; bottom: -200px; left: -200px; }
        .c2 { width: 900px; height: 900px; bottom: -350px; right: -200px; }
        .container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
        .hero-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 40px; min-height: 60vh; }
        .left-content { flex: 1.2; padding-right: 20px; }
        h1.hero-title { font-size: 6rem; line-height: 1.05; font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; }
        .inline-avatar { display: inline-block; width: 80px; height: 80px; border-radius: 50%; background-image: url('https://i.pravatar.cc/150?img=11'); background-size: cover; background-position: center; border: 4px solid var(--primary-bg); vertical-align: middle; margin: 0 5px; transform: translateY(-10px); }
        p.hero-subtitle { font-size: 1.25rem; font-weight: 400; margin-bottom: 40px; opacity: 0.9; }
        .cta-button { display: inline-block; background-color: var(--btn-dark-bg); color: var(--text-white); padding: 18px 36px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .right-content { flex: 1; position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
        .chat-card { position: absolute; left: 0; top: 10%; background: var(--card-bg); width: 320px; padding: 20px; border-radius: 24px; box-shadow: var(--shadow-soft); z-index: 2; transform: rotate(-3deg); transition: transform 0.3s; }
        .chat-card:hover { transform: rotate(0deg) scale(1.02); }
        .chat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
        .chat-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
        .chat-info h4 { color: var(--text-dark); font-size: 1rem; margin-bottom: 2px; }
        .chat-info span { color: var(--text-grey); font-size: 0.8rem; }
        .message-bubble { background-color: var(--btn-dark-bg); color: var(--text-white); padding: 20px; border-radius: 0 16px 16px 16px; font-size: 0.95rem; line-height: 1.4; position: relative; margin-bottom: 15px; }
        .reaction-badge { position: absolute; top: -10px; right: -10px; background: white; padding: 4px 8px; border-radius: 12px; font-size: 0.8rem; font-weight: bold; color: var(--text-dark); box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .chat-btn { background-color: var(--btn-light-bg); color: var(--text-white); border: none; width: 100%; padding: 12px; border-radius: 8px; font-weight: 600; font-family: var(--main-font); cursor: pointer; }
        .man-image-container { position: absolute; right: 0; bottom: 100px; z-index: 3; width: 100%;  }
        .man-image { width: 100%; height: auto; display: block; filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.2)); }
        .review-bubble { position: absolute; bottom: 50px; left: 50px; background: var(--card-bg); padding: 10px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-soft); z-index: 4; transform: rotate(2deg); }
        .review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
        .review-text { color: var(--text-dark); font-weight: 700; font-size: 0.9rem; }

        /* REFERANSLAR */
        .references-section { background-color: var(--bg-cream); padding: 80px 0; text-align: center; }
        .references-title { color: var(--text-burgundy); font-size: 2rem; font-weight: 700; line-height: 1.3; max-width: 700px; margin: 0 auto 50px auto; }
        .logos-container { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; opacity: 0.8; }
        .ref-logo { height: 50px; width: auto; filter: grayscale(100%); transition: filter 0.3s; mix-blend-mode: multiply; }
        .ref-logo:hover { filter: grayscale(0%); }

        /* SERVICES SLIDER */
        .services-section { padding: 100px 0; background-color: #fff; }
        .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
        .section-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; color: var(--text-dark); max-width: 600px; }
        .slider-controls { display: flex; gap: 15px; }
        .slider-btn { width: 50px; height: 50px; border-radius: 50%; background-color: var(--text-dark); color: var(--text-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
        .slider-btn:hover { transform: scale(1.1); }
        .slider-container { display: flex; gap: 30px; overflow-x: auto; padding-bottom: 20px; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
        .slider-container::-webkit-scrollbar { display: none; }
        .service-card { min-width: 400px; border-radius: 20px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(0,0,0,0.05); transition: transform 0.3s; }
        .service-card:hover { transform: translateY(-5px); }
        .service-card-button{display: flex; flex-direction: column; gap: 0;}
        .card-pink { background-color: var(--bg-card-pink); }
        .card-orange { background-color: var(--bg-card-orange); }
        .card-white { background-color: var(--bg-card-white); }
        .service-card-flex{ display: flex; flex-direction: column; gap: 10px;}
        .card-img-wrapper { width: 120px; height: 120px; margin-bottom: 30px; background: #fff; border-radius: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
        .card-img { width: 100%; height: auto; object-fit: contain; }
        .card-title { font-size: 2rem; font-weight: 800; margin-bottom: 15px; color: var(--text-dark); }
        .card-desc { font-size: 1rem; color: var(--text-grey); line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }
        .card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--btn-dark-bg); text-decoration: none; font-weight: 700; font-size: 0.95rem; margin-bottom: 25px; transition: opacity 0.2s; }
        .card-link:hover { opacity: 0.8; }
        .card-btn { background-color: var(--btn-dark-bg); color: var(--text-white); text-align: center; padding: 16px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: background-color 0.2s; }
        .card-btn:hover { background-color: #400010; }

        /* SPLIT CONTENT */
        .split-section { display: flex; flex-direction: column; width: 100%; }
        .split-row { display: flex; flex-wrap: wrap; width: 100%; min-height: 600px; }
        .split-content { flex: 1; min-width: 50%; padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
        .split-image { flex: 1; min-width: 50%; position: relative; overflow: hidden; }
        .split-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
        .split-image:hover img { transform: scale(1.05); }
        .bg-burgundy { background-color: var(--btn-dark-bg); color: var(--text-white); }
        .bg-coral { background-color: var(--primary-bg); color: var(--text-white); }
        .split-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 30px; max-width: 700px; }
        .split-desc { font-size: 1.2rem; line-height: 1.6; margin-bottom: 40px; max-width: 600px; opacity: 0.9; }
        .split-btn { background-color: #ffffff; padding: 18px 40px; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 1.1rem; transition: transform 0.2s, box-shadow 0.2s; }
        .split-btn.color-burgundy { color: var(--btn-dark-bg); }
        .split-btn.color-coral { color: var(--primary-bg); }
        .split-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .reverse-layout { flex-direction: row-reverse; }

        /* MUTLULUK & İSTATİSTİK */
        .happiness-section { background-color: var(--bg-cream); padding: 100px 0; position: relative; overflow: hidden; }
        .dec-squiggle { position: absolute; z-index: 1; pointer-events: none; stroke: var(--primary-bg); fill: none; stroke-width: 2; }
        .sq1 { bottom: 50px; left: -100px; width: 400px; height: 400px; transform: rotate(45deg); opacity: 0.6; }
        .sq2 { top: 50px; right: -50px; width: 300px; height: 300px; transform: rotate(-10deg); opacity: 0.6; }
        .happiness-title { color: var(--text-burgundy); font-size: 3rem; font-weight: 800; text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
        .happiness-card { background: #fff; position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; box-shadow: var(--shadow-soft); }
        .frame-wrapper { background-color: var(--btn-dark-bg); padding: 40px; }
        .frame-wrapper img { width: 100%; height: 500px; object-fit: cover; display: block; }
        .stats-bar { padding: 40px 60px; display: flex; justify-content: space-between; align-items: center; background: #fff; }
        .stat-item { text-align: center; }
        .stat-number { font-size: 4rem; font-weight: 900; color: var(--text-burgundy); line-height: 1; }
        .stat-label { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-top: 5px; }
        .stat-cta { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
        .stat-cta p { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }

        /* PACKAGES */
        .packages-section { padding: 100px 0; background-color: #fff; }
        .packages-slider { display: flex; gap: 40px; overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
        .packages-slider::-webkit-scrollbar { display: none; }
        .package-card { min-width: 100%; border: 1px solid #eeeeee; display: flex; background: #fff; }
        .pkg-content { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
        .pkg-content h3 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 30px; color: var(--text-dark); }
        .pkg-list { list-style: none; margin-bottom: 30px; }
        .pkg-list li { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; color: var(--text-dark); }
        .pkg-desc { font-size: 1rem; line-height: 1.6; color: var(--text-dark); margin-bottom: 20px; }
        .pkg-note { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 40px; }
        .pkg-btn { background-color: var(--primary-bg); color: var(--text-white); padding: 18px; text-align: center; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: opacity 0.2s; display: block; }
        .pkg-btn:hover { opacity: 0.9; }
        .pkg-image { flex: 1; position: relative; }
        .pkg-image img { width: 100%; height: 100%; object-fit: cover; display: block; }


        #success-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999999 !important;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease;
            }

            #success-overlay.active {
            opacity: 1;
            visibility: visible;
            }

            .success-box {
            background: white;
            padding: 30px 50px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
        }
        /* --- YENİ BÖLÜM: FOOTER & CTA FORM --- */
        .footer-wrapper {
            background-color: var(--footer-bg);
            position: relative;
            padding-top: 100px; /* Space for the floating card overlap if needed */
            overflow: hidden;
            margin-top: 50px;
        }

        /* Swirl Decorations for Footer */
        .footer-dec {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
            stroke: #fff;
            fill: none;
            stroke-width: 1;
        }
        .fd1 { top: 0; left: 0; width: 400px; height: 400px; }
        .fd2 { bottom: 0; right: 0; width: 500px; height: 500px; }

        /* Floating CTA Card */
        .footer-cta-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            padding: 0 20px;
            margin-bottom: 80px;
        }

        .cta-card-outer {
            background-color: var(--primary-bg); /* Orange/Salmon */
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .cta-card-inner {
            background-color: var(--bg-cream);
            border-radius: 20px;
            padding: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .cta-text-content {
            flex: 1;
            min-width: 250px;
        }

        .cta-title {
            color: var(--text-burgundy);
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
        }

        .cta-sub {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .cta-avatar-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--text-burgundy);
            flex-shrink: 0;
        }

        .cta-avatar-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-form {
            flex: 1;
            min-width: 280px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-input {
            width: 100%;
            padding: 16px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-family: var(--main-font);
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .form-input:focus { border-color: var(--primary-bg); }

        .form-btn {
            background-color: var(--btn-dark-bg);
            color: var(--text-white);
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .form-btn:hover { background-color: #400010; }


        /* Main Footer Content */
        .main-footer {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px 40px 20px;
            color: var(--text-white);
            position: relative;
            z-index: 5;
        }

        .footer-columns {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 80px;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
        }

        /* Footer Logo */
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: var(--text-white);
            text-decoration: none;
        }
        
        .footer-logo-icon {
            width: 40px;
            height: 40px;
        }

        .footer-logo-text {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .footer-desc {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
            max-width: 300px;
        }

        .footer-heading {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: var(--text-white);
            text-decoration: none;
            opacity: 0.9;
            font-size: 0.95rem;
            transition: opacity 0.2s;
        }
        .footer-links a:hover { opacity: 1; text-decoration: underline; }

        .contact-email {
            display: block;
            margin-bottom: 15px;
            color: var(--text-white);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-address {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: var(--icon-yellow);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #590018; /* Icon color inside */
            text-decoration: none;
            transition: transform 0.2s;
        }
        .social-icon:hover { transform: translateY(-3px); }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            font-size: 0.9rem;
            opacity: 0.7;
            font-weight: 500;
        }


        /* --- MODAL STYLES --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Arka plan karartma */
            z-index: 9999; /* En üstte durması için */
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px); /* Arka planı bulanıklaştır */
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            background-color: #fff;
            width: 90%;
            max-width: 500px;
            padding: 40px;
            border-radius: 24px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }

        .modal-overlay.active .modal-container {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            line-height: 1;
            cursor: pointer;
            color: var(--text-grey);
            transition: color 0.2s;
        }

        .modal-close:hover {
            color: var(--primary-bg);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .modal-header h3 {
            font-size: 2rem;
            color: var(--text-burgundy);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .modal-header p {
            color: var(--text-grey);
            font-size: 0.95rem;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .input-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .input-group input, 
        .input-group select, 
        .input-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-family: var(--main-font);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }

        .input-group input:focus,
        .input-group select:focus,
        .input-group textarea:focus {
            border-color: var(--primary-bg);
        }

        .input-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .modal-submit-btn {
            background-color: var(--btn-dark-bg);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            margin-top: 10px;
            transition: background-color 0.2s;
        }

        .modal-submit-btn:hover {
            background-color: #400010;
        }
   
  /* --- PAGE HERO --- */
        .page-hero {
            background: var(--primary-bg);
            background: var(--primary-bg-gradient);
            padding-top: 180px;
            padding-bottom: 80px;
            text-align: center;
            color: var(--text-white);
            position: relative;
        }
        .bg-decoration { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; pointer-events: none; overflow: hidden; }
        .circle-outline { position: absolute; border: 2px solid rgba(255,255,255,0.15); border-radius: 50%; }
        .c1 { width: 600px; height: 600px; bottom: -200px; left: -200px; }
        .c2 { width: 900px; height: 900px; bottom: -350px; right: -200px; }
        
        .container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
        
        .page-title { font-size: 4rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
        .page-subtitle { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 auto; line-height: 1.6; }

        /* HİZMETLER CSS */


      
        /* --- HİZMETLER IZGARA YAPISI (GRID) --- */
        .services-grid-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .services-grid {
            display: grid;
            /* Responsive Grid: Ekran küçüldükçe sütun sayısını azaltır */
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
        }

        /* Service Card (Ana sayfa stili, ancak yükseklik ayarlı) */
        .service-card-hizmet{
            border-radius: 20px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%; /* Eşit yükseklik için */
        }
        .service-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Kart Renkleri */
        .card-pink { background-color: var(--bg-card-pink); }
        .card-orange { background-color: var(--bg-card-orange); }
        .card-white { background-color: var(--bg-card-white); }
        .card-blue { background-color: var(--bg-card-blue); }
        .card-yellow { background-color: var(--bg-card-yellow); }

        .card-img-wrapper { width: 120px; height: 120px; margin-bottom: 30px; background: #fff; border-radius: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
        .card-img { width: 80%; height: auto; object-fit: contain; }
        .card-title { font-size: 2rem; font-weight: 800; margin-bottom: 15px; color: var(--text-dark); }
        .card-desc { font-size: 1rem; color: var(--text-grey); line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }
        
        .card-actions { margin-top: auto; }
        .card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--btn-dark-bg); text-decoration: none; font-weight: 700; font-size: 0.95rem; margin-bottom: 25px; transition: opacity 0.2s; }
        .card-link:hover { opacity: 0.8; }
        .card-btn { background-color: var(--btn-dark-bg); color: var(--text-white); text-align: center; padding: 16px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: background-color 0.2s; display: block; }
        .card-btn:hover { background-color: #400010; }




        /* --- LOGO GRID SECTION --- */
        .brands-section {
            padding: 80px 0;
            background-color: var(--bg-cream);
        }

        .section-header-center {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-burgundy);
            margin-bottom: 15px;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
        }

        .brand-item {
            background: #fff;
            height: 120px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }

        .brand-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .brand-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* --- TESTIMONIALS (Yorumlar) --- */
        .testimonials-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .review-card {
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 24px;
            padding: 40px;
            position: relative;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .review-quote-icon {
            font-size: 4rem;
            color: var(--bg-card-pink);
            position: absolute;
            top: 20px;
            right: 30px;
            font-family: serif;
            opacity: 0.5;
        }

        .stars {
            color: var(--icon-yellow);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .review-text {
            font-size: 1.1rem;
            color: var(--text-grey);
            line-height: 1.6;
            margin-bottom: 30px;
            flex-grow: 1;
            font-style: italic;
        }

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

        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-bg);
        }

        .reviewer-details h4 {
            color: var(--text-dark);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .reviewer-details span {
            font-size: 0.85rem;
            color: var(--text-grey);
        }

        /* --- STATS SECTION --- */
        .stats-section {
            background-color: var(--btn-dark-bg);
            color: var(--text-white);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .stat-box {
            text-align: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-bg); /* Mercan rengi ile kontrast */
            margin-bottom: 10px;
            display: block;
        }

        .stats-section .stat-label {
            font-size: 1.2rem;
            font-weight: 500;
            opacity: 0.9;
            color: #fff;
        }


           /* --- EVENTS FILTER & GRID --- */
        .events-section {
            padding: 80px 0 100px 0;
            background-color: #fff;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 60px;
        }

        .filter-btn {
            background: #fff;
            border: 2px solid #eee;
            padding: 12px 30px;
            border-radius: 50px;
            font-family: var(--main-font);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-grey);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            border-color: var(--primary-bg);
            color: var(--primary-bg);
        }

        .filter-btn.active {
            background-color: var(--btn-dark-bg);
            border-color: var(--btn-dark-bg);
            color: var(--text-white);
        }

        /* Events Grid */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .event-card {
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            border: 1px solid #eee;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .event-image {
            height: 280px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .event-card:hover .event-image img {
            transform: scale(1.05);
        }

        .event-category-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--primary-bg);
            color: var(--text-white);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .event-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .event-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .event-desc {
            font-size: 1rem;
            color: var(--text-grey);
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .event-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #f0f0f0;
            padding-top: 20px;
        }

        .event-date {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-burgundy);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .event-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.2s;
        }
        .event-link:hover { color: var(--primary-bg); }



         
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 0.95rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        .breadcrumb a { color: var(--text-white); text-decoration: none; }
        .breadcrumb span { opacity: 0.7; }

 

        /* --- DETAIL CONTENT --- */
        .detail-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .detail-wrapper {
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }

        /* Sol: İçerik */
        .detail-content {
            flex: 2;
        }

        .main-image {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: var(--shadow-soft);
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .content-text h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .content-text p {
            font-size: 1.1rem;
            color: var(--text-grey);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .content-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            height: 180px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .gallery-item:hover { transform: scale(1.03); }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sağ: Sidebar */
        .detail-sidebar {
            flex: 1;
            position: sticky;
            top: 120px; /* Header'ın altında kalması için */
        }

        .info-box {
            background-color: var(--bg-cream);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .info-header {
            border-bottom: 2px solid rgba(89, 0, 24, 0.1);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .info-header h3 {
            font-size: 1.5rem;
            color: var(--text-burgundy);
            font-weight: 800;
        }

        .info-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .info-icon {
            color: var(--primary-bg);
            font-size: 1.2rem;
            margin-top: 2px;
        }

        .info-data h4 {
            font-size: 0.95rem;
            color: var(--text-grey);
            font-weight: 500;
            margin-bottom: 3px;
        }

        .info-data span {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .services-tags {
            margin-top: 30px;
        }

        .services-tags h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background-color: #fff;
            color: var(--text-burgundy);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(89, 0, 24, 0.1);
        }

        .sidebar-btn {
            display: block;
            background-color: var(--btn-dark-bg);
            color: var(--text-white);
            text-align: center;
            padding: 18px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 30px;
            transition: background-color 0.2s;
        }
        .sidebar-btn:hover { background-color: #400010; }

        /* --- RELATED EVENTS --- */
        .related-section {
            padding: 0 0 100px 0;
            background-color: #fff;
        }
        .related-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            text-align: center;
            color: var(--text-dark);
        }
        


                /* --- DETAIL CONTENT --- */
        .detail-section { padding: 80px 0; background-color: #fff; }
        .detail-wrapper { display: flex; gap: 50px; align-items: flex-start; }

        /* SOL: İÇERİK */
        .detail-content { flex: 2; }

        .main-image { width: 100%; height: 500px; border-radius: 20px; overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow-soft); }
        .main-image img { width: 100%; height: 100%; object-fit: cover; }

        .content-text h2 { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
        .content-text h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-burgundy); margin: 30px 0 15px 0; }
        .content-text p { font-size: 1.1rem; color: var(--text-grey); line-height: 1.8; margin-bottom: 20px; }

        /* Özellik Listesi (Checkmarks) */
        .feature-list { list-style: none; margin-bottom: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
        .feature-list li {
            display: flex; align-items: center; gap: 10px; font-size: 1.05rem; color: var(--text-dark); font-weight: 500;
        }
        .feature-list li svg { color: var(--primary-bg); width: 24px; height: 24px; flex-shrink: 0; }

        /* Galeri */
        .content-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
        .gallery-item { height: 180px; border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform 0.3s; }
        .gallery-item:hover { transform: scale(1.03); }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; }

        /* SSS Accordion */
        .faq-section { margin-top: 50px; }
        .faq-item { border-bottom: 1px solid #eee; padding: 20px 0; }
        .faq-question {
            font-size: 1.1rem; font-weight: 700; color: var(--text-dark); cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
        }
        .faq-answer { display: none; margin-top: 15px; color: var(--text-grey); line-height: 1.6; }
        .faq-item.active .faq-answer { display: block; }
        .faq-item.active .faq-question { color: var(--primary-bg); }

        /* SAĞ: SIDEBAR */
        .detail-sidebar { flex: 1; position: sticky; top: 120px; }

        .info-box { background-color: var(--bg-cream); padding: 40px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.03); }
        .info-header { border-bottom: 2px solid rgba(89, 0, 24, 0.1); padding-bottom: 20px; margin-bottom: 20px; }
        .info-header h3 { font-size: 1.5rem; color: var(--text-burgundy); font-weight: 800; }

        .tech-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
        .tech-item { display: flex; align-items: center; gap: 15px; }
        .tech-icon {
            width: 40px; height: 40px; background: #fff; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--primary-bg); box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .tech-data h4 { font-size: 0.85rem; color: var(--text-grey); font-weight: 500; margin-bottom: 2px; }
        .tech-data span { font-size: 1rem; color: var(--text-dark); font-weight: 700; }

        .sidebar-btn {
            display: block; background-color: var(--btn-dark-bg); color: var(--text-white);
            text-align: center; padding: 18px; border-radius: 12px; text-decoration: none;
            font-weight: 700; margin-top: 30px; transition: background-color 0.2s;
        }
        .sidebar-btn:hover { background-color: #400010; }

        .other-services { margin-top: 40px; }
        .other-services h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; color: var(--text-dark); }
        .other-links { list-style: none; }
        .other-links li { margin-bottom: 10px; }
        .other-links a {
            display: block; padding: 12px 15px; background: #fff; border-radius: 8px;
            color: var(--text-grey); text-decoration: none; font-weight: 500;
            border: 1px solid #eee; transition: all 0.2s;
        }
        .other-links a:hover { border-color: var(--primary-bg); color: var(--primary-bg); transform: translateX(5px); }


    .cross-sell-box {
    background: linear-gradient(135deg, #fff 0%, #FFF5F6 100%);
    border: 2px dashed var(--primary-bg);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}
.cross-sell-box h4 {
    color: var(--text-burgundy);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.cross-sell-box p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
}
.cross-sell-link {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-bg);
    text-decoration: none;
}
.cross-sell-link:hover {
    text-decoration: underline;
}

     /* --- CONTACT CONTENT --- */
        .contact-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .contact-wrapper {
            display: flex;
            gap: 60px;
            align-items: flex-start;
        }

        /* Sol Taraf: Bilgiler */
        .contact-info {
            flex: 1;
            padding-right: 20px;
        }

        .info-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-burgundy);
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .info-desc {
            font-size: 1.1rem;
            color: var(--text-grey);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background-color: var(--bg-cream);
            padding: 30px;
            border-radius: 16px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: transform 0.3s;
        }
        .info-card:hover { transform: translateY(-5px); }

        .info-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            flex-shrink: 0;
        }

        .info-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .info-content p, .info-content a {
            font-size: 1rem;
            color: var(--text-grey);
            text-decoration: none;
            line-height: 1.5;
        }
        
        .info-content a:hover { color: var(--primary-bg); }

        /* Sağ Taraf: Form */
        .contact-form-wrapper {
            flex: 1.2;
            background-color: #fff;
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-soft);
            border: 1px solid #f0f0f0;
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-control {
            width: 100%;
            padding: 16px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-family: var(--main-font);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s, background-color 0.2s;
            background-color: #fafafa;
        }

        .form-control:focus {
            border-color: var(--primary-bg);
            background-color: #fff;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background-color: var(--btn-dark-bg);
            color: var(--text-white);
            border: none;
            padding: 18px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: #400010;
            transform: translateY(-2px);
        }

        /* --- MAP SECTION --- */
        .map-section {
            padding-bottom: 100px;
        }
        
        .map-frame {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            border: 10px solid #fff; /* Beyaz Çerçeve */
            height: 450px;
            width: 100%;
        }
        
        .map-frame iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }



        /* --- RESPONSIVE --- */
        @media (max-width: 1200px) {
            h1.hero-title { font-size: 4rem; }
            .inline-avatar { width: 60px; height: 60px; }
            .chat-card { width: 280px; left: -20px; }
            .section-title { font-size: 3rem; }
            .split-title { font-size: 2.8rem; }
            .split-content { padding: 60px 40px; }
            .split-row { min-height: 500px; }
            .happiness-title { font-size: 2.5rem; }
            .frame-wrapper { padding: 30px; }
            .frame-wrapper img { height: 400px; }
            .pkg-content h3 { font-size: 2.5rem; }
            .events-grid { grid-template-columns: repeat(2, 1fr); }

            /* Footer Tablet */
            .cta-card-inner { flex-direction: column; text-align: center; }
            .cta-form { width: 100%; }
        }
        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .header-cta { display: none; }
            .hamburger { display: flex; }
            .hero-wrapper { flex-direction: column; text-align: center; gap: 60px; padding-top: 20px; }
            .left-content { padding-right: 0; }
            .right-content { width: 100%; height: 500px; justify-content: center; }
            .chat-card { left: 50%; top: 50%; transform: translate(-120%, -50%) rotate(-3deg); }
            .man-image-container { right: 50%; transform: translateX(60%); width: 350px; }
            
            .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
            .slider-controls { display: none; }
            .service-card { min-width: 85vw; }
            .logos-container { gap: 30px; }
            .ref-logo { height: 35px; }

            .split-content, .split-image { min-width: 100%; flex: auto; }
            .split-row { height: auto; min-height: auto; }
            .split-image { height: 350px; }
            .split-content { padding: 60px 20px; align-items: center; text-align: center; }
            .reverse-layout { flex-direction: row; }

            .stats-bar { flex-direction: column; gap: 40px; padding: 40px 20px; text-align: center; }
            .stat-cta { align-items: center; text-align: center; }
            .frame-wrapper { padding: 15px; }
            .frame-wrapper img { height: 300px; }

            .package-card { flex-direction: column; }
            .pkg-image { height: 300px; }
            .pkg-content { padding: 30px 20px; }
            .pkg-content h3 { font-size: 2rem; }

            .detail-wrapper { flex-direction: column; }
            .detail-sidebar { width: 100%; position: relative; top: 0; }
            .main-image { height: 350px; }
            
            /* Footer Mobile */
            .footer-columns { flex-direction: column; gap: 40px; }
            .cta-card-outer { padding: 20px; }
            .cta-card-inner { padding: 30px 20px; }
            .cta-title { font-size: 2rem; }

            .stats-grid { flex-direction: column; align-items: center; }

        }
        @media (max-width: 768px) {
            h1.hero-title { font-size: 2.8rem; line-height: 1.1; }
            .inline-avatar { width: 45px; height: 45px; transform: translateY(-5px); }
            .container { padding-top: 48px; }
            .right-content { height: 400px; overflow: visible; }
            .chat-card { position: relative; left: auto; top: auto; transform: none; margin-bottom: -100px; z-index: 1; }
            .man-image-container { position: relative; right: auto; bottom: auto; transform: none; margin-top: -50px; width: 280px; z-index: 2; margin-left: auto; margin-right: auto; }
            .review-bubble { left: 50%; transform: translateX(-50%); bottom: -40px; width: max-content; }
            .mobile-nav-link { font-size: 2rem; }
            .section-title { font-size: 2.2rem; }
            .references-title { font-size: 1.5rem; }
            .split-title { font-size: 2.2rem; }
            .split-desc { font-size: 1rem; }
            .happiness-title { font-size: 2rem; }
            .stat-number { font-size: 3rem; }
            .hero-section{ padding-top: 0;}
            .brands-grid { grid-template-columns: repeat(2, 1fr); }
            .events-grid { grid-template-columns: 1fr; }
            .content-gallery { grid-template-columns: repeat(2, 1fr); }
            .form-row { flex-direction: column; gap: 15px; }
            .info-title { font-size: 2rem; }
            .page-title { font-size: 2.5rem; }
            .hero-section {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            

        }

         @media (max-width: 560px) {
            .container{
                overflow: hidden;
            }
            .events-section, .services-grid-section, .detail-section {
                padding-top: 0;
                padding-bottom: 24px;
            }
            .related-section{
                padding-bottom: 24px;
            }
            .services-section, .packages-section, .testimonials-section{
                padding: 24px 0;
            }
            .section-header {
                margin-bottom: 0;
            }
            .slider-container {
                gap:12px
            }
            .filter-tabs{
                justify-content: flex-start;
                flex-wrap: nowrap;
                overflow: scroll;
                margin-bottom: 24px;
            }
            .filter-btn{
                flex-shrink: 0;
            }
            .event-image{
                height: 200px;
            }
         }
