* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a4d7a;
    --orange-accent: #ff6b35;
    --secondary-color: #00aa66;
    --accent-color: #cc6600;
    --light-blue: #87ceeb;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --dark: #1a1a1a;
    --text-gray: #333;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-gray);
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

/* Header - Beyaz arka plan */
.header {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    max-width: 100%;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--orange-accent);
    transform: scale(1.1);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav-menu a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.mobile-header-info {
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.3px;
}

.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #87ceeb;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher with Flags */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(26, 77, 122, 0.2);
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    height: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
}

.lang-dropdown-btn:hover {
    border-color: var(--primary-blue);
    background: rgba(26, 77, 122, 0.1);
}

.lang-dropdown-btn .lang-arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

.lang-dropdown.active .lang-dropdown-btn .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: var(--white);
    border: 2px solid rgba(26, 77, 122, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    display: none;
    overflow: hidden;
    animation: fadeInDown 0.3s ease;
}

.lang-dropdown.active .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(26, 77, 122, 0.1);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.lang-dropdown-item:last-child {
    border-bottom: none;
}

.lang-dropdown-item:hover {
    background: rgba(26, 77, 122, 0.1);
    color: var(--primary-blue);
}

.lang-dropdown-item.active {
    background: rgba(26, 77, 122, 0.15);
    color: var(--primary-blue);
    font-weight: 600;
}

.lang-dropdown-item .flag-icon {
    display: inline-block;
    width: 24px;
    height: 18px;
    line-height: 1;
    vertical-align: middle;
}

.lang-dropdown-item .lang-name {
    flex: 1;
}

.lang-dropdown-btn .flag-icon {
    display: inline-block;
    width: 24px;
    height: 18px;
    line-height: 1;
    vertical-align: middle;
}

.lang-dropdown-btn .lang-name {
    flex: 1;
    text-align: left;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Phone Button - Stylish */
.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6ba0 100%);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.25);
    border: none;
    cursor: pointer;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #1a3d5c 0%, #153a5a 100%);
    color: var(--white) !important;
}

.phone-btn:active {
    transform: translateY(0);
}

.phone-btn i {
    font-size: 16px;
}

.mobile-phone-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
}

/* Social Icons - Brand Colors */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Icon - Green */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white) !important;
}

.whatsapp-icon:hover {
    background: linear-gradient(135deg, #1ea855 0%, #0d7a5f 100%);
    color: var(--white) !important;
}

/* Instagram Icon - Gradient */
.instagram-icon {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: var(--white) !important;
}

.instagram-icon:hover {
    background: linear-gradient(135deg, #6a2d8f 0%, #d01616 50%, #d99a38 100%);
    color: var(--white) !important;
}

.mobile-social-icons {
    justify-content: center;
    margin-top: 10px;
}

/* Main Layout: 3 Projects + Form Sidebar */
.main-layout {
    width: 100%;
    position: relative;
    display: flex;
    gap: 0;
    margin-top: 90px;
}

/* Left Bar - 80% */
.leftBar {
    width: 80%;
    flex: 0 0 80%;
    display: flex;
    flex-direction: column;
}

/* Right Bar - 20% */
.rightBar {
    width: 20%;
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    z-index: 100;
}

.rightBar {
    visibility: visible !important;
    display: flex !important;
}

.rightBar * {
    visibility: visible !important;
}

.form-sidebar-wrapper {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
}

.projects-wrapper {
    position: relative;
    overflow-y: auto;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    min-height: auto;
    height: auto;
    max-height: none;
}

.projects-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Projects Container - 3 cards side by side */
.projects-container {
    display: flex;
    width: 100%;
    gap: 0;
    min-height: calc(100vh - 90px);
    flex-wrap: nowrap;
}

/* Ensure detail sections are visible after projects-container */
.projects-wrapper > .project-detail-section,
.projects-wrapper > .footer,
.projects-wrapper > section.project-detail-section,
.projects-wrapper > footer.footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 100px 40px !important;
}

/* Ensure all sections are visible */
.azure-detail-section,
.project-detail-section,
.footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    min-height: 100px !important;
}

/* Specifically ensure Bulut Evleri and Footer are visible - AGGRESSIVE */
#bulut-detail {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    min-height: 500px !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 100px 40px !important;
    background: linear-gradient(180deg, #e8eaf6 0%, #e3e5f1 50%, #ffffff 100%) !important;
    z-index: 10 !important;
}

/* Force all Bulut Evleri content to be visible */
#bulut-detail .bulut-detail-header,
#bulut-detail .bulut-hero-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#bulut-detail .bulut-features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#bulut-detail .bulut-bottom-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#ofis-detail {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    min-height: 500px !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 100px 40px !important;
    background: linear-gradient(180deg, #faf8f3 0%, #f5f3ed 50%, #ffffff 100%) !important;
}

.footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    min-height: 300px !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 70px 40px 25px !important;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%) !important;
}

/* Force visibility for all child elements */
#bulut-detail *,
#ofis-detail *,
.footer * {
    visibility: visible !important;
}

/* Ensure projects-wrapper shows all content */
.projects-wrapper > section,
.projects-wrapper > footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.form-sidebar-wrapper {
    position: relative;
}


.project-card {
    flex: 1;
    position: relative;
    min-height: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.project-card:hover {
    border: none;
    outline: none;
}

/* Project background container */
.project-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

/* MB Azure - Background Image */
.azure-bg-image {
    background-image: url('images/mb-azure-resort.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1s ease;
    will-change: transform;
    transform: scale(1);
}

/* MB Bulut - Background Image */
.bulut-bg-image {
    background-image: url('images/472x840_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1s ease;
    will-change: transform;
    transform: scale(1);
}

/* MB 34 Ofis - Background Image */
.ofis-bg-image {
    background-image: url('images/mb-34-LP-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1s ease;
    will-change: transform;
    transform: scale(1);
}

/* Overlay for better text readability - Üstten siyahtan transparent'a gradient */
.project-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 25%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
    z-index: 1;
    transition: background 0.8s ease;
    backdrop-filter: blur(0px);
}

/* Hover effects on project card - Sadece transform scale ile yakınlaşma */
.project-card:hover .azure-bg-image,
.project-card:hover .bulut-bg-image,
.project-card:hover .ofis-bg-image {
    transform: scale(1.05);
}

/* İçeriği sabit tut - background zoom yaparken içerik aynı boyutta kalsın */
.project-card:hover .project-inner {
    transform: scale(0.952);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 25%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(1px);
}

.project-inner {
    position: relative;
    z-index: 2;
    padding: 100px 40px 40px;
    text-align: center;
    color: var(--white);
    max-width: 100%;
    width: 100%;
    min-height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 1s ease, opacity 0.8s ease;
    transform: scale(1);
    opacity: 1;
}


.mb-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.project-card:hover .mb-logo-container {
    transform: translateY(-8px);
}

.project-logo-img {
    max-width: 240px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(4px 4px 15px rgba(0,0,0,0.6)) drop-shadow(0 0 20px rgba(255,255,255,0.1));
    margin-bottom: 10px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-logo-img {
    filter: drop-shadow(5px 5px 20px rgba(0,0,0,0.7)) drop-shadow(0 0 30px rgba(255,255,255,0.2));
}



.project-description {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7), 0 2px 4px rgba(0,0,0,0.5);
    padding: 0 30px;
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transform: translateY(0);
    opacity: 0.95;
}

.project-card:hover .project-description {
    transform: translateY(-5px);
    opacity: 1;
}

.btn-incele {
    padding: 22px 65px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    color: var(--primary-blue);
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(0,0,0,0.5), 0 0 50px rgba(255,255,255,0.4), inset 0 1px 0 rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    overflow: hidden;
    transform: translateY(0) scale(1);
    backdrop-filter: blur(10px);
    margin-top: auto;
    align-self: center;
}

.btn-incele::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1), height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-incele::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-incele:hover::before {
    width: 350px;
    height: 350px;
}

.btn-incele:hover::after {
    left: 100%;
}

.btn-incele:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 50px rgba(0,0,0,0.6), 0 0 70px rgba(255,255,255,0.5), inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,1);
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 100%);
}

/* Form Sidebar - Koyu mavi, sağda sabit */
.form-sidebar-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.form-sidebar {
    width: 100%;
    background: var(--primary-blue);
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    overflow-y: auto;
    display: flex !important;
    flex-direction: column;
    z-index: 999;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    visibility: visible !important;
    opacity: 1 !important;
}

.form-sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Desktop'ta form sidebar fixed */
@media (min-width: 1200px) {
    .main-layout {
        margin-top: 90px;
    }
    
    .leftBar {
        width: 80%;
        flex: 0 0 80%;
    }
    
    .rightBar {
        width: 20%;
        flex: 0 0 20%;
    }
    
    .form-sidebar {
        width: 100%;
        top: 90px;
        height: calc(100vh - 90px);
        position: sticky;
        right: auto;
    }
    
    .form-sidebar-wrapper {
        width: 100%;
    }
}

