/* ========================================================================
   BUSEM BEAUTY STUDIO - RESPONSIVE CSS
   Breakpoints: 1024px (Tablet) | 768px (Mobile) | 480px (Small Mobile)
   ======================================================================== */

/* ========== GLOBAL ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

/* ========== MOBILE MENU TOGGLE (Hamburger) ========== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #c9a84c;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.mobile-menu-toggle span:nth-child(1) {
    margin-bottom: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
    margin-bottom: 6px;
}

.mobile-menu-toggle span:nth-child(3) {
    margin-bottom: 0;
}

/* Hamburger to X transform */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 300px;
    height: 100%;
    background: #111;
    z-index: 1050;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 0 40px;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), visibility 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 4px 0 24px rgba(0,0,0,0.5);
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

/* Overlay arkası */
.mobile-menu-backdrop {
    display: none;
}

/* Mobile menu logo */
.mobile-menu-logo {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    text-align: center;
}

.mobile-menu-logo img {
    height: 44px;
    width: auto;
}

/* Menu list */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu ul li a {
    display: block;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: #c9a84c;
}

/* Hizmetlerimiz toggle header — normal item ile aynı stil */
.mobile-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.mobile-section-header:hover,
.mobile-section-header.open {
    color: #c9a84c;
}

.mobile-section-header .mobile-arrow {
    font-size: 20px;
    color: #c9a84c;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.mobile-section-header.open .mobile-arrow {
    transform: rotate(90deg);
}

