/* --- DEĞİŞKENLER --- */
:root {
    --brand-color: #f04f24; 
    --dark-gray: #333333;
    --light-gray: #f4f5f7; /* Görseldeki arka plana uyumlu hafif gri */
    --white: #ffffff;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.section-title { text-align: center; font-size: 36px; color: var(--dark-gray); margin-bottom: 40px; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: var(--brand-color); margin: 15px auto 0; border-radius: 2px; }
.bg-light { background-color: var(--light-gray); }
.bg-dark { background-color: var(--dark-gray); }
.text-white { color: var(--white); }

/* --- BUTONLAR --- */
.btn {
    display: inline-block; background-color: var(--brand-color); color: var(--white);
    padding: 12px 25px; text-decoration: none; font-size: 16px; font-weight: 600;
    border-radius: 5px; transition: all 0.3s ease; border: 2px solid var(--brand-color); cursor: pointer;
}
.btn:hover { background-color: #d03e1a; border-color: #d03e1a; }
.btn-outline { background-color: transparent; color: var(--brand-color); }
.btn-outline:hover { background-color: var(--brand-color); color: var(--white); }

/* ========================================= */
/* --- NAVBAR (MENÜ) TASARIMI                --- */
/* ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--brand-color);
    padding: 10px 40px;
    position: sticky;
    top: 20px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(240, 79, 36, 0.4);
    border-radius: 50px;
    max-width: 1200px;
    margin: 0 auto 30px auto; 
}

/* Logoyu sola yasla */
.navbar .logo { flex: 1; display: flex; justify-content: flex-start; }
.logo img { max-height: 45px; width: auto; }

/* Menüyü (Linkleri) tam merkeze oturt */
.navbar nav { flex: 2; display: flex; justify-content: center; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav ul li a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 15px; transition: color 0.3s; }
nav ul li a:hover { color: var(--dark-gray); }

/* Sağ boşluğu dengeleyip menüyü tam ortalamak için sahte alan */
.navbar::after { content: ''; flex: 1; }

.menu-toggle {
    display: none;
}

/* --- HERO SLIDER ve OK TUŞLARI --- */
.slider-container {
    position: relative; height: 80vh; background-color: var(--dark-gray);
    overflow: hidden; border-bottom: 5px solid var(--brand-color);
}
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0;
    transition: opacity 1s ease-in-out; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); padding: 0 20px;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-content h1 { font-size: 54px; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.slide-content p { font-size: 22px; margin-bottom: 30px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.4); color: white; border: none; cursor: pointer;
    padding: 15px 20px; font-size: 24px; border-radius: 50%; z-index: 10; transition: 0.3s;
}
.slider-btn:hover { background: var(--brand-color); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* --- ANA SAYFA PAKETLER (Yatay Kaydırmalı) --- */
.packages-wrapper { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
.packages-wrapper::-webkit-scrollbar { height: 8px; }
.packages-wrapper::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
.packages-wrapper::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.packages-wrapper::-webkit-scrollbar-thumb:hover { background: var(--brand-color); }

.package-card {
    flex: 0 0 300px; background: var(--white); border: 1px solid var(--border-color); border-radius: 10px;
    padding: 30px 20px; text-align: center; scroll-snap-align: start; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s;
}
.package-card:hover { transform: translateY(-5px); }

.package-card.featured {
    border-color: var(--brand-color);
    box-shadow: 0 8px 20px rgba(240, 79, 36, 0.15);
    position: relative;
    padding-top: 50px;
}

.package-card.featured::before {
    content: 'En Çok Tercih Edilen';
    background: var(--brand-color);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.package-card h3 { font-size: 22px; margin-bottom: 10px; }
.package-card .price { font-size: 32px; font-weight: 700; color: var(--brand-color); margin-bottom: 20px; }
.package-card ul { list-style: none; text-align: left; margin-bottom: 25px; min-height: 120px; }
.package-card ul li { margin-bottom: 10px; font-size: 14px; border-bottom: 1px dashed var(--border-color); padding-bottom: 5px; }


/* ========================================= */
/* --- DETAYLI PAKETLER SAYFASI TASARIMI   --- */
/* ========================================= */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-btn {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}
.tab-btn:hover {
    border-color: var(--brand-color);
    color: var(--brand-color);
}
.tab-btn.active {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(240, 79, 36, 0.15);
    border-color: var(--brand-color);
}

.pricing-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--dark-gray); }
.price-tag { font-size: 36px; font-weight: 700; color: var(--brand-color); margin-bottom: 20px; }
.pricing-card .desc { font-size: 14px; color: #666; margin-bottom: 30px; min-height: 65px; }
.btn-full { display: block; width: 100%; margin-bottom: 30px; }

/* AKORDİYON (Açılır Kapanır Özellik Listesi) */
.accordion { text-align: left; margin-top: auto; }
.accordion-header {
    width: 100%; background: #f8f9fa; border: 1px solid var(--border-color); padding: 12px 15px;
    font-size: 15px; font-weight: 600; color: var(--dark-gray); cursor: pointer; display: flex;
    justify-content: space-between; align-items: center; border-radius: 8px; transition: background 0.3s;
}
.accordion-header:hover { background: #eee; }
.accordion-header.active { background: var(--brand-color); color: var(--white); border-color: var(--brand-color); }
.accordion-header .icon { font-size: 18px; transition: transform 0.3s; }
.accordion-header.active .icon { transform: rotate(180deg); }

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: var(--white); }
.accordion-content ul { list-style: none; padding: 15px 5px; margin: 0; }
.accordion-content ul li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 14px; color: #555; }
.accordion-content ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-color); font-weight: bold; }
.accordion-content h4 { margin: 10px 0 5px 5px; font-size: 15px; color: var(--dark-gray); }
.small-note { font-size: 12px; color: #888; padding: 0 5px 15px 5px; }

/* ========================================= */
/* --- EKSTRA HİZMETLER (Görseldeki Kısım) --- */
/* ========================================= */
.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.extra-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    text-align: left;
    transition: box-shadow 0.3s;
}

.extra-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.extra-card h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.extra-card .ex-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray); /* Siyah büyük fiyat yazısı */
    margin-bottom: 15px;
}