/* Tablet'te form sidebar fixed ama daha dar */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-layout {
        margin-top: 70px;
    }
    
    .leftBar {
        width: 80%;
        flex: 0 0 80%;
    }
    
    .rightBar {
        width: 20%;
        flex: 0 0 20%;
    }
    
    .form-sidebar {
        width: 100%;
        top: 70px;
        height: calc(100vh - 70px);
        position: sticky;
    }
    
    .form-sidebar-wrapper {
        width: 100%;
    }
}

/* Mobile'da form sidebar normal flow */
@media (max-width: 991px) {
    .main-layout {
        flex-direction: column;
    }
    
    .leftBar {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .rightBar {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .projects-wrapper {
        height: auto;
        overflow-y: visible;
    }
    
    .form-sidebar {
        position: relative;
        top: 0;
        right: auto;
        height: auto;
        min-height: auto;
        width: 100%;
    }
    
    .form-sidebar-wrapper {
        width: 100%;
    }
}


.form-header-orange {
    background: linear-gradient(135deg, var(--orange-accent) 0%, #ff8c5a 100%);
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.form-header-orange h2 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.contact-form {
    padding: 25px 20px;
    flex: 1;
}

.form-field {
    margin-bottom: 18px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--orange-accent);
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    color: var(--text-gray);
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-field input:focus,
.form-field select:focus {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #ff8c5a;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
    cursor: pointer;
}

.checkbox-field {
    margin-bottom: 15px;
}

.checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--white);
    font-size: 12px;
    line-height: 1.5;
}

.checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--orange-accent);
    flex-shrink: 0;
}

.checkbox-field span {
    flex: 1;
}

.btn-gonder {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--orange-accent) 0%, #ff8c5a 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gonder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-gonder:hover::before {
    width: 400px;
    height: 400px;
}

