/* assets/css/style.css - Ana CSS dosyası */

/* Root Variables */
:root {
    --primary-color: #1d3550;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --black: #000000;
    
    --font-family-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-secondary: 'Playfair Display', Georgia, serif;
    
    --border-radius: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
    
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --box-shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-family-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    gap: 0.25rem;
}

.lang-btn {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--light-color);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-call {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    color: var(--white);
}

.btn-login {
    background: var(--light-color);
    border: 1px solid var(--light-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Search Form */
.search-form-wrapper {
    position: relative; /* sabitlik iptal */
    margin-top: -80px;  /* hero'nun içine doğru yaklaş */
    z-index: 10;
}

.search-form-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    padding: 2rem;
    margin: 0 1rem;
}

.search-field {
    padding: 0.5rem;
}

.search-field label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--dark-color);
}

.form-control,
.form-select {
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    color: var(--white);
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Welcome Section */
.welcome-section {
    background: #f8f9fa;
    margin-top: 100px; /* Search form için boşluk */
}

.welcome-title {
    font-family: var(--font-family-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.welcome-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.welcome-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow-lg);
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-text {
    color: var(--white);
}

/* Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Villa Card Styles */
.villa-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.villa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.villa-image {
    position: relative;
    overflow: hidden;
}

.villa-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.villa-card:hover .villa-image img {
    transform: scale(1.1);
}

.villa-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.villa-badge .price {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.villa-content {
    padding: 1.5rem;
}

.villa-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.villa-location {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.villa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.villa-actions {
    display: flex;
    gap: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: var(--white);
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
}

.copyright {
    color: #ccc;
    margin: 0;
}

.footer-rating {
    text-align: right;
    color: #ccc;
}

.rating-stars {
    color: #ffc107;
    margin-right: 0.5rem;
}

/* Feature Box */
.feature-box {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-author strong {
    color: var(--dark-color);
}

.testimonial-author small {
    color: var(--secondary-color);
    display: block;
    margin-top: 0.25rem;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.is-invalid {
    border-color: var(--danger-color);
}

.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.scroll-to-top:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Lightbox styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
}

/* Loading states */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Navbar scrolled state */
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

/* Villa card hover state */
.villa-card.hovered {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .search-form-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .villa-actions {
        flex-direction: column;
    }
    
    .footer-rating {
        text-align: left;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .villa-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Minimal Header Stillleri */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    letter-spacing: 2px;
}

.nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0d6efd;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    font-size: 0.9rem;
}

.btn-call {
    background-color: #00cfff;
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
}

.btn-call:hover {
    background-color: #00b8e6;
}

.btn-login {
    border: 1px solid #00cfff;
    color: #00cfff;
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
    background-color: transparent;
}

.btn-login:hover {
    background-color: #00cfff;
    color: #fff;
}
/* Açılır Menü Stil Güncellemesi */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    font-size: 1rem;
    font-family: var(--font-family-primary); /* Aynı font */
    padding: 0.5rem 0;
    border-top: 3px solid var(--primary-color); /* üst çizgi */
    min-width: 180px;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: background 0.3s, color 0.3s;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #00b8e6;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 4rem 1rem 8rem; /* alttan boşluk bırak */
        display: flex;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .search-form-wrapper {
        margin-top: -60px;
    }

    .search-form-container {
        margin: 0 auto;
        padding: 1.25rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        background: var(--white);
        max-width: 92%;
    }

    .villa-search-form .row {
        flex-direction: column;
        gap: 1rem;
    }

    .villa-search-form .col-6,
    .villa-search-form .col-12,
    .villa-search-form .col-md-6,
    .villa-search-form .col-lg-3,
    .villa-search-form .col-lg-2 {
        width: 100% !important;
    }

    .btn-search {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}
/* Hero Section with Slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.4;
}

.hero-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

/* Welcome Section Enhancements */
.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Villa Card Enhancements */
.villa-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.villa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.villa-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.villa-card:hover .villa-image img {
    transform: scale(1.05);
}

.villa-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc107, #ff8800);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.villa-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.villa-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.villa-location {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.villa-location i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.villa-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.villa-features .feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.villa-features .feature i {
    color: var(--primary-color);
    width: 14px;
}

.villa-amenities {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.amenity {
    width: 32px;
    height: 32px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: var(--transition);
}

.amenity:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.villa-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.villa-actions {
    display: flex;
    gap: 0.75rem;
}

.villa-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-weight: 500;
    border-radius: var(--border-radius);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    
    .welcome-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll; /* Mobile'da fixed attachment sorunu */
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .villa-actions {
        flex-direction: column;
    }
    
    .villa-features {
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .slider-controls {
        display: none; /* Mobilde sadece swipe */
    }
    
    .villa-card {
        margin-bottom: 2rem;
    }
}

/* Loading Animation for Images */
.villa-image img {
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.villa-image img.loaded {
    opacity: 1;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Accessibility improvements */
.slider-btn:focus,
.indicator:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.3s ease-in-out;
        transform: none !important;
    }
    
    .hero-content {
        animation: none;
    }
    
    .villa-card:hover {
        transform: none;
    }
    
    .villa-card:hover .villa-image img {
        transform: none;
    }
    
    .hero-btn:hover {
        transform: none;
    }
}
/* Video desteği için */
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}
.social-media-section {
    background: var(--light-color);
}

.social-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.social-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.social-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Platform Colors */
.instagram i { color: #E4405F; }
.facebook i { color: #1877F2; }
.whatsapp i { color: #25D366; }
.airbnb i { color: #FF5A5F; }
.booking i { color: #003580; }
.tripadvisor i { color: #00AA6C; }

/* Hover Effects */
.social-link:hover .social-card i {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .social-card {
        padding: 1.5rem 1rem;
        height: 100px;
    }
    
    .social-card i {
        font-size: 2rem;
    }
    
    .social-card span {
        font-size: 0.8rem;
    }
}
.social-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.3), transparent);
}

.social-container {
    max-width: 900px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 tane yan yana */
    gap: 1.5rem;
    padding: 0 1rem;
}

.social-item {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--platform-color), var(--platform-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-item:hover::before {
    transform: scaleX(1);
}

.social-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--platform-color);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--platform-color), var(--platform-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-item:hover .social-icon::before {
    transform: scale(1);
}

.social-item:hover .social-icon {
    transform: rotate(360deg) scale(1.1);
}

.social-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.social-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--platform-color);
    color: white;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-item:hover .social-hover {
    transform: translateY(0);
}

.social-item:hover .social-label {
    color: var(--platform-color);
}

/* Platform Colors */
.instagram {
    --platform-color: #E4405F;
    --platform-light: #F56565;
}

.facebook {
    --platform-color: #1877F2;
    --platform-light: #4299FF;
}

.whatsapp {
    --platform-color: #25D366;
    --platform-light: #4ADE80;
}

.airbnb {
    --platform-color: #FF5A5F;
    --platform-light: #FF787D;
}

.booking {
    --platform-color: #003580;
    --platform-light: #1E40AF;
}

.tripadvisor {
    --platform-color: #00AA6C;
    --platform-light: #10B981;
}

.social-cta {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .social-item {
        padding: 1.5rem 0.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .social-label {
        font-size: 0.85rem;
    }
    
    .social-hover {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    .social-cta {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .social-item {
        padding: 1.25rem 0.5rem 1rem;
        border-radius: 12px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .social-label {
        font-size: 0.8rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .social-item {
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.1);
    }
    
    .social-label {
        color: rgba(255,255,255,0.9);
    }
}

/* Animation for loading */
.social-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.social-item:nth-child(1) { animation-delay: 0.1s; }
.social-item:nth-child(2) { animation-delay: 0.2s; }
.social-item:nth-child(3) { animation-delay: 0.3s; }
.social-item:nth-child(4) { animation-delay: 0.4s; }
.social-item:nth-child(5) { animation-delay: 0.5s; }
.social-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better UX */
.social-item:focus {
    outline: 2px solid var(--platform-color);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .social-item,
    .social-icon,
    .social-hover {
        transition: none;
    }
    
    .social-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
}