/* Sub items — kapalı başlar */
.mobile-sub {
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.mobile-sub a {
    padding: 13px 24px 13px 36px !important;
    font-size: 13px !important;
    color: #aaa !important;
}

.mobile-sub a:hover {
    color: #c9a84c !important;
}

/* CTA button */
.mobile-menu .mobile-cta {
    display: block;
    width: calc(100% - 48px);
    margin: 32px 24px 0;
    padding: 16px 0;
    background: #c9a84c;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    text-align: center;
    border: none;
    transition: background 0.3s ease;
}

.mobile-menu .mobile-cta:hover {
    background: #b8953e;
}


/* =====================================================================
   TABLET BREAKPOINT (max-width: 1024px)
   ===================================================================== */
@media (max-width: 1024px) {

    /* --- Header --- */
    .header-top {
        padding: 16px 24px;
    }

    .nav-menu > li > a {
        padding: 14px 16px;
        font-size: 14px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 11px;
        margin-left: 12px;
    }

    /* --- Slider --- */
    .slide-title {
        font-size: 64px;
    }

    .slide-subtitle {
        font-size: 14px;
        letter-spacing: 5px;
    }

    .slide-btn {
        padding: 14px 36px;
        font-size: 12px;
    }

    /* --- About Section --- */
    .about-container,
    .about-alt-container {
        gap: 50px;
    }

    .about-image img {
        width: 100%;
        min-height: 380px;
        max-height: 380px;
    }

    .about-title,
    .about-alt-title {
        font-size: 40px;
    }

    /* --- Services Grid --- */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 38px;
    }

    /* --- Stats --- */
    .stats-container {
        gap: 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-item {
        padding: 30px 16px;
    }

    /* --- Testimonials --- */
    .testimonial-card {
        min-width: 100%;
    }

    .testimonials-title {
        font-size: 38px;
    }

    /* --- FAQ --- */
    .faq-section {
        padding: 80px 30px;
    }

    .faq-title {
        font-size: 38px;
    }

    /* --- Instagram Grid --- */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* --- CTA Section --- */
    .cta-title {
        font-size: 38px;
    }

    /* --- Footer --- */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* --- Before/After --- */
    .ba-grid {
        gap: 24px;
    }

    .ba-title {
        font-size: 38px;
    }

    /* --- SEO Section --- */
    .seo-container {
        gap: 40px;
    }

    /* --- Why Section --- */
    .why-container {
        gap: 50px;
    }

    .why-title {
        font-size: 36px;
    }

    .why-image img {
        height: 380px;
    }

    /* --- About Alt --- */
    .about-alt-image-frame img {
        height: 350px;
    }

    /* ========== HAKKIMIZDA PAGE (Tablet) ========== */

    /* Page Hero */
    .page-hero {
        height: 300px;
        margin-top: 0;
    }

    .page-hero-title {
        font-size: 48px;
    }

    /* About Detail */
    .about-detail {
        padding: 80px 30px;
    }

    .about-detail-container {
        gap: 50px;
    }

    .about-detail-title {
        font-size: 40px;
    }

    .about-detail-image img {
        height: 380px;
    }

    /* MV Section */
    .mv-container {
        gap: 24px;
    }

    .mv-section {
        padding: 80px 30px;
    }

    /* Why Detail */
    .why-detail {
        padding: 80px 30px;
    }

    .why-detail-container {
        gap: 50px;
    }

    .why-detail-image img {
        height: 400px;
    }


    /* ========== BLOG PAGE (Tablet) ========== */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sidebar {
        flex: 0 0 240px;
    }

    .blog-container,
    .blog-post-container {
        gap: 30px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-hero-img {
        height: 320px;
    }


    /* ========== HIZMET PAGE (Tablet) ========== */
    .hizmet-detail {
        padding: 80px 30px;
    }

    .hizmet-detail-container {
        gap: 40px;
    }

    .hizmet-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .hizmet-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .hizmet-sidebar {
        flex: 0 0 260px;
    }

    .hizmet-hero-img {
        height: 320px;
    }

    .hizmet-intro-title {
        font-size: 34px;
    }

    .hizmet-cta-buttons {
        flex-wrap: wrap;
    }


    /* ========== CONTACT PAGE (Tablet) ========== */
    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main {
        padding: 80px 30px;
    }

    .contact-main-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map iframe {
        width: 100%;
        height: 400px;
    }


    /* ========== MEMNUNIYET PAGE (Tablet) ========== */
    .memn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .memn-reviews-title {
        font-size: 38px;
    }

    .memn-stats-grid {
        gap: 40px;
    }

    .memn-stats-title {
        font-size: 30px;
    }

    .memn-stat-number {
        font-size: 40px;
    }
}


/* =====================================================================
   MOBILE BREAKPOINT (max-width: 768px)
   ===================================================================== */
@media (max-width: 768px) {

    /* --- HEADER / NAV --- */
    .nav-desktop {
        display: none !important;
    }

    .header-bottom {
        display: none;
    }

    .header {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu {
        display: flex;
    }

    .header-top {
        padding: 12px 20px;
        justify-content: center;
    }

    .logo-img {
        height: 55px;
    }

    /* --- SLIDER --- */
    .hero-slider {
        height: calc(100dvh - 79px);
    }

    .slide-content {
        width: 90%;
        padding: 0 16px;
    }

    .slide-title {
        font-size: 50px;
        margin-bottom: 24px;
    }

    .slide-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .slide-btn {
        padding: 12px 30px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .slider-dots {
        bottom: 24px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* --- ABOUT SECTION --- */
    .about-section,
    .about-reverse {
        padding: 60px 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-reverse .about-container {
        flex-direction: column;
    }

    .about-reverse .about-image {
        order: -1;
    }

    .about-image {
        flex: none;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        min-height: auto;
        max-height: none;
        height: auto;
    }

    .about-image-border {
        display: none;
    }

    .about-border-reverse {
        display: none;
    }

    .about-title {
        font-size: 32px;
    }

    .about-subtitle {
        font-size: 12px;
    }

    .about-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .about-features {
        flex-direction: column;
        gap: 24px;
    }

    /* --- ABOUT ALT SECTION --- */
    .about-alt-section {
        padding: 60px 20px;
    }

    .about-alt-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-alt-image {
        flex: none;
        width: 100%;
    }

    .about-alt-image-frame img {
        height: 280px;
    }

    .about-alt-title {
        font-size: 36px;
    }

    .about-alt-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* --- SERVICES --- */
    .services-section {
        padding: 60px 20px;
    }

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

    .services-title {
        font-size: 32px;
    }

    .service-card {
        padding: 40px 24px 32px;
    }

    .service-img {
        width: 150px;
        height: 150px;
    }

    /* --- WHY SECTION --- */
    .why-section {
        padding: 60px 20px;
    }

    .why-container {
        flex-direction: column;
        gap: 30px;
    }

    .why-image {
        flex: none;
        width: 100%;
    }

    .why-image img {
        width: 100%;
        height: 300px;
    }

    .why-title {
        font-size: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* --- STATS --- */
    .stats-section {
        padding: 60px 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-plus {
        font-size: 24px;
    }

    .stat-item {
        padding: 24px 12px;
    }

    .stat-item i {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .stat-item p {
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* --- TESTIMONIALS --- */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 0 10px;
    }

    .testimonial-text {
        font-size: 14px;
        min-height: auto;
    }

    .testimonials-controls {
        margin-top: 30px;
        gap: 16px;
    }

    .test-prev,
    .test-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* --- FAQ --- */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* --- INSTAGRAM --- */
    .instagram-section {
        padding: 60px 0 0;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-title {
        font-size: 28px;
    }

    /* --- BEFORE/AFTER --- */
    .ba-section {
        padding: 60px 20px;
    }

    .ba-title {
        font-size: 32px;
    }

    .ba-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ba-card-img img {
        height: 300px;
    }

    /* --- CTA SECTION --- */
    .cta-section {
        padding: 60px 20px;
        background-image: url('../images/cta-arka-plan-mobil.avif') !important;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 36px;
        font-size: 12px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }

    /* --- SEO SECTION --- */
    .seo-section {
        padding: 60px 20px;
    }

    .seo-container {
        flex-direction: column;
        gap: 24px;
    }

    .seo-left {
        flex-direction: row;
        align-items: center;
    }

    .seo-line {
        width: 40px;
        height: 2px;
    }

    .seo-title {
        font-size: 24px;
    }

    /* --- FOOTER --- */
    .footer {
        padding: 50px 20px 30px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-col.footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-col:nth-child(2) {
        display: block;
        grid-column: 1 / -1;
    }

    .footer-col:nth-child(3) {
        text-align: left;
        order: unset;
    }

    .footer-col:nth-child(4) {
        text-align: left;
        order: unset;
    }

    .footer-contact li {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 14px;
        font-size: 12px;
    }

    .footer-contact li i {
        font-size: 13px;
        margin-top: 2px;
        min-width: 16px;
    }

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

    .footer-logo img {
        height: 55px;
        margin-bottom: 16px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-title {
        font-size: 16px;
    }

    /* --- FOOTER BOTTOM --- */
    .footer-bottom {
        padding: 20px 20px 80px;
        text-align: center;
    }

    .footer-credit {
        font-size: 12px;
    }

    /* --- WHATSAPP & BACK TO TOP --- */
    .whatsapp-btn {
        bottom: 70px;
        left: auto;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .back-to-top {
        display: none !important;
    }

    /* --- SCROLL ANIMATIONS --- */
    .fade-in {
        transform: translateY(24px);
    }


    /* ========== PAGE HERO (hakkimizda.css) ========== */
    .page-hero {
        height: 250px;
        margin-top: 0;
    }

    .page-hero-title {
        font-size: 36px;
    }

    .page-breadcrumb {
        font-size: 12px;
    }

    /* --- About Detail --- */
    .about-detail {
        padding: 60px 20px;
    }

    .about-detail-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-detail-image {
        flex: none;
        width: 100%;
    }

    .about-detail-image img {
        height: auto;
        width: 100%;
    }

    .about-detail-border {
        display: none;
    }

    .about-detail-title {
        font-size: 32px;
    }

    .about-detail-subtitle {
        font-size: 12px;
    }

    .about-detail-text {
        font-size: 14px;
    }

    /* --- MV (Mission/Vision) --- */
    .mv-section {
        padding: 60px 20px;
    }

    .mv-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mv-card {
        padding: 36px 24px;
    }

    /* --- Why Detail --- */
    .why-detail {
        padding: 60px 20px;
    }

    .why-detail-container {
        flex-direction: column;
        gap: 30px;
    }

    .why-detail-content {
        order: 1;
    }

    .why-detail-image {
        flex: none;
        width: 100%;
        order: 2;
    }

    .why-detail-image img {
        height: auto;
        width: 100%;
    }

    .why-detail-title {
        font-size: 28px;
    }

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


    /* ========== BLOG PAGE (Mobile) ========== */
    .blog-section {
        padding: 60px 20px;
    }

    .blog-container {
        flex-direction: column;
        gap: 30px;
    }

    .blog-sidebar {
        flex: none;
        width: 100%;
        position: static;
        order: -1;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-img {
        height: 200px;
    }

    .blog-card-content h3 {
        font-size: 16px;
    }

    /* --- Blog Post --- */
    .blog-post-section {
        padding: 60px 20px;
    }

    .blog-post-container {
        flex-direction: column;
        gap: 30px;
    }

    .blog-post-main {
        width: 100%;
    }

    .blog-post-title {
        font-size: 28px;
    }

    .blog-post-hero-img {
        height: 240px;
    }

    .blog-post-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .blog-toc,
    .blog-post-toc {
        padding: 24px 20px;
    }

    .blog-post-content h2 {
        font-size: 22px;
    }

    .blog-post-cta {
        padding: 36px 24px;
    }

    .blog-post-cta h3 {
        font-size: 24px;
    }


    /* ========== HIZMET PAGE (Mobile) ========== */
    .hizmet-detail {
        padding: 60px 20px;
    }

    .hizmet-detail-container {
        flex-direction: column;
        gap: 30px;
    }

    .hizmet-main {
        width: 100%;
    }

    .hizmet-sidebar {
        flex: none;
        width: 100%;
        position: static;
        order: 2;
    }

    .hizmet-hero-img {
        height: 240px;
    }

    .hizmet-intro-title {
        font-size: 28px;
    }

    .hizmet-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hizmet-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hizmet-process {
        padding: 36px 20px;
    }

    .hizmet-process-title {
        font-size: 24px;
    }

    .hizmet-content h2 {
        font-size: 22px;
    }

    .hizmet-faq-title {
        font-size: 24px;
    }

    .hizmet-faq-question span {
        font-size: 14px;
    }

    .hizmet-cta {
        padding: 36px 20px;
    }

    .hizmet-cta h3 {
        font-size: 24px;
    }

    .hizmet-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hizmet-cta-btn,
    .hizmet-cta-btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }


    /* ========== CONTACT PAGE (Mobile) ========== */
    .contact-info-section {
        padding: 60px 20px;
    }

    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-main {
        padding: 60px 20px;
    }

    .contact-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        width: 100%;
        text-align: center;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        width: 100%;
        height: 300px;
    }

    /* Social Section */
    .social-section {
        padding: 40px 20px;
    }

    .social-title {
        font-size: 22px;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .social-link {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }


    /* ========== MEMNUNIYET PAGE (Mobile) ========== */
    .memn-stats {
        padding: 40px 20px;
    }

    .memn-stats-title {
        font-size: 26px;
    }

    .memn-stats-grid {
        flex-direction: column;
        gap: 24px;
    }

    .memn-stat-number {
        font-size: 36px;
    }

    .memn-reviews {
        padding: 60px 20px;
    }

    .memn-reviews-title {
        font-size: 30px;
    }

    .memn-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .memn-filter-btn {
        flex-shrink: 0;
        padding: 8px 18px;
        font-size: 12px;
    }

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

    .memn-card {
        padding: 28px 20px;
    }

    .memn-card-text {
        font-size: 14px;
        min-height: auto;
    }

    /* Google CTA */
    .memn-google {
        padding: 40px 20px;
    }

    .memn-google-title {
        font-size: 24px;
    }

    .memn-google-icon {
        font-size: 36px;
    }

    .memn-google-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}


/* =====================================================================
   VERY SMALL MOBILE BREAKPOINT (max-width: 480px)
   ===================================================================== */
@media (max-width: 480px) {

    /* --- General --- */
    .about-section,
    .about-reverse,
    .about-alt-section,
    .services-section,
    .why-section,
    .testimonials-section,
    .faq-section,
    .ba-section,
    .cta-section,
    .seo-section,
    .about-detail,
    .mv-section,
    .why-detail,
    .blog-section,
    .blog-post-section,
    .hizmet-detail,
    .contact-info-section,
    .contact-main,
    .memn-reviews,
    .memn-stats,
    .memn-google,
    .social-section,
    .stats-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer {
        padding: 40px 16px 30px;
    }

    .footer-bottom {
        padding: 14px 16px;
    }

    /* --- Header --- */
    .header-top {
        padding: 10px 16px;
    }

    .logo-img {
        height: 48px;
    }

    /* --- Slider --- */
    .hero-slider {
        height: calc(100dvh - 68px);
    }

    .slide-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .slide-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .slide-btn {
        padding: 10px 24px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .slider-dots {
        bottom: 16px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* --- Titles --- */
    .about-title,
    .about-detail-title {
        font-size: 28px;
    }

    .about-alt-title {
        font-size: 30px;
    }

    .services-title,
    .testimonials-title,
    .faq-title,
    .ba-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 26px;
    }

    .why-title {
        font-size: 26px;
    }

    .page-hero-title {
        font-size: 30px;
    }

    .page-hero {
        height: 200px;
    }

    /* --- Stats --- */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-number {
        font-size: 32px;
    }

    /* --- Service Cards --- */
    .service-card {
        padding: 30px 16px 24px;
    }

    .service-img {
        width: 120px;
        height: 120px;
    }

    .service-name {
        font-size: 20px;
    }

    .service-desc {
        font-size: 13px;
    }

    /* --- Testimonials --- */
    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    /* --- FAQ --- */
    .faq-question span {
        font-size: 13px;
    }

    .faq-question i {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    /* --- Instagram --- */
    .instagram-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        scrollbar-width: none;
    }

    .instagram-grid::-webkit-scrollbar {
        display: none;
    }

    .insta-item {
        flex: 0 0 75vw;
        aspect-ratio: 1;
        scroll-snap-align: center;
    }

    .instagram-title {
        font-size: 24px;
    }

    /* --- CTA --- */
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 12px 28px;
        font-size: 11px;
        max-width: 100%;
    }

    .cta-text {
        font-size: 13px;
    }

    /* --- Footer --- */
    .footer-container {
        gap: 28px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-contact li {
        font-size: 13px;
    }

    /* --- SEO --- */
    .seo-title {
        font-size: 22px;
    }

    .seo-section p {
        font-size: 14px;
    }

    /* --- BA Cards --- */
    .ba-card-img img {
        height: 240px;
    }

    /* --- Blog --- */
    .blog-card-img {
        height: 180px;
    }

    .blog-card-content {
        padding: 16px;
    }

    .blog-card-content h3 {
        font-size: 15px;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .blog-post-hero-img {
        height: 200px;
    }

    .blog-post-content h2 {
        font-size: 20px;
    }

    .blog-post-content p,
    .blog-post-content ul li {
        font-size: 14px;
    }

    .blog-post-cta h3 {
        font-size: 22px;
    }

    .blog-post-cta p {
        font-size: 13px;
    }

    /* --- Hizmet --- */
    .hizmet-steps {
        grid-template-columns: 1fr;
    }

    .hizmet-hero-img {
        height: 200px;
    }

    .hizmet-intro-title {
        font-size: 24px;
    }

    .hizmet-process-title {
        font-size: 22px;
    }

    .hizmet-content h2 {
        font-size: 20px;
    }

    .hizmet-faq-title {
        font-size: 22px;
    }

    .hizmet-faq-question span {
        font-size: 13px;
    }

    .hizmet-cta h3 {
        font-size: 22px;
    }

    /* --- Contact --- */
    .contact-card {
        padding: 24px 16px;
    }

    .contact-card h4 {
        font-size: 16px;
    }

    .contact-card p {
        font-size: 13px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 13px;
    }

    .form-submit {
        padding: 14px 32px;
        font-size: 12px;
    }

    .social-title {
        font-size: 20px;
    }

    /* --- Memnuniyet --- */
    .memn-stats-title {
        font-size: 22px;
    }

    .memn-stat-number {
        font-size: 30px;
    }

    .memn-reviews-title {
        font-size: 26px;
    }

    .memn-card {
        padding: 24px 16px;
    }

    .memn-card-text {
        font-size: 13px;
    }

    .memn-google-title {
        font-size: 22px;
    }

    .memn-google-text {
        font-size: 13px;
    }

    /* --- Mobile Menu --- */
    .mobile-menu ul li a {
        font-size: 16px;
        padding: 14px 20px;
    }

    .mobile-section-header {
        font-size: 16px;
        padding: 14px 20px;
    }

    .mobile-sub a {
        padding: 12px 20px 12px 32px !important;
    }

    /* --- WhatsApp & Back to top --- */
    .whatsapp-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
        bottom: 70px;
        left: auto;
        right: 16px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        font-size: 14px;
        bottom: 16px;
        right: 16px;
    }

    /* --- About Detail MV Cards --- */
    .mv-card {
        padding: 28px 16px;
    }

    .mv-card h3 {
        font-size: 20px;
    }

    .mv-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    /* --- Why Detail --- */
    .why-detail-title {
        font-size: 24px;
    }
}


/* =====================================================================
   PREVENT HORIZONTAL SCROLL ON ALL SIZES
   ===================================================================== */
html,
body {
    overflow-x: hidden;
}

/* Ensure all containers are bounded */
@media (max-width: 1024px) {
    .about-container,
    .about-alt-container,
    .about-detail-container,
    .why-container,
    .why-detail-container,
    .services-grid,
    .stats-container,
    .testimonials-container,
    .faq-container,
    .seo-container,
    .footer-container,
    .ba-grid,
    .ba-compare,
    .cta-content,
    .mv-container,
    .blog-container,
    .blog-post-container,
    .hizmet-detail-container,
    .contact-info-container,
    .contact-main-container,
    .memn-reviews-container,
    .memn-stats-container,
    .memn-google-container,
    .social-container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Mobile: fade-in fallback — JS geç tetiklenirse içerik görünür kalır */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