.btn-gonder:hover {
    background: linear-gradient(135deg, #ff8c5a 0%, var(--orange-accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Form Message Styles */
.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
    word-wrap: break-word;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Desktop Large */
@media (max-width: 1400px) and (min-width: 1200px) {
    .main-layout {
        grid-template-columns: 80% 20%;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1199px) and (min-width: 992px) {
    .main-layout {
        margin-top: 70px;
    }
    
    .projects-wrapper {
        height: calc(100vh - 70px);
        margin-right: 350px;
    }
    
    .projects-container {
        flex-direction: row;
        min-height: calc(100vh - 70px);
    }
    
    .project-card {
        min-height: calc(100vh - 70px);
        height: auto;
    }
    
    .project-logo-img {
        max-width: 180px;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 15px 20px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .main-layout {
        flex-direction: column;
        margin-top: 70px;
    }
    
    .projects-wrapper {
        height: auto;
        overflow-y: visible;
        margin-right: 0 !important;
        width: 100%;
    }
    
    .projects-container {
        flex-direction: column;
        margin-right: 0 !important;
        min-height: auto;
    }
    
    .project-card {
        min-height: 450px;
        height: auto;
    }
    
    .project-logo-img {
        max-width: 180px;
    }
    
    .form-sidebar {
        position: relative !important;
        top: 0 !important;
        right: auto !important;
        height: auto !important;
        width: 100% !important;
    }
    
    .form-sidebar-wrapper {
        width: 100% !important;
    }
    
    .azure-detail-container,
    .detail-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 15px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .main-layout {
        margin-top: 59px;
    }
    
    .lang-dropdown-btn {
        min-width: 100px;
        height: 36px;
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .lang-dropdown-menu {
        min-width: 130px;
    }
    
    .lang-dropdown-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .flag-icon {
        width: 20px;
        height: 15px;
    }
    
    .phone-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .mobile-lang-switcher {
        justify-content: center;
        width: 100%;
    }
    
    .mobile-lang-switcher .lang-dropdown {
        width: 100%;
    }
    
    .mobile-lang-switcher .lang-dropdown-btn {
        width: 100%;
        justify-content: space-between;
    }
    
    .mobile-lang-switcher .lang-dropdown-menu {
        width: 100%;
        right: 0;
    }
    
    .mobile-phone-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .projects-wrapper {
        height: auto;
    }
    
    .projects-container {
        flex-direction: column;
        margin-right: 0 !important;
    }
    
    .project-card {
        min-height: 480px;
    }
    
    .project-logo-img {
        max-width: 150px;
    }
    
    .project-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .azure-detail-section {
        padding: 40px 0 0 0 !important;
        margin-right: 0 !important;
    }
    
    .project-detail-section,
    .footer {
        padding: 40px 10px;
        margin-right: 0 !important;
    }
    
    .azure-detail-header,
    .bulut-detail-header,
    .ofis-detail-header {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
        align-items: center;
    }
    
    .azure-header-content,
    .bulut-header-content,
    .ofis-header-content {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }
    
    .azure-resort-logo,
    .bulut-logo,
    .ofis-logo {
        max-width: 180px;
        width: auto;
        margin-bottom: 0 !important;
    }
    
    .vertical-line {
        width: 60px !important;
        height: 3px !important;
        background: linear-gradient(90deg, var(--primary-blue) 0%, var(--orange-accent) 100%) !important;
        margin-bottom: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .azure-text-content,
    .bulut-text-content,
    .ofis-text-content {
        text-align: center;
        width: 100%;
    }
    
    .azure-resort-logo,
    .bulut-logo,
    .ofis-logo {
        max-width: 180px;
    }
    
    .azure-main-title,
    .bulut-main-title,
    .ofis-main-title {
        font-size: 22px;
        text-align: center;
        margin: 0 0 10px;
        line-height: 1.3;
    }
    
    .azure-subtitle,
    .bulut-subtitle,
    .ofis-subtitle {
        text-align: center;
        font-size: 13px;
    }
    
    .features-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bulut-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .ofis-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .bulut-bottom-images {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .ofis-bottom-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 10px 12px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .main-layout {
        margin-top: 50px;
    }
    
    .projects-wrapper {
        height: auto;
    }
    
    .projects-container {
        flex-direction: column;
        margin-right: 0 !important;
    }
    
    .project-card {
        min-height: 480px;
    }
    
    .project-logo-img {
        max-width: 120px;
    }
    
    .project-description {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .btn-incele {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .azure-detail-section {
        padding: 30px 0 0 0 !important;
        margin-right: 0 !important;
    }
    
    .project-detail-section,
    .footer {
        padding: 30px 8px;
        margin-right: 0 !important;
    }
    
    .azure-detail-header,
    .bulut-detail-header,
    .ofis-detail-header {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
        align-items: center;
    }
    
    .azure-header-content,
    .bulut-header-content,
    .ofis-header-content {
        flex-direction: column;
        align-items: center;
        gap: 0 !important;
        width: 100%;
    }
    
    .azure-resort-logo,
    .bulut-logo,
    .ofis-logo {
        max-width: 150px;
        width: auto;
        margin-bottom: 0 !important;
    }
    
    .vertical-line {
        width: 50px !important;
        height: 3px !important;
        background: linear-gradient(90deg, var(--primary-blue) 0%, var(--orange-accent) 100%) !important;
        margin-bottom: 18px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .azure-text-content,
    .bulut-text-content,
    .ofis-text-content {
        text-align: center;
        width: 100%;
    }
    
    .azure-main-title,
    .bulut-main-title,
    .ofis-main-title {
        font-size: 18px;
        line-height: 1.3;
        text-align: center;
        margin: 0 0 8px;
    }
    
    .azure-subtitle,
    .bulut-subtitle,
    .ofis-subtitle {
        font-size: 12px;
        text-align: center;
    }
    
    .feature-column {
        padding: 30px 20px;
    }
    
    .bulut-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ofis-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bulut-feature-box,
    .ofis-feature-box {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .form-sidebar {
        padding: 0;
    }
    
    .form-header-orange {
        padding: 18px 15px;
    }
    
    .form-header-orange h2 {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-field input,
    .form-field select {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .btn-gonder {
        padding: 14px 25px;
        font-size: 13px;
    }
}

/* Azure Detail Section - Lower Section */
.azure-detail-section {
    position: relative;
    background: linear-gradient(180deg, #e3f2fd 0%, #e8f4f8 50%, #ffffff 100%);
    padding: 80px 40px;
    overflow: visible !important;
    width: 100%;
    margin: 0;
    height: auto !important;
    max-height: none !important;
}

.azure-detail-section .azure-detail-container,
.azure-detail-section .floor-plan-content,
.azure-detail-section .floor-plan-layout,
.azure-detail-section .floor-plan-diagram,
.azure-detail-section .plans-gallery,
.azure-detail-section .features-content,
.azure-detail-section .features-columns {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}


.azure-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 40px;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

@media (max-width: 768px) {
    .azure-detail-container {
        padding: 0 20px;
    }
    
    .interior-images {
        padding: 0 20px;
    }
    
    .plans-gallery {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .azure-detail-container {
        padding: 0 15px;
    }
    
    .interior-images {
        padding: 0 15px;
    }
    
    .plans-gallery {
        padding: 0 15px;
    }
}


.azure-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.azure-resort-logo {
    max-width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.azure-header-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.vertical-line {
    width: 3px;
    height: 70px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--orange-accent) 100%);
    flex-shrink: 0;
    border-radius: 2px;
}

.azure-text-content {
    flex: 1;
}

.azure-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 8px;
    margin-bottom: 15px;
    line-height: 0.2;
    letter-spacing: -0.3px;
}

.azure-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Azure Hero Slider */
.azure-hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    margin-bottom: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.azure-hero-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.azure-hero-slider .slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.azure-hero-slider .slide.active {
    display: block;
}

.azure-hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slider-nav-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.5);
}

.slider-nav-btn.prev {
    left: 20px;
}

.slider-nav-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Wave Graphic Element */
.wave-graphic {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(179, 229, 252, 0.2) 100%);
    border-radius: 50% 50% 0 0;
    transform: rotate(-45deg) translate(-30%, 30%);
    z-index: 1;
    pointer-events: none;
}

.wave-graphic::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(179, 229, 252, 0.1) 100%);
    border-radius: 50%;
    top: -10%;
    left: -10%;
}

/* Features Content Section */
.features-content {
    margin-top: 80px;
}

.features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
}

.feature-column {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-column:hover::before {
    transform: scaleX(1);
}

.feature-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.08);
}

.feature-column h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 35px;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-blue);
    padding-bottom: 20px;
    letter-spacing: -0.3px;
    position: relative;
}

.feature-column h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange-accent);
}

.feature-column p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 22px;
}

.feature-column p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.apartment-types {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.apt-type {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--primary-blue);
}

.apt-type i {
    font-size: 20px;
}

.site-plan {
    text-align: center;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    margin-top: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.08);
}