.extra-card hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin-bottom: 15px;
}

.extra-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* --- KAMPANYALAR --- */
.campaigns-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.campaign-box { flex: 1; min-width: 300px; background: var(--brand-color); color: var(--white); border-radius: 10px; padding: 40px 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.campaign-box h3 { font-size: 24px; margin-bottom: 15px; }

/* Kampanya Detay Sayfası Özel */
.featured-campaign { background: var(--white); border: 2px solid var(--brand-color); border-radius: 15px; padding: 40px; text-align: center; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(240, 79, 36, 0.1); }
.featured-campaign h2 { color: var(--dark-gray); margin-bottom: 15px; }
.camp-price { font-size: 32px; font-weight: 700; color: var(--brand-color); margin-bottom: 20px; }
.featured-campaign p { font-size: 18px; margin-bottom: 30px; color: #555; }
.camp-btn { font-size: 18px; padding: 15px 30px; }
.secondary-campaign { background: var(--white); border-radius: 15px; padding: 30px; border: 1px solid var(--border-color); text-align: center; }

/* --- YORUMLAR --- */
.reviews-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.review-card { flex: 1; min-width: 300px; background: var(--white); padding: 25px; border-radius: 12px; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: left; }
.review-label { font-size: 10px; background: #f1f1f1; color: #666; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; font-weight: bold; }
.review-card h4 { font-size: 16px; margin: 10px 0 5px 0; color: var(--dark-gray); }
.review-card .stars { font-size: 12px; margin-bottom: 15px; display: block; }
.review-card p { font-size: 14px; color: #444; }

/* --- İLETİŞİM --- */
.contact-grid { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 300px; }
.map-container { flex: 1; min-width: 300px; }

/* --- ALT MENÜ (FOOTER) --- */
.footer { background-color: var(--white); padding: 60px 0 20px; border-top: 1px solid var(--border-color); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer-logo p { margin-top: 15px; color: #666; font-weight: 600; }
.footer-links h4, .footer-contact h4 { color: var(--brand-color); font-size: 18px; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--dark-gray); text-decoration: none; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--brand-color); }
.footer-link { color: var(--dark-gray); text-decoration: none; transition: color 0.3s; }
.footer-link:hover { color: var(--brand-color); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-color); color: #888; font-size: 14px; }

/* ========================================= */
/* --- MOBİL UYUM (RESPONSIVE)               --- */
/* ========================================= */
@media (max-width: 768px) {
    body { padding-top: 80px; }
    
    /* Navbar Ayarları */
    .navbar { position: fixed; top: 0; left: 0; right: 0; width: 100%; max-width: 100%; border-radius: 0; margin: 0; padding: 15px 20px; justify-content: space-between; }
    .navbar::after { display: none; }
    .navbar .logo { flex: none; }
    .menu-toggle { display: block; color: var(--white); font-size: 28px; cursor: pointer; z-index: 101; }
    .navbar nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--brand-color); padding: 20px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1); flex-direction: column; align-items: center; }
    .navbar nav.active { display: flex; }
    nav ul { flex-direction: column; gap: 20px; width: 100%; text-align: center; }
    
    /* Slider (Banner) Mobil Düzeltmeleri */
    .slider-container { height: 50vh; min-height: 350px; } 
    .slide-content h1 { font-size: 26px; margin-bottom: 10px; line-height: 1.3; }
    .slide-content p { font-size: 15px; margin-bottom: 20px; }
    .slider-btn { padding: 8px 12px; font-size: 16px; }
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
    
    /* Diğer Izgara Düzeltmeleri */
    .extra-services-grid { grid-template-columns: 1fr; }
    .contact-grid { gap: 30px; }
}
}