/**
 * Continental Estate – Responsive (baştan yazıldı)
 * Breakpoints: 1280 (xl), 1024 (lg), 768 (md), 480 (sm), 360 (xs)
 * style.css sonrasında yüklenir; aynı seçiciler burada override edilir.
 */

/* ========== XL: 1280px ve altı ========== */
@media (max-width: 1280px) {
    .container-fluid,
    .footer-container,
    .contact-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .content-intro {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .about-inner {
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ========== LG: 1024px ve altı (tablet / küçük laptop) ========== */
@media (max-width: 1024px) {
    /* Intro */
    .intro-logo {
        height: 70px;
        max-height: 70px;
        max-width: 180px;
    }
    .loading-line {
        width: 180px;
    }

    /* Navbar */
    .navbar {
        padding: 1.5rem 2rem;
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
    }
    .navbar-left {
        gap: 1.5rem;
    }
    .logo-image {
        height: 65px;
        max-height: 65px;
        max-width: 160px;
    }
    .navbar-search-box {
        left: calc(65px + 1.5rem);
        width: 280px;
        height: 42px;
        padding: 0.6rem 1.25rem;
    }
    .navbar-search-box.active {
        width: calc(100vw - 4rem - 65px - 120px - 1.5rem);
        max-width: calc(100% - 280px);
    }
    .navbar-search-input,
    .navbar-search-cursor {
        font-size: 1rem;
    }
    .navbar-search-cursor {
        left: 1.25rem;
    }
    .navbar-menu a {
        font-size: 0.8rem;
        padding: 0.65rem 1.5rem;
        letter-spacing: 2px;
    }
    .language-switcher {
        width: 44px;
        height: 44px;
    }
    .world-icon {
        width: 20px;
        height: 20px;
    }
    .navbar-menu-button {
        width: 44px;
        height: 44px;
    }
    .nav-icon {
        width: 18px;
        height: 14px;
    }

    /* Hero – tablette tam kaplama */
    .hero {
        min-height: 100dvh;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }
    .hero-background,
    .hero-video-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
    .hero-video-inner {
        position: absolute;
        left: 50%;
        top: 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%) scale(3);
        transform-origin: center center;
    }
    .hero-video,
    .hero-video-native,
    .hero-video-yt,
    .hero-video-fallback {
        position: absolute;
        inset: 0;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
    .hero-scroll-hint {
        bottom: 1.75rem;
        bottom: calc(1.75rem + env(safe-area-inset-bottom));
    }
    .hero-scroll-hint-line {
        height: 42px;
    }
    .hero-form-box {
        left: 2rem;
        right: auto;
        max-width: 360px;
    }
    .video-touch-button {
        width: 90px;
        height: 90px;
        font-size: 0.8rem;
        right: max(1.5rem, env(safe-area-inset-right));
        bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    /* Overlays */
    .nav-overlay {
        top: calc(1.5rem + 44px + 1rem);
        right: 2rem;
        right: max(2rem, env(safe-area-inset-right));
    }
    .nav-overlay.active {
        width: 320px;
        max-width: 85vw;
        max-height: calc(100dvh - 44px - 3rem - 2rem);
    }
    .language-overlay {
        top: calc(1.5rem + 44px + 1rem);
        right: 2rem;
        right: max(2rem, env(safe-area-inset-right));
    }
    .language-overlay.active {
        width: 320px;
        max-width: 85vw;
        max-height: calc(100dvh - 44px - 3rem - 2rem);
    }
    .nav-link,
    .language-option {
        font-size: clamp(1rem, 3.5vw, 1.35rem);
    }

    /* Content */
    .content-section {
        padding: 6rem 0 7rem;
    }
    .content-intro {
        padding-top: 6rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .content-intro-main {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    .content-intro-script {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    .content-intro-description {
        font-size: 1.05rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Project galleries */
    .project-galleries-row {
        flex-direction: column;
        gap: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .project-gallery {
        min-width: 100%;
        max-width: 100%;
    }
    .project-gallery-title {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    .project-gallery-slider-wrapper {
        min-height: 280px;
    }
    .project-gallery-slide {
        min-width: 280px;
    }

    /* About */
    .about-section {
        padding: 4rem 0 10rem;
    }
    .about-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .about-layout {
        gap: 2.5rem;
    }
    .about-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }
    .about-body,
    .about-timeline,
    .about-card-content {
        font-size: 0.95rem;
    }
    .about-vision-mission-container {
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    .about-vision-mission-item {
        min-width: 280px;
        padding: 2rem;
    }
    .about-vision-mission-title {
        font-size: 1.6rem;
    }

    /* Services */
    .services-section {
        padding: 5rem 0 6rem;
    }
    .services-section .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .services-header {
        margin-bottom: 4rem;
    }
    .services-title {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
    }
    .services-carousel-wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-top: 3rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .services-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    .service-card {
        width: 340px;
        min-width: 340px;
        min-height: 360px;
        padding: 2.25rem 1.75rem;
    }
    .service-card-title {
        font-size: 1.25rem;
    }
    .service-card-description {
        font-size: 0.95rem;
    }
    .branch-cards-container {
        height: 60vh;
        min-height: 480px;
        gap: 1rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .branch-card-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }

    /* FAQ */
    .faq-section {
        padding: 6rem 0;
    }
    .faq-section .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .faq-header {
        margin-bottom: 4rem;
    }
    .faq-title {
        font-size: 2.5rem;
    }
    .faq-content-head {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-item {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
    }
    .faq-item-number {
        font-size: 2rem;
    }
    .faq-item-question {
        font-size: 1.2rem;
    }
    .faq-item-answer {
        font-size: 0.95rem;
    }

    /* Press */
    .press-news-section {
        padding: 6rem 0;
    }
    .press-news-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .press-news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .press-news-title {
        font-size: 2.5rem;
    }

    /* House */
    .house-section {
        padding: 2rem 0;
    }
    .house-container {
        max-width: 95%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .house-image-wrapper {
        width: 60%;
    }
    .house-category-name {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }

    /* Footer */
    .footer-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .footer-content {
        gap: 4rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }
    .footer-logo-img {
        height: 85px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ========== MD: 768px ve altı (tablet dikey / büyük telefon) ========== */
@media (max-width: 768px) {
    /* Intro */
    .intro-logo {
        height: 60px;
        max-height: 60px;
        max-width: 150px;
        margin-bottom: 28px;
    }
    .loading-line {
        width: 150px;
        margin-bottom: 28px;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 1.5rem;
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    .navbar-left {
        gap: 1rem;
    }
    .logo-image {
        height: 56px;
        max-height: 56px;
        max-width: 140px;
    }
    .navbar-search-box {
        left: calc(56px + 1rem);
        width: calc(100vw - 3rem - 56px - 50px - 1rem);
        max-width: calc(100% - 110px);
        height: 40px;
        padding: 0.55rem 1rem;
    }
    .navbar-search-box.active {
        width: calc(100vw - 3rem - 56px - 50px - 1rem);
        max-width: calc(100% - 110px);
    }
    .navbar-search-input,
    .navbar-search-cursor {
        font-size: 0.9rem;
    }
    .navbar-search-cursor {
        left: 1rem;
    }
    .navbar-menu {
        display: none;
    }
    .navbar-menu-button {
        width: 44px;
        height: 44px;
    }
    .nav-icon {
        width: 18px;
        height: 14px;
        gap: 4px;
    }
    .navbar-right {
        gap: 0.75rem;
    }

    /* Hero – mobilde tam kaplama */
    .hero {
        min-height: -webkit-fill-available;
        min-height: 100dvh;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }
    .hero-background,
    .hero-video-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
    .hero-video-inner {
        position: absolute;
        left: 50%;
        top: 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%) scale(4);
        transform-origin: center center;
    }
    .hero-video,
    .hero-video-native,
    .hero-video-yt,
    .hero-video-fallback {
        position: absolute;
        inset: 0;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
    .hero .hero-corner {
        width: 36px;
        height: 36px;
    }
    .hero .hero-corner-tl { top: 12px; left: 12px; }
    .hero .hero-corner-tr { top: 12px; right: 12px; }
    .hero .hero-corner-bl { bottom: 12px; left: 12px; }
    .hero .hero-corner-br { bottom: 12px; right: 12px; }
    .hero-scroll-hint {
        bottom: 1.25rem;
        bottom: calc(1.25rem + env(safe-area-inset-bottom));
    }
    .hero-scroll-hint-line {
        height: 36px;
    }
    .video-touch-button {
        width: 80px;
        height: 80px;
        font-size: 0.75rem;
        right: max(1rem, env(safe-area-inset-right));
        bottom: max(1rem, env(safe-area-inset-bottom));
    }

    /* Overlays */
    .nav-overlay {
        top: calc(1rem + 44px + 0.75rem);
        right: 1.5rem;
        right: max(1.5rem, env(safe-area-inset-right));
    }
    .nav-overlay.active {
        width: 300px;
        max-width: 88vw;
        max-height: calc(100dvh - 44px - 2.5rem - 1.5rem);
        min-height: 220px;
    }
    .nav-overlay-content {
        padding: 1.75rem 1.5rem;
    }
    .nav-link {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    .language-overlay {
        top: calc(1rem + 44px + 0.75rem);
        right: 1.5rem;
        right: max(1.5rem, env(safe-area-inset-right));
    }
    .language-overlay.active {
        width: 300px;
        max-width: 88vw;
        max-height: calc(100dvh - 44px - 2.5rem - 1.5rem);
        min-height: 180px;
    }
    .hero-form-box {
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
        padding: 1.25rem;
    }
    .language-overlay-content {
        padding: 1.75rem 1.5rem;
    }
    .language-option {
        padding: 0.5rem 0;
        font-size: clamp(1rem, 4vw, 1.25rem);
    }

    /* Content */
    .content-section {
        padding: 4rem 0 6rem;
    }
    .content-intro {
        padding: 3rem 1.5rem 1.5rem;
    }
    .content-intro-main {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        letter-spacing: 0;
        margin-bottom: 1.25rem;
    }
    .content-intro-script {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 0.5rem;
    }
    .content-intro-description {
        font-size: 1rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Project galleries */
    .project-galleries-row {
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1.5rem;
    }
    .project-gallery-title {
        font-size: clamp(1.15rem, 4vw, 1.5rem);
    }
    .project-gallery-slider-wrapper {
        min-height: 240px;
    }
    .project-gallery-slide {
        min-width: 260px;
    }
    .project-gallery-prev,
    .project-gallery-next {
        width: 36px;
        height: 36px;
    }

    /* About */
    .about-section {
        padding: 3rem 0 7rem;
    }
    .about-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-header {
        margin-bottom: 1.25rem;
    }
    .about-title {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }
    .about-body,
    .about-timeline,
    .about-card-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    .about-vision-mission-container {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 1rem;
    }
    .about-vision-mission-item {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    .about-vision-mission-title {
        font-size: 1.4rem;
    }
    .about-vision-mission-content {
        font-size: 0.9rem;
    }

    /* Services */
    .services-section {
        padding: 3rem 0 4rem;
    }
    .services-section .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .services-header {
        margin-bottom: 2.5rem;
    }
    .services-title {
        font-size: clamp(1.75rem, 4.5vw, 2.25rem);
        margin-bottom: 0.75rem;
    }
    .services-description {
        font-size: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .services-carousel-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 2.5rem;
    }
    .services-carousel {
        gap: 1.25rem;
    }
    .service-card {
        width: min(calc(100vw - 2.5rem), 320px);
        min-width: 280px;
        min-height: 340px;
        padding: 1.75rem 1.25rem;
    }
    .service-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    .service-card-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    .service-card-description {
        font-size: 0.9rem;
    }
    .branch-cards-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        gap: 1.25rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .branch-card {
        flex: 1;
        width: 100%;
        height: 45vh;
        min-height: 360px;
    }
    .branch-card:hover {
        flex: 1;
        transform: scale(1.02);
    }
    .branch-card-title {
        font-size: clamp(1.5rem, 4vw, 1.9rem);
        letter-spacing: 2px;
    }
    .branch-card-content {
        font-size: 0.85rem;
    }
    .branch-card-overlay {
        padding: 1.5rem 1.25rem;
    }

    /* FAQ */
    .faq-section {
        padding: 4rem 0 5rem;
    }
    .faq-section .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .faq-header {
        margin-bottom: 2.5rem;
    }
    .faq-title {
        font-size: clamp(1.75rem, 4.5vw, 2rem);
    }
    .faq-item {
        grid-template-columns: 50px 1fr;
        gap: 1.25rem;
        padding: 1.25rem 0;
    }
    .faq-item-number {
        font-size: 1.75rem;
    }
    .faq-item-question {
        font-size: 1.1rem;
    }
    .faq-item-answer {
        font-size: 0.9rem;
    }
    .faq-item-icon {
        width: 18px;
        height: 18px;
    }
    .faq-item-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Press */
    .press-news-section {
        padding: 4rem 0;
    }
    .press-news-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .press-news-header {
        margin-bottom: 2.5rem;
    }
    .press-news-title {
        font-size: clamp(1.75rem, 4.5vw, 2rem);
    }
    .press-news-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    .press-card {
        padding: 1.75rem;
    }

    /* House */
    .house-section {
        padding: 1.5rem 0;
    }
    .house-container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .house-main-content {
        min-height: 45vh;
    }
    .house-image-wrapper {
        width: 75%;
    }
    .house-category-name {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    .house-carousel-track {
        gap: 2rem;
    }

    /* Footer */
    .footer-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .footer-content {
        gap: 3rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .footer-logo-img {
        height: 75px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-list li,
    .footer-list a {
        font-size: 0.9rem;
    }
    .footer-copyright {
        font-size: 0.8rem;
    }

    /* Contact */
    .contact-section {
        padding: 5rem 0 2.5rem;
    }
    .contact-title {
        font-size: 2.25rem;
        letter-spacing: 3px;
    }
    .contact-subtitle {
        font-size: 0.95rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ========== SM: 480px ve altı (telefon) ========== */
@media (max-width: 480px) {
    /* Intro */
    .intro-logo {
        height: 52px;
        max-height: 52px;
        max-width: 130px;
        margin-bottom: 24px;
    }
    .loading-line {
        width: 130px;
        margin-bottom: 24px;
    }

    /* Navbar */
    .navbar {
        padding: 0.85rem 1rem;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    .navbar-left {
        gap: 0.75rem;
    }
    .logo-image {
        height: 48px;
        max-height: 48px;
        max-width: 120px;
    }
    .navbar-search-box {
        left: calc(48px + 0.75rem);
        width: calc(100vw - 2rem - 48px - 44px - 0.75rem);
        max-width: calc(100% - 95px);
        height: 36px;
        padding: 0.5rem 0.85rem;
    }
    .navbar-search-box.active {
        width: calc(100vw - 2rem - 48px - 44px - 0.75rem);
        max-width: calc(100% - 95px);
    }
    .navbar-search-input,
    .navbar-search-cursor {
        font-size: 0.8rem;
    }
    .navbar-search-cursor {
        left: 0.85rem;
    }
    .navbar-menu-button {
        width: 40px;
        height: 40px;
    }
    .nav-icon {
        width: 16px;
        height: 12px;
        gap: 3px;
    }
    .language-switcher {
        width: 40px;
        height: 40px;
    }
    .world-icon {
        width: 18px;
        height: 18px;
    }

    /* Hero – küçük ekranda video tam kaplama (portrait için büyük scale) */
    .hero {
        max-height: 100dvh;
        overflow: hidden;
    }
    .hero-video-inner {
        transform: translate(-50%, -50%) scale(4);
    }
    .hero .hero-corner {
        width: 28px;
        height: 28px;
        opacity: 0.5;
    }
    .hero .hero-corner-tl { top: 10px; left: 10px; }
    .hero .hero-corner-tr { top: 10px; right: 10px; }
    .hero .hero-corner-bl { bottom: 10px; left: 10px; }
    .hero .hero-corner-br { bottom: 10px; right: 10px; }
    .hero-scroll-hint {
        bottom: 1rem;
        bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    .hero-scroll-hint-line {
        height: 30px;
    }
    .video-touch-button {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        right: max(0.75rem, env(safe-area-inset-right));
        bottom: max(0.75rem, env(safe-area-inset-bottom));
    }

    /* Overlays */
    .nav-overlay {
        top: calc(0.85rem + 40px + 0.5rem);
        right: 1rem;
        right: max(1rem, env(safe-area-inset-right));
    }
    .nav-overlay.active {
        width: min(280px, 90vw);
        max-height: calc(100dvh - 40px - 2rem - 1rem);
        min-height: 200px;
    }
    .nav-overlay-content {
        padding: 1.5rem 1.25rem;
    }
    .nav-link {
        font-size: clamp(0.95rem, 4.5vw, 1.15rem);
        padding: 0.65rem 0;
    }
    .language-overlay {
        top: calc(0.85rem + 40px + 0.5rem);
        right: 1rem;
        right: max(1rem, env(safe-area-inset-right));
    }
    .language-overlay.active {
        width: min(280px, 90vw);
        max-height: calc(100dvh - 40px - 2rem - 1rem);
        min-height: 160px;
    }
    .language-overlay-content {
        padding: 1.5rem 1.25rem;
    }
    .language-option {
        padding: 0.45rem 0;
        font-size: clamp(0.95rem, 4.5vw, 1.1rem);
    }

    /* Content */
    .content-section {
        padding: 3rem 0 5rem;
    }
    .content-intro {
        padding: 2rem 1rem 1rem;
    }
    .content-intro-main {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
        margin-bottom: 1rem;
    }
    .content-intro-script {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    .content-intro-description {
        font-size: 0.9rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    /* Project galleries */
    .project-galleries-row {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        gap: 1.25rem;
    }
    .project-gallery-title {
        font-size: clamp(1rem, 4.5vw, 1.35rem);
    }
    .project-gallery-slider-wrapper {
        min-height: 200px;
    }
    .project-gallery-slide {
        min-width: 220px;
    }
    .project-gallery-prev,
    .project-gallery-next {
        width: 32px;
        height: 32px;
    }
    .project-gallery-dots .dot {
        width: 6px;
        height: 6px;
    }

    /* About */
    .about-section {
        padding: 2.5rem 0 5rem;
    }
    .about-inner {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .about-layout {
        gap: 1.5rem;
    }
    .about-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }
    .about-body,
    .about-timeline,
    .about-card-content {
        font-size: 0.85rem;
    }
    .about-vision-mission-container {
        padding: 1rem 0.75rem;
        gap: 1rem;
    }
    .about-vision-mission-item {
        padding: 1.25rem;
    }
    .about-vision-mission-title {
        font-size: 1.2rem;
    }
    .about-vision-mission-content {
        font-size: 0.85rem;
    }

    /* Services */
    .services-section {
        padding: 2.5rem 0 3rem;
    }
    .services-section .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .services-title {
        font-size: clamp(1.5rem, 5vw, 1.85rem);
    }
    .service-card {
        width: min(calc(100vw - 2rem), 300px);
        min-width: 260px;
        min-height: 300px;
        padding: 1.5rem 1rem;
    }
    .service-card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.75rem;
    }
    .service-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .service-card-description {
        font-size: 0.85rem;
    }
    .branch-card {
        height: 40vh;
        min-height: 300px;
    }
    .branch-card-title {
        font-size: clamp(1.35rem, 4.5vw, 1.65rem);
    }
    .branch-card-overlay {
        padding: 1.25rem 1rem;
    }

    /* FAQ */
    .faq-section {
        padding: 2.5rem 0 3.5rem;
    }
    .faq-section .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .faq-header {
        margin-bottom: 1.5rem;
    }
    .faq-title {
        font-size: clamp(1.4rem, 4.5vw, 1.75rem);
    }
    .faq-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    .faq-item-number {
        font-size: 1.5rem;
    }
    .faq-item-question {
        font-size: 1rem;
    }
    .faq-item-answer {
        font-size: 0.85rem;
    }
    .faq-item-icon {
        width: 16px;
        height: 16px;
    }

    /* Press */
    .press-news-section {
        padding: 2.5rem 0;
    }
    .press-news-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .press-news-header {
        margin-bottom: 1.5rem;
    }
    .press-news-title {
        font-size: clamp(1.4rem, 4.5vw, 1.65rem);
    }
    .press-news-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    .press-card {
        padding: 1.25rem;
    }
    .press-card-logo {
        font-size: 1.1rem;
    }
    .press-card-logo-image {
        max-height: 48px;
        max-width: 130px;
    }
    .press-card-text {
        font-size: 0.9rem;
    }

    /* House */
    .house-section {
        padding: 1rem 0;
    }
    .house-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .house-category-name {
        font-size: clamp(1.75rem, 5.5vw, 3rem);
    }
    .house-category-box {
        padding: 0.4rem 1.25rem;
    }

    /* Footer */
    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    .footer-logo-img {
        height: 65px;
    }
    .footer-logo-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .footer-list li,
    .footer-list a {
        font-size: 0.85rem;
    }
    .footer-copyright {
        font-size: 0.75rem;
    }

    /* Contact */
    .contact-section {
        padding: 4rem 0 2rem;
    }
    .contact-title {
        font-size: 1.85rem;
        letter-spacing: 2px;
    }
    .contact-subtitle {
        font-size: 0.9rem;
    }
    .contact-form-wrapper {
        padding: 1.25rem;
    }
}

/* ========== XS: 360px ve altı (küçük telefon) ========== */
@media (max-width: 360px) {
    .navbar {
        padding: 0.75rem 0.75rem;
        padding-left: max(0.75rem, env(safe-area-inset-left));
        padding-right: max(0.75rem, env(safe-area-inset-right));
    }
    .logo-image {
        height: 44px;
        max-height: 44px;
        max-width: 110px;
    }
    .navbar-search-box {
        left: calc(44px + 0.5rem);
        width: calc(100vw - 1.5rem - 44px - 40px - 0.5rem);
        height: 34px;
        padding: 0.45rem 0.65rem;
    }
    .navbar-search-input,
    .navbar-search-cursor {
        font-size: 0.75rem;
    }
    .navbar-search-cursor {
        left: 0.65rem;
    }
    .navbar-menu-button {
        width: 38px;
        height: 38px;
    }
    .language-switcher {
        width: 38px;
        height: 38px;
    }
    .nav-overlay.active,
    .language-overlay.active {
        width: min(260px, 92vw);
    }
    .content-intro-main {
        font-size: 1.4rem;
    }
    .content-intro-script {
        font-size: 1.15rem;
    }
    .content-intro-description {
        font-size: 0.85rem;
    }
    .project-gallery-slide {
        min-width: 200px;
    }
    .service-card {
        min-width: 240px;
        min-height: 280px;
        padding: 1.25rem 0.85rem;
    }
    .faq-title {
        font-size: 1.3rem;
    }
    .faq-item {
        grid-template-columns: 36px 1fr;
        gap: 0.75rem;
    }
    .faq-item-number {
        font-size: 1.35rem;
    }
    .faq-item-question {
        font-size: 0.95rem;
    }
    .press-news-title {
        font-size: 1.3rem;
    }
    .footer-logo-img {
        height: 58px;
    }
    .video-touch-button {
        width: 62px;
        height: 62px;
        font-size: 0.65rem;
    }
}

/* ========== Touch / coarse pointer (tablet & telefon) ========== */
@media (min-width: 769px) and (max-width: 1024px) and (pointer: coarse) {
    .navbar {
        padding: 1.25rem 1.75rem;
    }
    button,
    .navbar-menu-button,
    .language-switcher {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ========== Mobilde adres çubuğu için dvh ========== */
@media (max-width: 768px) {
    .hero {
        min-height: -webkit-fill-available;
        min-height: 100dvh;
        height: 100dvh;
    }
}

/* ========== Yüksek çözünürlük / retina ========== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    @media (max-width: 768px) {
        .logo-image,
        .intro-logo {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }
}