.site-plan img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.site-plan:hover img {
    transform: scale(1.02);
}

/* Floor Plan Content - Now inside azure-detail-section */
.floor-plan-content {
    margin-top: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    height: auto;
    max-height: none;
}


.interior-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 0 40px;
}

.interior-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.interior-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interior-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.1);
}

.interior-image:hover::after {
    opacity: 1;
}

.interior-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floor-plan-content h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.floor-plan-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    height: auto;
    max-height: none;
}

.exterior-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.exterior-image:hover {
    transform: scale(1.02);
}

.exterior-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.plan-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6fa5 100%);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(26, 77, 122, 0.3);
}

.plan-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-header p {
    font-size: 14px;
    opacity: 0.9;
}

.plan-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.area-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.area-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.area-item span {
    color: var(--text-gray);
}

.area-item strong {
    color: var(--primary-blue);
}

.room-list {
    margin-bottom: 25px;
}

.room-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    padding-left: 10px;
    position: relative;
}

.room-item::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-item:hover {
    color: var(--primary-blue);
    padding-left: 20px;
    font-weight: 500;
}

.room-item:hover::before {
    opacity: 1;
}

.room-item:last-child {
    border-bottom: none;
}

.floor-plan-diagram {
    position: relative;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    height: auto;
    max-height: none;
}

.plans-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.plans-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange-accent));
    border-radius: 2px;
}

.plans-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    overflow: visible;
    height: auto;
    max-height: none;
}

.plan-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.plan-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 16px;
}

.plan-item:hover::before {
    opacity: 1;
}

.plan-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.plan-image-wrapper {
    width: 100%;
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.plan-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.plan-item:hover img {
    transform: scale(1.08);
}

.plan-number {
    padding: 15px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6fa5 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.plan-item:hover .plan-number {
    background: linear-gradient(135deg, var(--orange-accent) 0%, #ff8533 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Plan Modal */
.plan-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.plan-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
}

.plan-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.plan-modal-image-wrapper {
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 95%;
    max-height: 85vh;
}

.plan-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.plan-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 77, 122, 0.9);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.plan-modal-nav.plan-modal-prev {
    left: -70px;
}

.plan-modal-nav.plan-modal-next {
    right: -70px;
}

.plan-modal-nav:hover {
    background: var(--orange-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.plan-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.plan-modal-close:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: rotate(90deg);
    color: var(--white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-detail-info {
    display: block;
    text-align: center;
    padding: 18px 60px;
    background: linear-gradient(135deg, var(--orange-accent) 0%, #ff8c5a 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 50px auto 0;
    max-width: 320px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-detail-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-detail-info:hover::before {
    left: 100%;
}

.btn-detail-info:hover {
    background: linear-gradient(135deg, #ff8c5a 0%, var(--orange-accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Project Detail Sections (Bulut & Ofis) */
.project-detail-section {
    padding: 100px 40px;
    width: 100%;
    margin: 0;
}

/* MB Bulut Evleri - Koyu Mavi Tema (Logo Rengine Göre) */
#bulut-detail {
    background: linear-gradient(180deg, #e8eaf6 0%, #e3e5f1 50%, #ffffff 100%);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* MB 34 Ofis - Bej/Krem Tema (Logo Rengine Göre) */
#ofis-detail {
    background: linear-gradient(180deg, #faf8f3 0%, #f5f3ed 50%, #ffffff 100%);
}

.detail-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .detail-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .detail-container {
        padding: 0 15px;
    }
}


.detail-section-title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 70px;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 25px;
}

.detail-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange-accent));
    border-radius: 2px;
}

/* MB Bulut Evleri Detail Section */
.bulut-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 0;
    border-bottom: none;
}

.bulut-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    width: 100%;
}

.bulut-logo {
    max-width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.15));
    flex-shrink: 0;
}

.bulut-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.bulut-hero-image {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.bulut-hero-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.15);
}

