* {
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Stili */
header {
    background: linear-gradient(135deg, #2a3990 0%, #4c6cb3 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

header h1 {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Filtreleme Butonları */
.filtreleme-butonlari {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.filtre-btn {
    background-color: #f0f4ff;
    color: #2a3990;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filtre-btn:hover, .filtre-btn.aktif {
    background-color: #2a3990;
    color: white;
    box-shadow: 0 4px 10px rgba(42, 57, 144, 0.3);
}

/* Villa Listesi */
.villa-liste {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Villa Kartları */
.villa-kart {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.villa-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.villa-resim {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.villa-kart:hover .villa-resim {
    transform: scale(1.05);
}

.villa-icerik {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.villa-baslik {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2a3990;
    transition: color 0.3s ease;
}

.villa-kart:hover .villa-baslik {
    color: #4c6cb3;
}

.villa-ozellikler {
    margin: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.villa-ozellik {
    background-color: #f0f4ff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #2a3990;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.villa-buttons {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-detay {
    background-color: #2a3990;
    color: white;
    width: 100%;
}

.btn-detay:hover {
    background-color: #1e2a69;
    box-shadow: 0 4px 10px rgba(42, 57, 144, 0.3);
}

/* Modal İçeriği Yeniden Tasarımı */
.modal-icerik {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 85%;
    max-width: 950px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Modal Header */
.modal-icerik h2 {
    font-size: 26px;
    color: white;
    margin: 0;
    padding: 25px 30px 20px;
    background-color: #2a3990;
    border-radius: 15px 15px 0 0;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Modal Kapatma Butonu */
.kapat {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    height: 32px;
    width: 32px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.kapat:hover {
    color: white;
    background-color: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Villa Detay İçeriği */
.villa-detay-bilgiler {
    padding: 25px 30px 30px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

/* Video Container */
.video-container {
    width: 100%;
    margin-bottom: 25px;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Villa Tanıtım Metni */
.villa-tanitim {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fd;
    border-radius: 12px;
    border-left: 4px solid #2a3990;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Villa Özellikleri Container */
.villa-ozellikleri-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.villa-ozellikleri-baslik {
    background-color: #f0f4ff;
    color: #2a3990;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e5e9ff;
}

.villa-ozellikleri-liste {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    padding: 20px;
}

/* Villa Özellik */
.villa-ozellik-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9ff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
}

.villa-ozellik-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.villa-ozellik-item i {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #2a3990;
}

/* Villa İletişim Card */
.villa-iletisim {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.villa-iletisim-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.villa-iletisim-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.villa-iletisim-item i {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #2a3990;
}

/* Footer Butonları */
.modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-instagram-btn, .modal-whatsapp-btn {
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

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

.modal-whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.modal-instagram-btn:hover, .modal-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: white;
}

.modal-instagram-btn i, .modal-whatsapp-btn i {
    font-size: 22px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .modal-icerik {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-icerik h2 {
        font-size: 22px;
        padding: 20px 20px 15px;
    }
    
    .villa-detay-bilgiler {
        padding: 15px 20px 20px;
    }
    
    .kapat {
        top: 15px;
        right: 15px;
    }
    
    .villa-ozellikleri-liste {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 480px) {
    .modal-icerik h2 {
        font-size: 20px;
        padding-right: 40px; /* Kapatma tuşunun engellemesini önler */
    }
    
    .villa-ozellikleri-liste {
        grid-template-columns: 1fr;
    }
    
    .villa-tanitim {
        font-size: 16px;
        padding: 15px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
}

/* Duyarlı Tasarım */
@media (max-width: 992px) {
    .villa-liste {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .modal-icerik {
        width: 90%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 30px 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .villa-liste {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    
    .modal-icerik {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-icerik h2 {
        font-size: 22px;
        padding: 20px 20px 15px;
    }
    
    .villa-detay-bilgiler {
        padding: 0 20px 20px;
    }
    
    .kapat {
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .villa-liste {
        grid-template-columns: 1fr;
    }
    
    .filtre-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .modal-icerik h2 {
        font-size: 20px;
    }
}

/* Villa tanıtım metni stili */
.villa-tanitim {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
}

.emoji-replaced {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}

.emoji-replaced i {
    margin-right: 8px;
    color: #2a3990;
    width: 16px;
    text-align: center;
}

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

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

/* Yeni Navbar Tasarımı */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 50px;
    margin-right: 15px;
}

.navbar-logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: #2a3990;
    margin: 0;
}

.navbar-links {
    display: flex;
    gap: 20px;
}

.navbar-link {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2a3990;
    transition: width 0.3s ease;
}

.navbar-link:hover {
    color: #2a3990;
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-link.active {
    color: #2a3990;
}

.navbar-link.active::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #2a3990;
}

/* Footer Tasarımı */
.footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-links h3 {
    font-size: 18px;
    color: #2a3990;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2a3990;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3 {
    font-size: 18px;
    color: #2a3990;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: #2a3990;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4ff;
    color: #2a3990;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #2a3990;
    color: white;
    transform: translateY(-3px);
}

/* Duyarlı Tasarım - Header ve Footer */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    
    .navbar-links.active {
        display: flex;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        min-width: 100%;
    }
}        