/* Project Detail Page CSS - assets/css/project.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: #333;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Prevent flash of unstyled content */
html {
    visibility: hidden;
    opacity: 0;
}

html.loaded {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Header Styles */
.header {
    background-color: #f5f5f5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: center;
}

.header-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #901530;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #901530;
}

.main-nav a.active {
    color: #901530;
    font-weight: 400;
}

.header-btn {
    background-color: #901530;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.header-btn:hover {
    background-color: #242424;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(144, 21, 48, 0.3);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: -15px;
    z-index: 1;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #901530;
    transition: width 0.3s ease;
}

.dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown-toggle:hover {
    color: #901530;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: #F5F5F5;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 15px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    margin-bottom: 15px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.dropdown-section a {
    display: block;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-bottom: 5px;
    position: relative;
    z-index: 10001;
    white-space: nowrap;
}

.dropdown-section a:hover {
    color: #901530;
    background-color: #EEEEEE;
    transform: translateX(5px);
}

/* =====================================================
   HAMBURGER MENU - LANDING.CSS'DEN KOPYALANAN TASARIM
   ===================================================== */

/* Hamburger Menu - Ana sayfayla birebir aynı */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu - Ana sayfayla birebir aynı */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

/* Mobile Menu Section Yapısı - header.php uyumlu */
.mobile-menu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-menu-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    border-bottom: 2px solid #901530;
    padding-bottom: 5px;
    font-family: 'Jost', sans-serif;
    transition: color 0.3s ease;
}

.mobile-menu-title:hover {
    color: #901530;
}

.mobile-menu-sub {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 15px;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
}

.mobile-menu-sub:hover {
    background-color: #f0f0f0;
    color: #901530;
}

.mobile-menu-btn {
    margin-top: 20px;
    padding: 15px 25px;
    background: #901530;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #242424;
    transform: translateY(-2px);
}

/* Overlay - Ana sayfayla birebir aynı */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Sub Navigation */
.sub-nav {
    background-color: white;
    padding: 50px 0;
}

.sub-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.sub-nav-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.sub-nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 1px;
    font-family: 'Jost', sans-serif;
    transition: color 0.3s ease;
}

.sub-nav-menu a:hover {
    color: #901530;
}

.sub-nav-menu a.active {
    color: #901530;
    font-weight: 400;
}

.sub-nav-separator {
    color: #ccc;
    font-size: 28px;
    font-weight: 500;
}

/* Main Content Section */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    min-height: 250px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    margin-right: 10px;
    min-height: 300px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.limited-badge {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 3;
}

.limited-badge img {
    width: 180px;
    height: auto;
}

.limited-badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
    line-height: 1;
}

/* Form Section */
.form-section {
    background-color: #eeeeee;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    margin-left: 10px;
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-subtitle {
    color: #901530;
    font-size: 22px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Jost', sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #901530;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.simple-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    border-radius: 50%;
    appearance: none;
    border: 2px solid #ddd;
    background-color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.simple-checkbox:checked {
    background-color: #901530;
    border-color: #901530;
}

.simple-checkbox:checked::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    margin: 4px auto;
}

.checkbox-label {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.submit-btn {
    background-color: #901530;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #242424;
}

/* Bottom Section */
.bottom-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin: 20px auto 0;
    max-width: 1400px;
    padding: 0 40px;
}

/* Info Buttons Grid */
.info-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-right: 10px;
}

.info-button {
    background-color: #eeeeee;
    border: none;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-button:hover {
    background-color: #e0e0e0;
}

.info-button-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.call-btn {
    background-color: #ff6c00;
    color: white;
    padding: 25px 30px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-left: 10px;
}

.call-btn:hover {
    background-color: #e55a00;
}

/* WhatsApp Section */
.mobile-whatsapp {
    max-width: 1400px;
    margin: 15px auto 0;
    padding: 0 40px;
}

.project-whatsapp-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
    margin-right: 10px;
}

.project-whatsapp-container img {
    width: 300px;
    height: auto;
}

/* Blue Banner */
.mobile-blue-banner {
    position: relative;
    margin-top: 30px;
    background: url('../img/mavi.png') center/cover no-repeat;
    width: 100%;
    height: 150px;
    overflow: visible;
}

.mobile-woman {
    position: absolute;
    left: 550px;
    top: -70px;
    z-index: 2;
}

.mobile-woman img {
    height: 220px;
    width: auto;
}

.mobile-text {
    position: absolute;
    left: 770px;
    top: 25%;
    transform: translateY(-50%);
    color: white;
    text-align: center;
    z-index: 3;
}

.help-text {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.2;
}

.phone-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
}

