/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Lato:wght@300;400;700&display=swap');

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
}

/* Header Stilleri */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0) !important;
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.header .navbar {
    background: transparent !important;
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hamburger Menu Button */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hamburger-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Logo */
.logo {
    text-align: center;
    flex: 1;
}

.logo h2 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo img {
    width: auto;
    height: 70px;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    backdrop-filter: blur(10px);
    justify-content: center;
}

/* Sidebar Language Toggle */
.sidebar-language-toggle {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.sidebar-language-toggle .language-toggle {
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.lang-btn.active {
    background: #F58020;
    border-color: #F58020;
    color: white;
}

.lang-btn.active:hover {
    background: #e06d1a;
    border-color: #e06d1a;
}

.header-right {
    display: none;
}

/* Sidebar Stilleri */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
}

.sidebar.active {
    left: 0;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 20px;
}

.sidebar-menu .nav-link {
    font-family: "Tenor Sans", sans-serif !important;
    color: white !important;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.sidebar-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(10px);
    color: white !important;
}

.sidebar-menu .nav-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Hero Video Bölümü */
.hero-video {
    position: absolute !important;
    top: 50%;
    left: 50%;
    width: 120% !important;
    height: 140% !important;
    min-width: 120% !important;
    min-height: 140% !important;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover !important;
    object-position: center !important;
    border: none;
    pointer-events: none;
}

/* YouTube iframe özel ayarları */
.hero-video iframe {
    border: none;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 40px;
    color: white;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-family: 'Tenor Sans', sans-serif !important;
    font-size: 3.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    font-family: 'Tenor Sans', sans-serif !important;
    font-size: 2rem;
    color: white;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 2.5rem !important;
    padding-bottom: 20%;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

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

/* Responsive Tasarım - Bootstrap Breakpoints */
@media (max-width: 767.98px) {

    /* Bootstrap md breakpoint */
    .hero-content {
        bottom: 60px !important;
        left: 30px !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
        letter-spacing: 2px !important;
    }

    .hero-subtitle {
        font-size: 2rem !important;
        padding-bottom: 5% !important;
    }

    .logo img {
        height: 50px !important;
    }

    .sidebar {
        width: 280px;
        left: -280px;
    }

    .hamburger-btn {
        padding: 8px !important;
        top: 15px !important;
        right: 15px !important;
    }

    /* Sidebar Language Toggle Mobile */
    .sidebar-language-toggle {
        padding: 15px;
        margin-bottom: 15px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Product Section Responsive - Tablet */
    .product-title {
        font-size: 2.5rem !important;
    }

    .features-grid .col-2 {
        margin-bottom: 1.5rem;
    }

    /* Mobilde iconları 3'erli yapacağız */
    .features-grid .col-2 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }

    .product-content {
        text-align: center;
    }
}

@media (max-width: 575.98px) {

    /* Bootstrap sm breakpoint */
    .hero-content {
        bottom: 40px !important;
        left: 20px !important;
    }

    .hero-title {
        font-size: 2rem !important;
        letter-spacing: 1px !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .header-container {
        padding: 0 15px !important;
    }

    .sidebar {
        width: 260px;
        left: -260px;
    }

    .logo img {
        height: 45px !important;
    }

    /* Product Section Responsive */
    .product-title {
        font-size: 2rem !important;
    }

    .product-subtitle {
        font-size: 1.3rem !important;
    }

    .product-description {
        font-size: 1rem !important;
    }

    .features-grid {
        margin: 2rem 0 !important;
    }

    .feature-text {
        font-size: 0.75rem !important;
    }

    /* Çok küçük ekranlarda iconları 3'erli yapacağız */
    .features-grid .col-2 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        margin-bottom: 1rem !important;
    }

    .product-content {
        padding: 0 !important;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    overflow: hidden !important;
    position: relative !important;
}

/* Hero video overlay effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* Hero Video Mobile Fix - Siyah çubukları kaldır */
@media (max-width: 767.98px) {
    .hero-video {
        width: 400% !important;
        height: 184% !important;
        min-width: 150% !important;
        min-height: 160% !important;
    }
}

/* Ultrawide Ekranlar için özel ayarlar (21:9 ve üzeri) */
@media (min-width: 2560px) {
    .hero-video {
        width: 120% !important;
        height: 160% !important;
        min-width: 120% !important;
        min-height: 160% !important;
    }
}

/* Çok geniş ultrawide ekranlar için (32:9 gibi) */
@media (min-width: 3440px) {
    .hero-video {
        width: 130% !important;
        height: 170% !important;
        min-width: 130% !important;
        min-height: 170% !important;
    }
}

/* Product Section Stilleri */
.product-section {
    position: relative;
    min-height: 100vh;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.product-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

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

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4.7px;
    color: #000000;
}

.product-subtitle {
    font-size: 1.7rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.7px;
    color: #000000;
}

.product-description {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    margin: 3rem 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-text {
    color: #2c3e50;
    font-size: 0.9rem;
}

.feature-text .fw-bold {
    color: #1a252f;
    font-size: 1rem;
}

/* Product Image */
.product-image img {
    max-width: 85%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.02);
}

/* Breadcrumb Özelleştirmesi */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb-item a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #007bff;
}

.breadcrumb-item.active {
    color: #495057;
}

/* CTA Button Özelleştirmesi */
.btn-warning {
    font-family: Roboto, sans-serif;
    background-color: #F58020;
    border-color: #F58020;
    font-weight: 300;
    border-radius: 5px;
    color: white;
    width: 120%;
    font-size: 1.1rem;
    padding: 10px 0;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

/* Dimensions Section Stilleri */
.dimensions-section {
    background-color: #f8f9fa;
    margin-top: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
}

.action-btn {
    background-color: #333333;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    flex: 1;
}

.action-btn:hover {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}

/* Dimensions Title */
.dimensions-title {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 4.7px;
    color: #282828;
}

/* Specifications */
.dimensions-specs {
    padding-left: 0;
}

.spec-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.spec-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #424242;
}

.spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: #424242;
}

/* Dimension Images */
.dimensions-images {
    position: relative;
}

.dimension-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.dimension-image-wrapper img {
    max-width: 130%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.spesifications-container {
    margin-left: 140px !important;
}

/* Responsive Design for Dimensions */
@media (max-width: 767.98px) {
    .action-buttons {
        flex-direction: column;
        gap: 2px;
    }

    .action-btn {
        border-radius: 0 !important;
        flex: none;
    }

    .action-btn:first-child {
        border-radius: 5px 5px 0 0 !important;
    }

    .action-btn:last-child {
        border-radius: 0 0 5px 5px !important;
    }

    .dimensions-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .spec-title {
        font-size: 1rem;
    }

    .spec-value {
        font-size: 1.2rem;
    }

    .dimensions-specs {
        margin-bottom: 3rem;
        text-align: center;
    }

    .dimension-image-wrapper {
        margin-bottom: 1rem;
        height: 250px !important;
        width: 100% !important;
    }

    /* Dimensions resimleri telefonda alt alta */
    .dimensions-images .row {
        flex-direction: column !important;
    }

    .dimensions-images .col-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem !important;
    }

    /* Dimension resimleri telefonda tam genişlik */
    .dimension-image-wrapper img {
        max-height: 100% !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 575.98px) {
    .dimensions-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .action-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .dimension-image-wrapper {
        height: 250px;
    }
}

/* Interior Features Section */

.interior-title {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 4.7px;
    color: #282828;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.interior-description {
    font-size: 1rem;
    font-weight: 400;
    color: #7A7A7A;
    text-align: justify;
}

/* Owl Carousel Özelleştirmesi */
.owl-carousel .owl-item img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 10px;
}

.owl-carousel .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.owl-carousel .owl-nav button {
    background-color: #333333 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 10px !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
}

.owl-carousel .owl-nav button:hover {
    background-color: #F58020 !important;
    transform: scale(1.1);
}

.owl-stage-outer {
    z-index: -1;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: -20px !important;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background-color: rgb(204, 204, 204, 0.4);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #000000;
}

/* Responsive Interior Section */
@media (max-width: 767.98px) {
    .interior-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .interior-description {
        font-size: 1rem;
        text-align: left;
    }

    .owl-carousel .owl-item img {
        height: 300px;
    }

    .interior-content {
        padding-left: 0 !important;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .interior-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .interior-description {
        font-size: 0.95rem;
    }

    .owl-carousel .owl-item img {
        height: 250px;
    }
}

/* External Features Mobile Layout */
@media (max-width: 767.98px) {

    /* External Features için özel düzen - telefonda slider üstte, yazı altta */
    .external-features-section .row.align-items-center {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    /* Sol taraf - yazı (normalde sol) */
    .external-features-section .row .col-lg-6:first-child {
        order: 2 !important;
        margin-top: 2rem !important;
        margin-bottom: 0 !important;
    }

    /* Sağ taraf - carousel (normalde sağ) */
    .external-features-section .row .col-lg-6:last-child {
        order: 1 !important;
        margin-bottom: 0 !important;
    }

    .external-features-section .interior-content {
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: center !important;
    }

    /* Interior slider margin'ı sıfırla */
    .external-features-section .interior-slider {
        margin-bottom: 0 !important;
    }
}

/* Explore Section */
.explore-section {
    background-color: #ffffff;
}

.explore-title {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 4.7px;
    color: #282828;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* Main Carousel */
.main-carousel-wrapper {
    position: relative;
}

#mainCarousel .owl-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

#mainCarousel .owl-dots {
    display: none;
}

#mainCarousel .owl-nav {
    display: none;
}

/* Thumbnail Carousel */
.thumbnail-carousel-wrapper {
    margin-top: 15px;
}

#thumbnailCarousel .owl-item {
    padding: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

#thumbnailCarousel .owl-item.active,
#thumbnailCarousel .owl-item:hover {
    opacity: 1;
}

#thumbnailCarousel .owl-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#thumbnailCarousel .owl-nav {
    display: none;
}

#thumbnailCarousel .owl-dots {
    display: none;
}

