/* ===== CSS VARIABLES - TEMA SİSTEMİ ===== */
:root {
    /* Header Renkleri - Firebase'den yüklenecek */
    --header-bg-color: #1c2b4a;
    --header-text-color: #ffffff;
    --header-hover-color: #97D2AD;
    
    /* Ana Sayfa Renkleri */
    --main-bg-color: #F3F6F9;
    --heading-color: #0F2947;
    --text-color: #6B7A8C;
    
    /* Buton Renkleri */
    --primary-btn-color: #97D2AD;
    --primary-btn-hover-color: #7bb89a;
    --secondary-btn-color: #6B7A8C;
    
    /* Footer Renkleri */
    --footer-bg-color: #112A4C;
    --footer-text-color: #ffffff;
    --footer-link-hover-color: #97D2AD;
    
    /* Kart ve Vurgu Renkleri */
    --card-bg-color: #FFFFFF;
    --accent-color: #86B98A;
    --price-color: #A7D4B7;
    
    /* İkon Renkleri */
    --icon-color: #6B7A8C;
    --social-hover-color: #97D2AD;
}

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal overflow on all elements */
*, *::before, *::after {
    max-width: 100%;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0f172a;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content should expand to push footer to bottom */
main, .main-content, section:first-of-type {
    flex: 1 0 auto;
}

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

/* Lazy loading için resim stilleri */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Placeholder için blur efekti */
img[loading="lazy"]:not(.loaded) {
    filter: blur(5px);
    transform: scale(1.1);
}

/* Picture element için stil */
picture {
    display: block;
    width: 100%;
}

picture img {
    width: 100%;
    height: auto;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

select {
    font-family: inherit;
}

/* ===== CONTAINER & UTILITIES ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile Container */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
}


/* ===== HERO STYLES ===== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/ana-resim.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease, background-image 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 23, 41, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding-top: 40px;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 32px;
}

.hero-logo-image {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    object-fit: contain;
}

/* Hero Title */
.hero-title {
    font-size: clamp(21.33px, 3.33vw, 37.33px);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    line-height: 1.1;
}

/* Hero Description */
.hero-description {
    font-size: clamp(10.67px, 1.33vw, 12px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* ===== SEARCH MODULE ===== */
.search-module {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-container {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 8px;
    align-items: center;
    backdrop-filter: blur(10px);
}

.search-field {
    position: relative;
}

.search-select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

.search-select:focus {
    outline: none;
    border-color: #97D2AD;
    box-shadow: 0 0 0 3px rgba(151, 210, 173, 0.1);
}

.search-select:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

.search-button {
    background-color: #b0c151;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.search-button:hover {
    background-color: #8ba152;
    transform: translateY(-1px);
}

.search-button:hover .location-icon {
    transform: scale(1.3);
}

.search-button:active {
    transform: translateY(0);
}

.location-icon {
    width: 30px;
    height: 25px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Header styles are now included from header.html */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    .container {
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    
    /* Process Section Tablet */
    .process-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 40px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .process-watermark {
        width: 250px;
        height: 250px;
        bottom: -40px;
        right: -40px;
    }
    
    /* Properties Section Tablet */
    .properties-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .properties-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-bottom: 32px;
        max-width: 950px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .properties-actions {
        order: -1;
        gap: 12px;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        justify-items: center;
        max-width: 950px;
        margin: 0 auto;
    }
    
    .property-card {
        width: 315px;
        height: 236px;
    }
    
    .property-wrapper {
        width: 315px;
    }
    
    .property-image {
        height: 236px;
    }
    
    /* Testimonials Section Tablet */
    .testimonials-section {
        padding: 52px 0;
    }
    
    .testimonials-header {
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        position: relative;
    }
    
    .testimonial-header-icon {
        width: 27px;
        height: 27px;
        object-fit: contain;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonials-slider-container {
        margin-bottom: 20px;
        overflow: hidden !important;
        width: 100%;
    }
    
    .testimonials-slider-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .testimonials-slider-container::-webkit-scrollbar-track {
        background: rgba(151, 210, 173, 0.1);
        border-radius: 3px;
    }
    
    .testimonials-slider-container::-webkit-scrollbar-thumb {
        background: #97D2AD;
        border-radius: 3px;
    }
    
    .testimonials-slider-container::-webkit-scrollbar-thumb:hover {
        background: #7bb89a;
    }
    
    .testimonials-slider {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        padding: 0 20px 16px 20px !important;
        transition: transform 0.3s ease !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        max-width: none !important;
        width: max-content !important;
        margin: 0 !important;
    }
    
    .testimonial-card {
        width: 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
        height: 380px !important;
        min-height: 380px !important;
        padding: 20px 16px !important;
        margin: 0 !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .customer-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 14px;
    }
    
    .play-button {
        width: 32px;
        height: 32px;
    }
    
    .play-icon {
        width: 14px;
        height: 14px;
    }
    
    .customer-name {
        font-size: 15px;
    }
    
    .customer-job {
        font-size: 12px;
    }
    
    .testimonials-navigation {
        gap: 16px;
        margin-top: 16px;
    }
    
    .slider-arrow {
        width: 42px;
        height: 42px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    /* FAQ Section Tablet */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 32px;
    }
    
    .faq-title {
        font-size: clamp(24px, 4vw, 36px);
    }
    
    .faq-columns {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .faq-tabs {
        gap: 4px;
        margin-bottom: 32px;
    }
    
    .faq-tab {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    /* About Section Tablet */
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-logo {
        justify-content: flex-start;
        margin-bottom: 24px;
    }
    
    .about-img {
        height: 350px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    /* Header styles are now included from header.html */
    
    /* Hero Mobile */
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-logo-image {
        width: 120px;
        height: 120px;
    }
    
    /* Search Module Mobile */
    .search-module {
        padding: 0 14px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .search-container {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
        max-width: 100%;
        width: 320px;
        border-radius: 25px;
    }
    
    .search-select {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .search-button {
        grid-column: 1;
        justify-self: stretch;
        margin-top: 6px;
        padding: 12px 20px;
        font-size: 14px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        flex-direction: row !important;
    }
    
    .search-button span,
    .search-button picture,
    .search-button img {
        display: inline-block !important;
        vertical-align: middle !important;
    }
    
    .search-button picture {
        width: 30px !important;
        height: 25px !important;
        display: inline-block !important;
    }
    
    .search-button .location-icon {
        width: 30px !important;
        height: 25px !important;
    }
    
    .hero-description {
        margin-bottom: 32px;
    }
    
    /* Search Module Mobile */
    .search-module {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
    
    .search-container {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
        width: 310px !important;
        height: 280px !important;
        border-radius: 32px;
        min-width: 310px !important;
        min-height: 280px !important;
        max-width: 310px !important;
        max-height: 280px !important;
        box-sizing: border-box !important;
        margin-bottom: 20px;
    }
    
    .search-select {
        padding: 18px 20px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .search-button {
        padding: 18px 32px;
        justify-content: center !important;
        font-size: 16px;
        display: flex !important;
        align-items: center !important;
        text-align: center !important;
        flex-direction: row !important;
    }
    
    .search-button span,
    .search-button picture,
    .search-button img {
        display: inline-block !important;
        vertical-align: middle !important;
    }
    
    .search-button picture {
        width: 30px !important;
        height: 25px !important;
        display: inline-block !important;
    }
    
    .search-button .location-icon {
        width: 30px !important;
        height: 25px !important;
    }
    
    /* Process Section Mobile 767px */
    .process-section {
        padding: 80px 0 120px;
        min-height: auto;
    }
    
    .process-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 50px;
        text-align: center;
        align-items: center;
    }
    
    .process-left {
        order: 1;
        width: 100%;
    }
    
    .process-right {
        order: 2;
        width: 100%;
    }
    
    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .process-step {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 30px 20px;
        background: transparent;
        border-radius: 0;
        border: none;
    }
    
    .process-title {
        font-size: 26px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: clamp(24px, 8vw, 40px);
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .search-module {
        padding: 0 12px;
        margin-bottom: 20px;
    }
    
    .search-container {
        padding: 12px;
        width: 280px;
        height: auto;
    }
    
    .search-select {
        padding: 16px 18px;
    }
    
    .search-button {
        padding: 16px 24px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        flex-direction: row !important;
    }
    
    .search-button span,
    .search-button picture,
    .search-button img {
        display: inline-block !important;
        vertical-align: middle !important;
    }
    
    .search-button picture {
        width: 30px !important;
        height: 25px !important;
        display: inline-block !important;
    }
    
    .search-button .location-icon {
        width: 30px !important;
        height: 25px !important;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 100px 0 140px;
        min-height: auto;
    }
    
    .process-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 60px;
        text-align: center;
        align-items: center;
    }
    
    .process-left {
        order: 1;
        width: 100%;
    }
    
    .process-right {
        order: 2;
        width: 100%;
    }
    
    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 50px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .process-step {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        padding: 35px 25px;
        background: transparent;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
    
    .process-watermark {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -30px;
        opacity: 0.2;
    }
    
    .step-icon {
        width: 109px;
        height: 109px;
        margin-bottom: 16px;
    }
    
    .step-svg {
        width: 32px;
        height: 32px;
    }
    
    .step-title {
        font-size: 25px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    /* Properties Section Small Mobile */
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1px;
        max-width: 480px;
        margin: 0 auto;
        justify-items: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .property-card {
        width: 304px;
        height: 228px;
        aspect-ratio: 4/3;
    }
    
    .property-asa-logo {
        aspect-ratio: 4/3;
        object-fit: cover;
    }
    
    .property-wrapper {
        width: 304px;
    }
    
    .property-image {
        height: 228px;
        aspect-ratio: 4/3;
    }
    
    .property-content {
        padding: 14px;
    }
    
    .property-price {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    /* Properties Section Mobile */
    .properties-section {
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Properties Header Mobile Override */
    .properties-header {
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
        margin-bottom: 24px !important;
        max-width: 480px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }
    
    .properties-title-area {
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
    }
    
    .properties-title-area .title-logo {
        flex-shrink: 0 !important;
        width: 40px !important;
        height: 40px !important;
        object-fit: contain !important;
    }
    
    .properties-title {
        white-space: nowrap !important;
        font-size: 20px !important;
    }
    
    .properties-actions {
        order: 2 !important;
        flex-direction: row !important;
        width: 100% !important;
        gap: 8px !important;
        justify-content: center !important;
    }
    
    .btn-secondary,
    .btn-primary {
        width: auto !important;
        max-width: 140px !important;
        white-space: nowrap !important;
        padding: 8px 16px !important;
        flex: 1 !important;
    }
    
    .btn-primary {
        max-width: 140px !important;
    }
    
    .properties-background-logo {
        width: 300px;
        height: 300px;
        left: -50px;
        opacity: 0.05;
        z-index: 0 !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .properties-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-bottom: 24px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .properties-title-area {
        justify-content: center;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }
    
    .properties-title-area .title-logo {
        flex-shrink: 0 !important;
        width: 40px !important;
        height: 40px !important;
        object-fit: contain !important;
    }
    
    .properties-title {
        white-space: nowrap !important;
        font-size: 20px !important;
    }
    
    .properties-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1px;
        max-width: 480px;
        margin: 0 auto;
        justify-items: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .property-card {
        width: 264px;
        height: 198px;
        aspect-ratio: 4/3;
    }
    
    .property-asa-logo {
        aspect-ratio: 4/3;
        object-fit: cover;
    }
    
    .property-wrapper {
        width: 264px;
    }
    
    .property-image {
        height: 198px;
        aspect-ratio: 4/3;
    }
    
    .property-content {
        padding: 14px;
    }
    
    .property-price {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 46px 0;
    }
    
    .testimonials-header {
        margin-bottom: 24px;
    }
    
    .tea-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .testimonials-slider-container {
        margin-bottom: 16px;
        overflow: hidden !important;
        width: 100%;
    }
    
    .testimonials-slider-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .testimonials-slider-container::-webkit-scrollbar-track {
        background: rgba(151, 210, 173, 0.1);
        border-radius: 3px;
    }
    
    .testimonials-slider-container::-webkit-scrollbar-thumb {
        background: #97D2AD;
        border-radius: 3px;
    }
    
    .testimonials-slider-container::-webkit-scrollbar-thumb:hover {
        background: #7bb89a;
    }
    
    .testimonials-slider {
        display: flex !important;
        flex-direction: row !important;
        gap: 16px !important;
        padding: 0 16px 16px 16px !important;
        transition: transform 0.3s ease !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        max-width: none !important;
        width: max-content !important;
        margin: 0 !important;
    }
    
    .testimonial-card {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        height: 320px !important;
        min-height: 320px !important;
        padding: 20px 16px !important;
        margin: 0 !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .customer-photo {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
    
    .play-button {
        width: 28px;
        height: 28px;
    }
    
    .play-icon {
        width: 12px;
        height: 12px;
    }
    
    .customer-name {
        font-size: 14px;
    }
    
    .customer-job {
        font-size: 11px;
    }
    
    .testimonials-navigation {
        gap: 10px;
        margin-top: 16px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-dots {
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .faq-title {
        font-size: clamp(22px, 6vw, 32px);
    }
    
    .faq-tabs {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 24px;
        overflow-x: auto;
        scroll-behavior: smooth;
        white-space: nowrap;
        padding-bottom: 8px;
    }
    
    .faq-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .faq-tabs::-webkit-scrollbar-track {
        background: #f1f3f4;
        border-radius: 2px;
    }
    
    .faq-tabs::-webkit-scrollbar-thumb {
        background: #97D2AD;
        border-radius: 2px;
    }
    
    .faq-tabs::-webkit-scrollbar-thumb:hover {
        background: #7bb89a;
    }
    
    .faq-tab {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
        text-align: center;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .faq-columns {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 14px;
    }
    
    .faq-social {
        margin-top: 40px;
        padding-top: 32px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icons a {
        width: 44px;
        height: 44px;
    }
    
    .social-icons svg {
        width: 18px;
        height: 18px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 50px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 32px;
        text-align: center;
    }
    
    .about-text {
        text-align: left !important;
    }
    
    .about-logo {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
        align-items: flex-start;
        padding-right: 150px;
    }
    
    .about-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .about-title {
        font-size: clamp(18px, 5vw, 24px);
    }
    
    .about-intro {
        font-size: 15px;
    }
    
    .about-img {
        height: 280px;
    }
    
    .read-more-btn {
        justify-content: center;
        font-size: 15px;
    }
}

/* ===== PROCESS SECTION ===== */
.process-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #0d2747 0%, #344e70 100%);
    overflow: hidden;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.process-watermark {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    opacity: 0.2;
}

.watermark-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    min-height: 200px;
}

/* Left Side - Title */
.process-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease-out forwards;
}

.process-title {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.title-main {
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
    font-size: 26px;
}

.title-highlight {
    color: #A2D1AD;
    display: inline-block;
    margin-right: 16px;
    font-size: 26px;
}

.title-arrow {
    color: #A2D1AD;
    font-size: 26px;
    display: inline-block;
    animation: arrowPulse 2s infinite;
}

/* Right Side - Steps */
.process-right {
    display: flex;
    justify-content: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

/* Force flexbox in mobile */
@media (max-width: 767px) {
    .process-steps {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
    }
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-step[data-step="1"] { animation-delay: 0.2s; }
.process-step[data-step="2"] { animation-delay: 0.4s; }
.process-step[data-step="3"] { animation-delay: 0.6s; }
.process-step[data-step="4"] { animation-delay: 0.8s; }

.step-icon {
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Desktop görünümde step icon'ları step title'ların orta hizasında yap */
@media (min-width: 769px) {
    .step-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 20px;
        width: 100%;
    }
    
    .step-icon-img {
        display: block;
        margin: 0 auto;
    }
}

/* Responsive görünümde step icon'ları center yap */
@media (max-width: 768px) {
    .step-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 20px;
        width: 100%;
    }
    
    .step-icon-img {
        display: block;
        margin: 0 auto;
    }
}

.step-icon:hover {
    transform: translateY(-5px);
}

.step-svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
    transition: color 0.3s ease;
}

    .step-icon-img {
        width: 125px;
        height: 125px;
        object-fit: contain;
        transition: all 0.3s ease;
    }

.step-icon:hover .step-svg {
    color: #b0c151;
}

.step-icon:hover .step-icon-img {
    transform: scale(1.1) translateY(-2px);
}

.step-content {
    color: #ffffff;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.step-description {
    font-size: 10.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

/* ===== PROPERTIES SECTION ===== */
.properties-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Mobile Properties Section */
@media (max-width: 767px) {
    .properties-section {
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Properties Background Logo */
.properties-background-logo {
    position: absolute;
    left: -100px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

/* Section Header */
.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s ease-out forwards;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

/* Desktop only - Align with properties grid and add padding */
@media (min-width: 1200px) {
    .properties-header {
        max-width: 1400px;
        padding: 0 70px;
    }
    
    .process-title {
        padding-left: 120px;
    }
}

.properties-title-area {
    display: flex;
    align-items: center;
}

.properties-title {
    font-size: 25px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.properties-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn-secondary {
    padding: 8px 12px;
    background-color: #6c757d;
    color: #ffffff;
    border: 1px solid #6c757d;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary:hover {
    background-color: #97D2AD;
    color: #ffffff;
    border-color: #97D2AD;
    transform: translateY(-1px);
}

.btn-primary {
    padding: 8px 12px;
    background-color: #6c757d;
    color: #ffffff;
    border: 1px solid #6c757d;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #97D2AD;
    color: #ffffff;
    border-color: #97D2AD;
    transform: translateY(-1px);
}

.btn-primary:hover .btn-logo {
    transform: scale(1.3);
}

/* Button Logo */
.btn-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Title Logo */
.title-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 8px;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Force single column on mobile */
@media (max-width: 767px) {
    .properties-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        justify-items: center !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Property Wrapper */
.property-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 325px;
    margin: 0 auto;
}

/* Property Card */
.property-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 325px;
    height: 244px;
    margin: 0 auto;
    position: relative;
}

/* Mobile Property Card */
@media (max-width: 767px) {
    .property-card {
        width: 100%;
        max-width: 325px;
        margin: 0 auto;
        display: block;
    }
}

.property-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-card.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.property-card[data-property="1"] { animation-delay: 0.1s; }
.property-card[data-property="2"] { animation-delay: 0.2s; }
.property-card[data-property="3"] { animation-delay: 0.3s; }
.property-card[data-property="4"] { animation-delay: 0.4s; }
.property-card[data-property="5"] { animation-delay: 0.5s; }
.property-card[data-property="6"] { animation-delay: 0.6s; }

.property-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(151, 210, 173, 0.3);
    z-index: 3;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Property Image */
.property-image {
    position: relative;
    height: 244px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.property-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.property-date {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.property-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-status.sold {
    background-color: #dc3545;
    color: #ffffff;
}

.property-status.available {
    background-color: #28a745;
    color: #ffffff;
}

.property-status.reserved {
    background-color: #ffc107;
    color: #000000;
}

.property-area {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2d2d2d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Property ASA Logo */
.property-asa-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 0;
}



.property-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.property-date {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.property-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-status.sold {
    background-color: #dc3545;
    color: #ffffff;
}

.property-status.available {
    background-color: #28a745;
    color: #ffffff;
}

.property-status.reserved {
    background-color: #ffc107;
    color: #000000;
}

.property-area {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2d2d2d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Property ASA Logo */
.property-asa-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

/* Property Wrapper */
.property-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 327px;
    margin: 0 auto;
}

/* Mobile Property Wrapper */
@media (max-width: 767px) {
    .property-wrapper {
        width: 100%;
        max-width: 327px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Property Content */
.property-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
}

.property-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.property-location {
    color: #97D2AD;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.property-price {
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.property-btn {
    padding: 8px 16px;
    background-color: #b0c151;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.property-btn:hover {
    background-color: #8ba152;
    transform: translateY(-1px);
}

.property-btn .btn-icon {
    width: 14px;
    height: 14px;
}

/* Loading Placeholder */
.loading-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
}

.loading-placeholder p {
    margin: 0;
    opacity: 0.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 65px 0;
    background: linear-gradient(90deg, #97D2AD 0%, #ffffff 100%);
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s ease-out forwards;
    position: relative;
}

.testimonial-header-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.tea-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.testimonials-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #1a1a40;
    margin: 0;
    line-height: 1.2;
}

/* Slider Container */
.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.testimonials-slider {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    padding: 2rem !important;
    transition: transform 0.3s ease !important;
    justify-content: flex-start !important;
    max-width: none !important;
    margin: 0 !important;
    overflow: visible !important;
    width: max-content !important;
    transform: translateX(0);
}

/* Testimonial Card */
.testimonial-card {
    background: white !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    height: auto !important;
    min-height: 300px !important;
    flex: none !important;
    margin: 0 !important;
    opacity: 1 !important;
    transition: transform 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Testimonial Background Image */
.testimonial-bg-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0.1 !important;
    z-index: 1 !important;
}

.testimonial-card.animate {
    animation: zoomIn 0.8s ease-out forwards;
}

.testimonial-card[data-testimonial="1"] { animation-delay: 0.1s; }
.testimonial-card[data-testimonial="2"] { animation-delay: 0.2s; }
.testimonial-card[data-testimonial="3"] { animation-delay: 0.3s; }
.testimonial-card[data-testimonial="4"] { animation-delay: 0.4s; }
.testimonial-card[data-testimonial="5"] { animation-delay: 0.5s; }

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Card Logo */
.card-logo {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-logo {
    width: 60px !important;
    height: auto !important;
    filter: none !important;
    opacity: 1 !important;
}

/* Customer Photo */
.customer-photo {
    position: relative !important;
    z-index: 3 !important;
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto 1rem !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    cursor: pointer !important;
    border: 4px solid #fff !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.photo-bg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: none !important;
}

.photo-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Play Button */
.play-button {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #333 !important;
    transition: none !important;
    animation: none !important;
}

.play-icon {
    width: 24px !important;
    height: 24px !important;
    color: #333 !important;
    margin-left: 0 !important;
}

.testimonial-card:hover .play-button {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-card:hover .photo-bg {
    transform: scale(1.1);
}

/* Customer Info */
.customer-info {
    position: relative !important;
    z-index: 3 !important;
}

.customer-name {
    margin: 0 0 0.5rem !important;
    color: #333 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

.customer-job {
    margin: 0 !important;
    color: #666 !important;
    font-size: 1rem !important;
}

/* Navigation Arrows */
.testimonials-navigation {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 20px !important;
}

.slider-arrow {
    position: static;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    color: #1a1a40;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 26, 64, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1a1a40;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(26, 26, 64, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background-color: #112A4C;
}

/* FAQ Container */
.faq-container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

/* Mobile FAQ Container */
@media (max-width: 767px) {
    .faq-container {
        padding: 16px !important;
        margin: 0 8px !important;
        border-radius: 12px;
        max-width: calc(100vw - 16px);
        box-sizing: border-box;
    }
}

/* Small Mobile FAQ Container */
@media (max-width: 480px) {
    .faq-container {
        padding: 12px !important;
        margin: 0 6px !important;
        border-radius: 12px;
        max-width: calc(100vw - 12px);
        box-sizing: border-box;
    }
}

/* FAQ Header */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s ease-out forwards;
}

.faq-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #1a1a40;
    margin: 0;
    text-align: center;
    flex: 1;
}

.faq-search-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    color: #112A4C;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
}

.faq-search-toggle:hover {
    background-color: transparent;
    color: #1a3a5c;
    transform: scale(1.1);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: #112A4C;
}

.search-icon {
    width: 20px;
    height: 20px;
}

/* Search Container */
.faq-search-container {
    margin-bottom: 30px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
}

.faq-search-container.active {
    opacity: 1;
    max-height: 80px;
}

.faq-search-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    outline: none;
}

.faq-search-input:focus {
    border-color: #2ecc71;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 2px solid #f1f3f4;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding-bottom: 8px;
}

.faq-tabs::-webkit-scrollbar {
    height: 4px;
}

.faq-tabs::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 2px;
}

.faq-tabs::-webkit-scrollbar-thumb {
    background: #97D2AD;
    border-radius: 2px;
}

.faq-tabs::-webkit-scrollbar-thumb:hover {
    background: #7bb89a;
}

.faq-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.faq-tab.active {
    color: #1a1a40;
    font-weight: 700;
    background-color: #f8f9fa;
}

.faq-tab:hover {
    color: #2ecc71;
    background-color: #f8f9fa;
}

/* FAQ Content */
.faq-content {
    position: relative;
}

.faq-tab-content {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.faq-tab-content.active {
    display: block;
}

.faq-columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .faq-columns {
        gap: 12px !important;
    }
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ Items */
.faq-item {
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.faq-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-question {
    width: 100%;
    padding: 20px 0 20px 16px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a40;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-icon {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a40;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: transparent;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 16px;
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

/* Social Media */
.faq-social {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.faq-social p {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a40;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #1a1a40;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #2ecc71;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* About Text */
.about-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease-out forwards;
}

.about-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.about-logo-img {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.about-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #1a1a40;
    margin: 0;
    line-height: 1.3;
}

.about-description {
    color: #333;
}

.about-intro {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.about-full-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.about-full-text.expanded {
    max-height: 400px;
}

.about-full-text p {
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    color: #555;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #97D2AD;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #7bb89a;
    transform: translateX(5px);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .btn-arrow {
    transform: rotate(180deg);
}

/* About Image */
.about-image {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease-out forwards;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 64, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .process-left {
        opacity: 1;
        transform: translateX(0);
        animation: none;
    }
    
    .process-step {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
}

/* Search Button Content Alignment - Force Center */
.search-button span,
.search-button picture,
.search-button img {
    display: inline-block;
    vertical-align: middle;
}

.search-button picture {
    width: 30px !important;
    height: 25px !important;
    display: inline-block !important;
}

.search-button .location-icon {
    width: 30px !important;
    height: 25px !important;
}

.search-button {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
}

/* Focus visible for better accessibility */
.search-select:focus-visible,
.search-button:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid #b0c151;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background-color: rgba(0, 0, 0, 0.7);
    }
    
    .search-select {
        border-color: #000000;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #112A4C;
    color: #ffffff;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.newsletter-text {
    width: 100%;
}

.newsletter-title {
    font-size: clamp(19px, 2.3vw, 24px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
    text-align: center;
}

.newsletter-subtitle {
    font-size: 12px;
    color: #97D2AD;
    margin: 0 0 20px 0;
    line-height: 1.5;
    text-align: center;
}

.newsletter-form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.email-input-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

.newsletter-email {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
    min-width: 0;
}

.newsletter-email::placeholder {
    color: #999999;
}

.newsletter-email:focus {
    border-color: #97D2AD;
    background-color: #ffffff;
}

.newsletter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #97D2AD 0%, #7bb89a 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(151, 210, 173, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #7bb89a 0%, #6ba88a 100%);
    box-shadow: 0 6px 16px rgba(151, 210, 173, 0.4);
    transform: translateY(-2px);
}

/* Main Footer */
.footer-main {
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr 280px;
    gap: 60px;
    align-items: start;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.footer-brand-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    color: #97D2AD;
    margin: 0 0 20px 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #97D2AD;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Social Media */
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.social-media-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #97D2AD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #97D2AD;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #97D2AD;
    color: #ffffff;
    transform: translateY(-2px);
}

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

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
}

.footer-contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #97D2AD;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

/* Footer Bottom */
.footer-bottom {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Footer Left */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.footer-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Center - Payment Cards */
.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.payment-cards {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.payment-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.payment-card img {
    width: 40px;
    height: 24px;
    object-fit: contain;
}

/* Footer Right - Yamanof */
.footer-right {
    display: flex;
    align-items: center;
}

.yamanof-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yamanof-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.yamanof-text {
    display: flex;
    flex-direction: column;
}

.yamanof-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.yamanof-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* Footer Responsive */
@media (max-width: 1199px) {
    .footer-content {
        grid-template-columns: 280px 1fr 260px;
        gap: 40px;
    }
    
    .footer-links {
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .email-input-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .newsletter-email {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left !important;
    }
    
    .footer-list {
        text-align: left !important;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .social-media-icons {
        justify-content: flex-start;
    }
    
    .footer-social-title {
        text-align: left;
    }
    
    .footer-contact-title {
        text-align: left;
    }
    
    .footer-social {
        align-items: flex-start;
    }
    
    .footer-contact-info {
        align-items: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-subtitle {
        font-size: 14px;
    }
    
    .email-input-container {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .newsletter-email {
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-main {
        padding: 40px 0;
    }
    
    .footer-content {
        margin-left: 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-left: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .payment-cards {
        gap: 6px;
    }
    
    .payment-card img {
        width: 36px;
        height: 22px;
    }
    
    .yamanof-logo {
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .footer-left {
        text-align: center;
    }
    
    .payment-cards {
        gap: 4px;
        max-width: 100%;
    }
    
    .payment-card {
        flex: 1;
        min-width: 0;
    }
    
    .payment-card img {
        width: 32px;
        height: 20px;
    }
}

/* ===== CITY SELECTION MODAL ===== */
.city-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.city-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #97D2AD 0%, #7bb89a 100%);
}

.city-modal-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.city-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.city-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.city-modal-body {
    padding: 32px;
    max-height: 60vh;
    overflow-y: auto;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.city-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.city-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #97D2AD 0%, #7bb89a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.city-item:hover::before {
    opacity: 0.1;
}

.city-item:hover {
    border-color: #97D2AD;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(151, 210, 173, 0.3);
}

.city-item:active {
    transform: translateY(-2px);
}

.city-item h4 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 2;
}

.city-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.city-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #94a3b8;
    font-size: 16px;
}

.city-loading p {
    margin: 0;
    opacity: 0.8;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .city-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .city-modal-header {
        padding: 20px 24px;
    }
    
    .city-modal-header h3 {
        font-size: 20px;
    }
    
    .city-modal-body {
        padding: 24px;
    }
    
    .city-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .city-item {
        padding: 16px;
    }
    
    .city-item h4 {
        font-size: 16px;
    }
    
    .city-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .city-modal-content {
        width: 98%;
        max-height: 90vh;
    }
    
    .city-modal-header {
        padding: 16px 20px;
    }
    
    .city-modal-header h3 {
        font-size: 18px;
    }
    
    .city-modal-body {
        padding: 20px;
    }
}