/* Bottom Text */
.bottom-text {
    text-align: center;
    padding: 40px 20px;
    color: #901530;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

/* Project Details */
.project-details {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.project-name {
    color: #901530;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.project-description {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.distance-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.distance-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.city, .place {
    color: #333;
    font-weight: 500;
}

.time, .distance {
    color: #666;
}

.project-image {
    text-align: center;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Additional Content */
.additional-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.additional-text {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* Map Section */
.map-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.map-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.map-area img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.distance-box {
    background-color: #eae9e4;
    border-radius: 15px;
    padding: 30px;
}

.distance-box .distance-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Project Features Section */
.project-features-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.features-title {
    color: #901530;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: left;
}

.features-box {
    background-color: #e8ebee;
    border-radius: 15px;
    padding: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.feature-number {
    color: #666;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}

.feature-text {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

/* Villa and Apartment Section */
.villa-apartment-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.villa-apartment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.section-title {
    color: #901530;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
}

.section-description {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

/* Nearby Routes Section */
.nearby-routes-section {
    max-width: 1400px;
    margin: 40px auto 100px;
    padding: 0 40px;
}

.routes-title {
    color: #901530;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: left;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.route-item {
    text-align: center;
}

.route-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.route-name {
    color: #901530;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

/* Green Section */
.green-section {
    position: relative;
    margin-top: 200px;
}

.gray-background {
    background-color: #e6e6e6;
    height: 400px;
    width: 100%;
}

.green-box {
    background-color: #92ae2d;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 30px 15px 30px;
    border-radius: 20px;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.green-header {
    margin-bottom: 25px;
}

.green-title {
    color: white;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: left;
}

.green-description {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.green-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 10px;
}

.green-column {
    text-align: left;
}

.column-title {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.column-image {
    width: 100%;
    height: auto;
}

.green-bottom {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #e6e6e6;
}

.bottom-description {
    color: #92ae2d;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.form-button {
    background-color: white;
    color: #1b1b1b;
    border: 2px solid #92ae2d;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.form-button:hover {
    background-color: #92ae2d;
    color: white;
}

/* Address Section */
.address-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.address-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.address-item {
    text-align: center;
}

.address-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.address-header svg {
    margin-right: 15px;
    width: 28px;
    height: 28px;
}

.address-title {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.address-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #242424;
    padding: 60px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-column {
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-address {
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.footer-phone {
    color: white;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-text {
    color: white;
    font-size: 16px;
}

.social-media {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.phone-btn {
    background: #007bff;
    animation-delay: 0s;
    position: relative;
}

.phone-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.whatsapp-btn {
    background: #25d366;
    animation-delay: 0.5s;
    position: relative;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.891 3.426'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive - EN ÖNEMLİ KISIM */
@media (max-width: 768px) {
    /* Hamburger'ı göster */
    .hamburger {
        display: flex;
    }
    
    /* Header menülerini gizle */
    .header .main-nav {
        display: none;
    }
    
    .header-right {
        justify-content: center;
    }

    .header-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
        justify-items: center;
    }

    .header-left {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .logo-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-section a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo {
        display: block;
        margin: 0 auto;
    }

    .header-btn {
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .dropdown-menu {
        left: -50px;
        min-width: 200px;
    }

    .sub-nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 20px;
        justify-content: center;
    }

    .sub-nav-menu a {
        font-size: 18px;
    }

    .sub-nav-separator {
        display: none;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 200px;
    }

    .hero-section {
        margin-right: 0;
    }

    .form-section {
        margin-left: 0;
        padding: 30px 20px;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .info-buttons {
        margin-right: 0;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
    }

    .info-button {
        padding: 15px 10px;
    }

    .info-button-text {
        font-size: 12px;
    }

    .call-btn {
        margin-left: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .limited-badge {
        top: 15px;
        left: 0;
    }

    .limited-badge img {
        width: 150px;
    }

    .limited-badge-text {
        font-size: 12px;
    }

    .mobile-whatsapp {
        position: static;
        text-align: center;
        padding: 0 20px;
        margin-top: 20px;
    }

    .project-whatsapp-container {
        position: static;
        text-align: center;
        padding-right: 0;
        justify-content: center;
        margin-right: 0;
    }

    .project-whatsapp-container img {
        width: 150px;
    }

    .mobile-blue-banner {
        height: 120px;
        margin-top: 20px;
        position: relative;
    }

    .mobile-woman {
        right: 10px;
        top: -30px;
        left: auto;
        transform: none;
    }

    .mobile-woman img {
        height: 140px;
    }

    .mobile-text {
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .help-text {
        font-size: 16px;
    }

    .phone-text {
        font-size: 20px;
    }

    .project-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .distance-lists {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-name {
        font-size: 24px;
        text-align: center;
    }

    .project-description {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .villa-apartment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .routes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .green-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .green-box {
        padding: 20px 20px 10px 20px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
        position: relative;
        top: -60px;
        transform: translateX(0);
        left: auto;
    }

    .gray-background {
        height: 300px;
    }

    .green-bottom {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .addresses-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .floating-buttons {
        left: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .phone-btn::after,
    .whatsapp-btn::after {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        gap: 15px;
    }

    .header-left {
        gap: 15px;
    }

    .sub-nav-menu a {
        font-size: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .project-name {
        font-size: 20px;
    }

    .project-description {
        font-size: 14px;
    }

    .bottom-text {
        font-size: 14px;
        padding: 20px 15px;
    }

    .distance-box {
        padding: 20px;
    }

    .additional-text {
        font-size: 14px;
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .routes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .addresses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .green-box {
        padding: 20px 20px 8px 20px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }

    .green-columns {
        margin-bottom: 5px;
    }

    .features-title,
    .routes-title {
        font-size: 24px;
        text-align: center;
    }

    .section-title {
        font-size: 20px;
        text-align: center;
    }

    .mobile-text {
        left: 30%;
    }

    .help-text {
        font-size: 14px;
    }

    .phone-text {
        font-size: 18px;
    }

    .whatsapp-container img {
        width: 180px;
    }
}