/* Floor Plan */
.floor-plan-wrapper {
    padding-left: 3rem;
}

.floor-plan-image {
    max-width: 100%;
    height: auto;
}

.floor-plan-note {
    color: #7a7a7a;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 1rem;
}

/* Responsive Explore Section */
@media (max-width: 767.98px) {
    .explore-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    #mainCarousel .owl-item img {
        height: 300px;
    }

    #thumbnailCarousel .owl-item img {
        height: 60px;
    }

    .floor-plan-wrapper {
        padding-left: 0;
        margin-top: 3rem;
    }

    .floor-plan-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .explore-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    #mainCarousel .owl-item img {
        height: 250px;
    }

    #thumbnailCarousel .owl-item img {
        height: 50px;
    }
}

/* Video Section */
.video-section {
    background-color: #fff;
    padding: 80px 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 15px;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail img {
    object-fit: cover;
    width: 100%;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

/* Video Top Title */
.video-top-title {
    position: absolute;
    top: 18%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
}

.video-top-title h1 {
    color: white;
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
}

/* Video Bottom Text */
.video-bottom-text {
    position: absolute;
    bottom: 32%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
}

.video-bottom-text p {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
}

/* Video Powered By */
.video-powered-by {
    position: absolute;
    bottom: 10%;
    left: 45.5%;
    text-align: center;
    z-index: 4;
}

.video-powered-by p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.matterport-logo {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.matterport-logo i {
    margin-right: 5px;
    font-size: 1.1rem;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.play-button:hover {
    background: rgba(245, 128, 32, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover .play-icon i {
    color: #fff;
}

.play-icon i {
    font-size: 2.5rem;
    color: #000;
    margin-left: 5px;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    z-index: 1;
    width: 100%;
    pointer-events: none;
}

.video-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Video Player */
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* Promo Video - YouTube iframe */
.promo-video {
    border-radius: 15px;
    border: none;
    width: 100%;
    height: 100%;
}


/* Responsive Video Section */
@media (max-width: 767.98px) {
    .video-section {
        padding: 60px 20px;
    }

    .video-container {
        height: 400px;
    }

    .video-top-title {
        top: 15%;
    }

    .video-top-title h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-icon i {
        font-size: 2rem;
    }

    .video-bottom-text {
        bottom: 30%;
    }

    .video-bottom-text p {
        font-size: 1rem;
    }

    .video-powered-by {
        bottom: 8%;
        left: 42%;
    }

    .video-powered-by p {
        font-size: 0.9rem;
    }

    .matterport-logo {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .video-section {
        padding: 40px 15px;
    }

    .video-container {
        height: 300px;
    }

    .video-top-title {
        top: 12%;
    }

    .video-top-title h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-icon i {
        font-size: 1.5rem;
    }

    .video-bottom-text {
        bottom: 28%;
    }

    .video-bottom-text p {
        font-size: 0.9rem;
    }

    .video-powered-by {
        bottom: 6%;
        left: 38%;
    }

    .video-powered-by p {
        font-size: 0.8rem;
    }

    .matterport-logo {
        font-size: 0.8rem;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-tab {
    background: transparent;
    color: #333333;
    border: none;
    padding: 5px 10px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    opacity: 0.6;
    position: relative;
}

.gallery-tab.active {
    border: 2px solid #333333;
    color: #333333;
    opacity: 1;
}

.gallery-tab:hover:not(.active) {
    opacity: 1;
    transform: translateY(-2px);
}

.gallery-tab:hover {
    border: 2px solid #333333;
    color: #333333;
}

/* Gallery Content */
.gallery-content {
    position: relative;
    min-height: 600px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none; /* Gizli grid'lerin tıklamaları engellemesini önler */
}

.gallery-grid.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto; /* Aktif grid'de tıklamaları etkinleştirir */
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .gallery-content {
        min-height: 500px;
    }
}

@media (max-width: 767.98px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-tabs {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .gallery-tab {
        width: 100%;
        border-radius: 0 !important;
        border-bottom: none;
    }


    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .gallery-content {
        min-height: 400px;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
    }

    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .gallery-content {
        min-height: 300px;
    }
}

/* Specifications Section */
.specifications-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.specifications-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.spec-category {
    margin-bottom: 2.5rem;
}

.spec-category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F58020;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

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

.spec-list li {
    position: relative;
    margin-bottom: 8px;
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Specifications */
@media (max-width: 767.98px) {
    .specifications-section {
        padding: 60px 0;
    }

    .specifications-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    .spec-category-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .spec-list li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 575.98px) {
    .specifications-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .spec-category-title {
        font-size: 1rem;
    }

    .spec-list li {
        font-size: 0.85rem;
        padding-left: 20px;
    }
}

/* Contact Us Section */
.contact-section {
    background-color: #F3F3F3;
    padding: 80px 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.contact-form {
    background: transparent;
    padding: 0;
}

/* Form Labels */
.form-label {
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
    margin-left: 2px;
}

/* Form Controls */
.form-control,
.form-select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 0.95rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #F58020;
    box-shadow: 0 0 0 0.2rem rgba(245, 128, 32, 0.25);
    outline: none;
}

/* Form Validation States */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Alert Messages */
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 1rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 1rem;
}

/* Send Message Button Loading State */
.btn-send-message:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.loading-text {
    display: none;
}

/* Textarea */
.form-control[rows] {
    resize: vertical;
    min-height: 120px;
}

/* Radio Buttons */
.interest-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-top: 0;
    margin-right: 8px;
}

.form-check-input:checked {
    background-color: #F58020;
    border-color: #F58020;
}

.form-check-input:focus {
    border-color: #F58020;
    box-shadow: 0 0 0 0.2rem rgba(245, 128, 32, 0.25);
}

.form-check-label {
    color: #333333;
    font-size: 0.95rem;
    margin-bottom: 0;
    cursor: pointer;
}

/* Newsletter Checkbox */
.form-check-label strong {
    color: #F58020;
}

/* Privacy Text */
.privacy-text {
    margin: 20px 0;
}

.privacy-text p {
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 12px;
}

.privacy-link {
    color: #007bff;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Send Message Button */
.btn-send-message {
    background-color: #F58020;
    border: none;
    color: white;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-send-message:hover {
    background-color: #e06d1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 128, 32, 0.3);
}

.btn-send-message:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(245, 128, 32, 0.5);
}

/* Responsive Contact Section */
@media (max-width: 767.98px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }

    .form-control,
    .form-select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .btn-send-message {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .contact-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .privacy-text p {
        font-size: 0.8rem;
    }
}

/* Keep Up to Date Section */
.keep-updated-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.keep-updated-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.keep-updated-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Download Brochure Button */
.btn-download-brochure {
    background-color: #F58020;
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download-brochure:hover {
    background-color: #e06d1a;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(245, 128, 32, 0.3);
    text-decoration: none;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: white;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.facebook:hover {
    background-color: #0d65d9;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e0842a 0%, #d65a33 25%, #c91e3a 50%, #b31a5d 75%, #a00f7f 100%);
    color: white;
}

.social-icon.twitter-x {
    background-color: #000;
}

.social-icon.twitter-x:hover {
    background-color: #232323;
    color: white;
}

.social-icon.twitter-x svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Responsive Keep Updated Section */
@media (max-width: 767.98px) {
    .keep-updated-section {
        padding: 60px 0;
    }

    .keep-updated-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .keep-updated-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .btn-download-brochure {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .social-media-icons {
        gap: 15px;
    }

    .btn-warning {
        width: 100%;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .social-icon.twitter-x svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 575.98px) {
    .keep-updated-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .keep-updated-description {
        font-size: 0.95rem;
    }

    .btn-download-brochure {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .social-icon.twitter-x svg {
        width: 18px;
        height: 18px;
    }
}

/* Footer Section */
.footer-section {
    background-image: url('../img/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 30px 0;
    color: white;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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


/* Footer Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .footer-section {
        padding: 40px 0 20px 0;
    }

    .footer-menu {
        gap: 20px;
        flex-direction: column;
    }

    .footer-menu a {
        font-size: 1rem;
    }

    .footer-nav {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .footer-menu {
        gap: 15px;
    }

    .footer-menu a {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Gallery Image Modal Styles */
.image-modal .modal-dialog {
    margin: 20px;
    max-width: calc(100% - 40px);
    height: calc(100vh - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal .modal-content {
    border-radius: 8px;
    border: none;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 40px);
}

.image-modal .modal-header {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1051;
    background: none;
    border: none;
    padding: 0;
}


.image-modal .btn-close {
    width: 50px;
    height: 50px;
    opacity: 0.9;
    background: transparent !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal .btn-close i {
    color: #ffffff !important;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.image-modal .btn-close:hover {
    opacity: 1;
    background: transparent !important;
    transform: scale(1.1);
}

.image-modal .btn-close:hover i {
    color: #ffffff !important;
    transform: scale(1.1);
}

.image-modal .btn-close:focus {
    opacity: 1;
    background: transparent !important;
    box-shadow: none !important;
}

.image-modal .btn-close:focus i {
    color: #ffffff !important;
}

.image-modal .modal-body {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-image {
    width: 50%;
    object-fit: contain;
    border-radius: 8px;
    cursor: grab;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-image:active {
    cursor: grabbing;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.modal-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    border: none;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.modal-nav-btn:hover {
    color: white;
    background: transparent;
    opacity: 1;
    transform: scale(1.1);
}

.modal-nav-btn:focus {
    color: white;
    background: transparent;
}

/* Gallery item hover effect for modal indication */
.gallery-item img:hover {
    cursor: pointer;
    filter: brightness(1.1);
}

/* Custom modal backdrop */
.modal-backdrop {
    opacity: 0.75 !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(3px);
    z-index: 1040;
}

.modal-backdrop.show {
    opacity: 0.75 !important;
}

/* Prevent multiple backdrops */
.modal-backdrop+.modal-backdrop {
    display: none !important;
}

/* Mobile modal adjustments */
@media (max-width: 767.98px) {
    .image-modal .modal-dialog {
        margin: 15px;
        max-width: calc(100% - 30px);
        height: calc(100vh - 30px);
    }

    .image-modal .btn-close {
        width: 40px;
        height: 40px;
        top: 20px;
        right: 20px;
    }

    .image-modal .btn-close i {
        font-size: 1.2rem;
    }

    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .modal-navigation {
        left: 20px;
        right: 20px;
    }

    .modal-image {
        width: 70%;
        max-width: 95%;
        max-height: 80%;
    }
}

@media (max-width: 575.98px) {
    .image-modal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
        height: calc(100vh - 20px);
    }

    .image-modal .btn-close {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
    }

    .image-modal .btn-close i {
        font-size: 1rem;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modal-navigation {
        left: 15px;
        right: 15px;
    }

    .modal-image {
        max-width: 98%;
        width: 70%;
        max-height: 75%;
    }
}

/* Privacy Policy Section */
.privacy-policy-section {
    background-color: #fff;
    padding-top: 120px !important;
}

.privacy-policy-section h1 {
    color: #333;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.privacy-policy-section h2 {
    color: #444;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-policy-section h3 {
    color: #555;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.privacy-policy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.privacy-policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-policy-section ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.privacy-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

@media (max-width: 767.98px) {
    .privacy-policy-section {
        padding-top: 100px !important;
    }

    .privacy-policy-section h1 {
        font-size: 2rem;
    }

    .privacy-policy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-policy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-policy-section p,
    .privacy-policy-section ul li {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .privacy-policy-section {
        padding-top: 80px !important;
    }

    .privacy-policy-section h1 {
        font-size: 1.8rem;
    }

    .privacy-content {
        padding: 1rem;
    }
}

.privacy-policy-section .btn-primary {
    background-color: #333;
    border: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.privacy-policy-section .btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.privacy-policy-section .btn-primary:focus {
    box-shadow: none;
    background-color: #000;
}
/* ============================================
   MOBILE FRIENDLY OPTIMIZATIONS
   ============================================ */

/* Touch-friendly minimum tap targets (44px) */
@media (max-width: 767.98px) {
    /* Tüm tıklanabilir öğeler için minimum boyut */
    a, button, .btn, .gallery-tab, .nav-link, .social-icon {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Form elementleri için daha büyük hit area */
    .form-control, .form-select {
        min-height: 48px;
        font-size: 16px !important; /* iOS zoom'u engellemek için */
        padding: 14px 16px;
    }
    
    /* Checkbox ve radio için daha büyük tıklama alanı */
    .form-check {
        padding: 10px 0;
    }
    
    .form-check-input {
        width: 22px;
        height: 22px;
        margin-right: 12px;
    }
    
    .form-check-label {
        padding: 8px 0;
        font-size: 15px;
    }
}

/* Safe Area (iPhone X ve sonrası için notch desteği) */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .header {
        padding-top: max(15px, env(safe-area-inset-top));
    }
    
    .footer-section {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}

/* Mobil için geliştirilmiş tipografi */
@media (max-width: 767.98px) {
    body {
        font-size: 15px;
        line-height: 1.6;
        -webkit-text-size-adjust: 100%;
    }
    
    h1, .h1 { font-size: 1.75rem; }
    h2, .h2 { font-size: 1.5rem; }
    h3, .h3 { font-size: 1.25rem; }
    h4, .h4 { font-size: 1.1rem; }
    
    p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }
    
    h1, .h1 { font-size: 1.5rem; }
    h2, .h2 { font-size: 1.35rem; }
    h3, .h3 { font-size: 1.15rem; }
    
    p {
        font-size: 14px;
    }
}

/* Mobil için geliştirilmiş spacing */
@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .py-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    section {
        padding: 40px 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Mobil için geliştirilmiş butonlar */
@media (max-width: 767.98px) {
    .btn, .btn-warning, .btn-send-message, .action-btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }
    
    .btn-send-message {
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 600;
    }
}

/* Mobil için specifications 1 sütun */
@media (max-width: 991.98px) {
    .specifications-section .col-lg-4 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .specifications-section .row {
        display: block;
    }
    
    .specifications-section .col-lg-4 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .spec-category {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .spec-category-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .spec-list li {
        font-size: 14px;
        padding: 6px 0;
        border-bottom: 1px solid #eee;
    }
    
    .spec-list li:last-child {
        border-bottom: none;
    }
}

/* Mobil için geliştirilmiş contact form */
@media (max-width: 767.98px) {
    .contact-section {
        padding: 50px 15px;
    }
    
    .contact-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .contact-form .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .contact-form .col-md-6 {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 15px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    .privacy-text p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .btn-send-message {
        width: 100%;
        padding: 16px;
    }
}

/* Mobil için geliştirilmiş galeri */
@media (max-width: 767.98px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-tabs {
        gap: 0;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .gallery-tab {
        padding: 14px 20px;
        font-size: 14px;
        letter-spacing: 1px;
        border-bottom: 1px solid #eee;
    }
    
    .gallery-tab:last-child {
        border-bottom: none;
    }
    
    .gallery-tab.active {
        background: #333;
        color: #fff;
        border: none;
    }
    
    .gallery-grid {
        gap: 8px;
        padding: 10px;
    }
    
    .gallery-item {
        border-radius: 6px;
    }
    
    .gallery-content {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 8px;
    }
    
    .gallery-tab {
        font-size: 13px;
        padding: 12px 16px;
    }
}

/* Mobil için geliştirilmiş sosyal medya ikonları */
@media (max-width: 767.98px) {
    .social-media-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobil için keep-updated section */
@media (max-width: 767.98px) {
    .keep-updated-section {
        padding: 40px 20px;
    }
    
    .keep-updated-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .keep-updated-description {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Mobil için video section */
@media (max-width: 767.98px) {
    .video-section {
        padding: 40px 15px;
    }
    
    .video-container {
        height: 250px;
        border-radius: 10px;
    }
    
    .video-top-title h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .play-button {
        width: 55px;
        height: 55px;
    }
    
    .play-icon i {
        font-size: 1.6rem;
        margin-left: 3px;
    }
    
    .video-bottom-text p {
        font-size: 0.85rem;
    }
    
    .video-powered-by {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobil için explore section */
@media (max-width: 767.98px) {
    .explore-section {
        padding: 40px 15px;
    }
    
    .explore-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .explore-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .floor-plan-wrapper {
        padding: 0;
        margin-top: 2rem;
    }
    
    .floor-plan-image {
        max-width: 100%;
        height: auto;
    }
    
    .floor-plan-note {
        font-size: 11px;
        padding: 0 10px;
        margin-top: 1.5rem;
    }
}

/* Mobil için dimensions section */
@media (max-width: 767.98px) {
    .dimensions-section {
        padding: 40px 15px;
    }
    
    .dimensions-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .dimensions-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .dimensions-specs > div {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .spec-title {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .spec-value {
        font-size: 1.1rem;
        font-weight: 700;
        color: #F58020;
    }
    
    .dimension-image-wrapper {
        height: 200px;
    }
}

/* Mobil için interior/exterior sections */
@media (max-width: 767.98px) {
    .interior-section {
        padding: 40px 15px;
    }
    
    .interior-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .interior-description {
        font-size: 14px;
        text-align: left;
        line-height: 1.7;
    }
    
    .interior-content {
        margin-top: 1.5rem;
        padding: 0 !important;
    }
    
    .owl-carousel .owl-item img {
        height: 220px;
        border-radius: 8px;
    }
    
    .owl-carousel .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
    
    .owl-carousel .owl-dots {
        margin-top: -10px !important;
    }
}

/* Mobil için product section */
@media (max-width: 767.98px) {
    .product-section {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        background-position: center top !important;
    }
    
    .product-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        text-align: center;
        padding: 0 10px;
    }
    
    .product-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .product-description {
        font-size: 14px;
        text-align: left;
        line-height: 1.7;
    }
    
    .product-image img {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        margin: 1.5rem 0;
    }
    
    .features-grid .col-2 {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        padding: 5px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-text {
        font-size: 10px;
    }
    
    .feature-text .medium {
        font-size: 10px;
    }
}

/* Mobil için footer */
@media (max-width: 767.98px) {
    .footer-section {
        padding: 30px 15px;
    }
    
    .footer-copyright p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .footer-copyright p:first-child {
        margin-bottom: 10px;
    }
}

/* Mobil için modal */
@media (max-width: 767.98px) {
    .image-modal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-image {
        width: 95% !important;
        max-width: 95% !important;
    }
    
    .modal-navigation {
        left: 5px;
        right: 5px;
    }
    
    .modal-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
    }
    
    .image-modal .btn-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        background: rgba(0,0,0,0.5) !important;
        border-radius: 50%;
    }
}

/* Scroll davranışı */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Mobil için daha iyi scroll performansı */
@media (max-width: 767.98px) {
    .gallery-content,
    .owl-carousel,
    .sidebar {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Horizontal scroll göstergesi gizle */
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
}

/* Focus states for accessibility */
@media (max-width: 767.98px) {
    a:focus,
    button:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 2px solid #F58020;
        outline-offset: 2px;
    }
}

/* Landscape orientation için özel düzeltmeler */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-content {
        bottom: 30px !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        padding-bottom: 0 !important;
    }
    
    .video-container {
        height: 200px;
    }
}

/* Print styles (PDF için) */
@media print {
    .header, .sidebar, .hamburger-btn, .sidebar-overlay {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* reCAPTCHA Responsive */
.g-recaptcha {
    transform-origin: left top;
}

@media (max-width: 575.98px) {
    .g-recaptcha {
        transform: scale(0.85);
        margin-bottom: -10px;
    }
}

@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.75);
        margin-bottom: -20px;
    }
}