.bulut-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.bulut-bottom-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.bulut-bottom-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12), 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    background: var(--white);
}

.bulut-bottom-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.2), 0 6px 15px rgba(0,0,0,0.12);
}

.bulut-bottom-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bulut-bottom-image:hover img {
    transform: scale(1.03);
}

.bulut-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 70px;
    padding: 0;
}

.bulut-features-grid .bulut-feature-box:last-child {
    grid-column: span 1;
}

.bulut-feature-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bulut-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bulut-feature-box:hover::before {
    transform: scaleX(1);
}

.bulut-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.08);
}

.bulut-feature-box h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.bulut-feature-box p {
    color: var(--text-gray);
    line-height: 2;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* MB 34 Ofis Detail Section */
.ofis-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 0;
    border-bottom: none;
}

.ofis-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    width: 100%;
}

.ofis-logo {
    max-width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.15));
    flex-shrink: 0;
}

.ofis-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.ofis-hero-image {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.ofis-hero-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.15);
}

.ofis-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ofis-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 70px;
    padding: 0;
}

.ofis-feature-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.ofis-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-blue) 50%, var(--orange-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 18px 18px 0 0;
}

.ofis-feature-box:hover::before {
    transform: scaleX(1);
}

.ofis-feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.ofis-feature-box h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.ofis-feature-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ofis-feature-box ul li {
    color: var(--text-gray);
    line-height: 2;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.ofis-feature-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.ofis-bottom-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.ofis-bottom-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12), 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    background: var(--white);
}

.ofis-bottom-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.2), 0 6px 15px rgba(0,0,0,0.12);
}

.ofis-bottom-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ofis-bottom-image:hover img {
    transform: scale(1.03);
}

.bulut-gallery,
.ofis-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.floor-plan-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floor-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--orange-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.floor-plan-card:hover::before {
    transform: scaleX(1);
}

.floor-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.08);
}

.floor-plan-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.floor-plan-card ul {
    list-style: none;
}

.floor-plan-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-gray);
    font-size: 14px;
}

.floor-plan-card ul li:last-child {
    border-bottom: none;
}

/* Footer - New Design */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 40px 50px;
    width: 100%;
    margin: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    border-top: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.footer-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-end;
}

/* Footer Left Wrapper */
.footer-left-wrapper {
    flex: 0 0 auto;
    min-width: 200px;
    display: flex;
    align-items: flex-end;
}

/* Footer Left - Logo Section */
.footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 5px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.2px;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}

.footer-since {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Footer Right Wrapper */
.footer-right-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

/* Footer Right - Content */
.footer-right {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}


.footer-section h3 {
    color: var(--orange-accent);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: flex-start;
}

.footer-section p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    width: 100%;
}

.footer-section .footer-address {
    min-height: 107px;
}

.footer-section .footer-phone {
    min-height: 28px;
}

.footer-section .footer-email {
    min-height: 28px;
}

.footer-section p i {
    color: var(--orange-accent);
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    min-width: 20px;
    font-size: 16px;
    text-align: left;
}

.footer-section p > *:not(i) {
    flex: 1;
    word-wrap: break-word;
}

.footer-address {
    color: #666;
}

.footer-phone a,
.footer-email a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: var(--orange-accent);
    text-decoration: underline;
}



/* Footer Social Icons */
.footer-social-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-whatsapp-icon {
    background: #25D366;
    color: var(--white) !important;
}

.footer-whatsapp-icon:hover {
    background: #1ea855;
    color: var(--white) !important;
}

.footer-instagram-icon {
    background: #833AB4;
    color: var(--white) !important;
}

.footer-instagram-icon:hover {
    background: #6a2d8f;
    color: var(--white) !important;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(220, 53, 69, 0.9);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #b02a37;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .footer-left-wrapper {
        width: 100%;
    }
    
    .footer-left {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .footer-right-wrapper {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-social-bottom {
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer {
        padding: 40px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 15px;
    }
    
    .footer-section p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-right {
        margin-left: auto;
    }
    
    .project-logo-img {
        max-width: 150px;
    }
    
    .project-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .project-inner {
        padding: 40px 20px;
    }
    
    .azure-detail-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .azure-resort-logo {
        max-width: 180px;
    }
    
    .azure-main-title {
        font-size: 26px;
    }
    
    .azure-subtitle {
        font-size: 14px;
    }
    
    .azure-hero-slider {
        margin-bottom: 40px;
    }
    
    .slider-wrapper {
        height: 400px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-nav-btn.prev {
        left: 10px;
    }
    
    .slider-nav-btn.next {
        right: 10px;
    }
    
    .wave-graphic {
        width: 400px;
        height: 400px;
    }
    
    
    .features-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floor-plan-diagram {
        padding: 25px;
    }
    
    .plans-section-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .plans-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .plan-image-wrapper {
        height: 180px;
        padding: 15px;
    }
    
    .plan-number {
        padding: 12px;
        font-size: 13px;
    }
    
    .plan-modal-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .plan-modal-image-wrapper {
        padding: 20px;
        max-width: 98%;
    }
    
    .plan-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .plan-modal-nav.plan-modal-prev {
        left: -50px;
    }
    
    .plan-modal-nav.plan-modal-next {
        right: -50px;
    }
    
    .plan-modal-close {
        top: -50px;
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
    
    @media (max-width: 480px) {
        .plans-gallery {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .plan-image-wrapper {
            height: 200px;
        }
        
        .plan-modal-title {
            font-size: 18px;
        }
        
        .plan-modal-image-wrapper {
            padding: 15px;
        }
        
        .plan-modal-nav {
            width: 35px;
            height: 35px;
            font-size: 18px;
        }
        
        .plan-modal-nav.plan-modal-prev {
            left: -40px;
        }
        
    .plan-modal-nav.plan-modal-next {
        right: -40px;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(26, 77, 122, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
    border-top: 3px solid var(--orange-accent);
}

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.cookie-consent-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-consent-close:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: rotate(90deg);
}

.cookie-consent-body {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.cookie-consent-body p {
    margin: 0 0 15px 0;
}

.cookie-settings {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-setting-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: var(--white);
    font-size: 16px;
}

.cookie-setting-item label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--orange-accent);
}

.cookie-setting-item label span {
    font-weight: 600;
}

.cookie-setting-item p {
    margin: 0;
    padding-left: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.cookie-consent-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: var(--orange-accent);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cookie-btn-save {
    background: var(--orange-accent);
    color: var(--white);
}

.cookie-btn-save:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Cookie Consent Mobile */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px 20px;
    }
    
    .cookie-consent-header h3 {
        font-size: 20px;
    }
    
    .cookie-consent-body {
        font-size: 14px;
    }
    
    .cookie-consent-footer {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .cookie-settings {
        padding: 15px;
        gap: 15px;
    }
    
    .cookie-setting-item label {
        font-size: 14px;
    }
    
    .cookie-setting-item p {
        font-size: 12px;
        padding-left: 28px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px 15px;
    }
    
    .cookie-consent-header h3 {
        font-size: 18px;
    }
    
    .cookie-consent-body {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
    
    .floor-plan-layout {
        grid-template-columns: 1fr;
    }
    
    .interior-images {
        grid-template-columns: 1fr;
    }
    
    .bulut-detail-header {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px;
        padding-bottom: 25px;
    }
    
    .bulut-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .bulut-logo {
        max-width: 180px;
    }
    
    .bulut-main-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .bulut-hero-image {
        margin-bottom: 40px;
        border-radius: 16px;
    }
    
    .bulut-bottom-images {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .bulut-bottom-image {
        border-radius: 16px;
    }
    
    .bulut-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .bulut-features-grid .bulut-feature-box:last-child {
        grid-column: span 1;
    }
    
    @media (max-width: 768px) {
        .bulut-features-grid {
            grid-template-columns: 1fr;
        }
        
        .bulut-features-grid .bulut-feature-box:last-child {
            grid-column: span 1;
        }
    }
    
    .bulut-feature-box {
        padding: 30px 25px;
        min-height: 160px;
    }
    
    .bulut-feature-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .bulut-feature-box p {
        font-size: 13px;
    }
    
    @media (max-width: 480px) {
        .bulut-features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .bulut-feature-box {
            padding: 25px 20px;
            min-height: auto;
        }
    }
    
    .bulut-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    @media (max-width: 768px) {
        .bulut-features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 480px) {
        .bulut-features-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .ofis-detail-header {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .ofis-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .ofis-logo {
        max-width: 180px;
    }
    
    .ofis-main-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .ofis-hero-image {
        margin-bottom: 40px;
        border-radius: 16px;
    }
    
    .ofis-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .ofis-feature-box {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .ofis-feature-box h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .ofis-feature-box ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .ofis-bottom-images {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .ofis-bottom-image {
        border-radius: 16px;
    }
    
    @media (max-width: 480px) {
        .ofis-features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .ofis-feature-box {
            padding: 25px 20px;
        }
    }
    
    .bulut-gallery,
    .ofis-gallery,
    .floor-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .footer-left-wrapper {
        width: 100%;
    }
    
    .footer-section h3 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .footer-section p {
        font-size: 14px;
        margin-bottom: 14px;
    }
}

/* Mobile Styles for Bulut Evleri and Footer */
@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 35px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer-container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0;
        margin: 0;
    }
    
    .footer-wrapper {
        flex-direction: column;
        gap: 35px;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-left-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-left {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-right-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-right {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .footer-section h3 {
        font-size: 17px;
        min-height: auto;
        margin-bottom: 18px;
        word-wrap: break-word;
    }
    
    .footer-section p {
        font-size: 14px;
        margin-bottom: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-section .footer-address {
        min-height: auto;
    }
    
    .footer-section .footer-phone {
        min-height: auto;
    }
    
    .footer-section .footer-email {
        min-height: auto;
    }
    
    .footer-logo {
        height: 60px;
        max-width: 100%;
    }
    
    .footer-logo-text {
        font-size: 18px;
        word-wrap: break-word;
    }
    
    .footer-since {
        font-size: 15px;
    }
    
    .footer-social-icons {
        width: 100%;
    }
    
    .footer-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    #bulut-detail,
    #ofis-detail {
        padding: 60px 20px !important;
        min-height: auto !important;
    }
    
    .bulut-detail-header,
    .ofis-detail-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .bulut-header-content,
    .ofis-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .bulut-logo,
    .ofis-logo {
        max-width: 180px;
    }
    
    .bulut-main-title,
    .ofis-main-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .bulut-hero-image,
    .ofis-hero-image {
        margin-bottom: 40px;
        border-radius: 16px;
    }
    
    .bulut-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .ofis-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .bulut-feature-box,
    .ofis-feature-box {
        padding: 25px 20px;
    }
    
    .bulut-bottom-images {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .ofis-bottom-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .footer {
        padding: 40px 15px 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box;
    }
    
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-left-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }
    
    .footer-left {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }
    
    .footer-right-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }
    
    .footer-right {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .footer-section {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .footer-section h3 {
        font-size: 16px;
        min-height: auto;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-section p {
        font-size: 13px;
        margin-bottom: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .footer-section p i {
        flex-shrink: 0;
    }
    
    .footer-section .footer-address {
        min-height: auto;
    }
    
    .footer-section .footer-phone {
        min-height: auto;
    }
    
    .footer-section .footer-email {
        min-height: auto;
    }
    
    .footer-logo {
        height: 55px;
        max-width: 100%;
        width: auto;
    }
    
    .footer-logo-text {
        font-size: 17px;
        word-wrap: break-word;
        width: 100%;
    }
    
    .footer-since {
        font-size: 14px;
        width: 100%;
    }
    
    .footer-social-icons {
        width: 100%;
    }
    
    .footer-social-icons a {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    #bulut-detail,
    #ofis-detail {
        padding: 40px 15px !important;
    }
    
    .bulut-detail-header,
    .ofis-detail-header {
        margin-bottom: 30px;
    }
    
    .bulut-logo,
    .ofis-logo {
        max-width: 150px;
    }
    
    .bulut-main-title,
    .ofis-main-title {
        font-size: 20px;
    }
    
    .bulut-hero-image,
    .ofis-hero-image {
        margin-bottom: 30px;
        border-radius: 12px;
    }
    
    .bulut-features-grid,
    .ofis-features-grid {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .bulut-feature-box,
    .ofis-feature-box {
        padding: 20px 15px;
    }
    
    .bulut-feature-box h3,
    .ofis-feature-box h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .bulut-feature-box p,
    .ofis-feature-box ul {
        font-size: 12px;
    }
    
    .bulut-bottom-images,
    .ofis-bottom-images {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .footer {
        padding: 40px 15px 15px !important;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 15px;
    }
    
    .footer-section p {
        font-size: 12px;
    }
    
    .btn-detail-info {
        padding: 14px 40px;
        font-size: 13px;
        max-width: 280px;
    }
}
