/* ===================================================================
   TRIPEXPERT MASTER CSS (v8 - FINAL)
   Açıklama: Bu dosya, Header, Top-Bar, Mega Menü, Dil Menüsü,
   Hero, Paketler, Neden Biz, Yorumlar, CTA ve Footer dahil
   SİTEDEKİ HER ŞEYİN stilini içerir.
   =================================================================== */

/* ========= TEMEL KURULUM, FONT'LAR VE DEĞİŞKENLER ========= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap');

:root {
    --font-base: 'Poppins', sans-serif; --font-display: 'Playfair Display', serif;
    --bg-main: #f8f9fa; --bg-container: #ffffff;
    --text-dark: #3d3d3d; --text-light: #666666;
    --accent-color: #b98a6e; --accent-hover: #a17357;
    --border-color: #e9ecef; --top-bar-bg: #3d3d3d;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-base); background-color: var(--bg-main); color: var(--text-dark); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 30px; }

/* ========= HEADER, TOP-BAR VE NAVBAR (ORİJİNAL TASARIM) ========= */
.main-header { background-color: var(--bg-container); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); position: sticky; top: 0; z-index: 1000; }
.top-bar { background-color: var(--top-bar-bg); color: #fff; padding: 8px 0; font-size: 0.8rem; }
.top-bar-content { display: flex; justify-content: flex-end; align-items: center; }
.contact-info { display: flex; align-items: center; gap: 25px; }
.contact-info a { color: #fff; display: flex; align-items: center; transition: color 0.3s; }
.contact-info a:hover { color: var(--accent-color); }
.contact-info i { margin-right: 8px; font-size: 1rem; }
.navbar { display: flex; justify-content: space-between; align-items: center; height: 95px; }
.navbar-logo img { height: 75px; }
.navbar-menu { display: flex; align-items: center; height: 100%; }
.navbar-item { position: relative; margin-left: 20px; height: 100%; display: flex; align-items: center; }
.navbar-item > a { display: flex; align-items: center; height: 100%; padding: 0 15px; font-weight: 500; font-size: 16px; transition: color 0.3s ease; border-bottom: 3px solid transparent; }
.navbar-item:not(.has-megamenu):hover > a { color: var(--accent-color); border-bottom-color: var(--accent-color); }

/* ========= MEGA MENU (ŞIK TASARIM) ========= */
.has-megamenu:hover > a { color: var(--accent-color); }
.megamenu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 800px; background-color: var(--bg-container); box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-radius: 0 0 8px 8px; z-index: 1001; overflow: hidden; border: 1px solid var(--border-color); border-top: 3px solid var(--accent-color); }
.has-megamenu:hover .megamenu { display: flex; }
.megamenu-left-panel { width: 250px; background-color: #fdfdfd; border-right: 1px solid var(--border-color); padding: 10px 0; }
.megamenu-left-panel li a { display: block; padding: 12px 25px; font-size: 15px; font-weight: 500; transition: all 0.2s ease-in-out; border-left: 3px solid transparent; }
.megamenu-left-panel li a:hover, .megamenu-left-panel .megamenu-category-trigger.active a { background-color: var(--bg-main); color: var(--accent-color); border-left-color: var(--accent-color); }
.megamenu-right-panel { flex-grow: 1; padding: 20px; }
.megamenu-content { display: none; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.megamenu-content.active { display: grid; }
.product-card { display: block; border-radius: 8px; overflow: hidden; background-color: var(--bg-main); transition: all 0.3s ease; border: 1px solid transparent; color:var(--text-dark); }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.product-card img { width: 100%; height: 110px; object-fit: cover; }
.product-card span { display: block; padding: 8px 12px; font-size: 14px; font-weight: 500; }
.product-card .price { font-weight: 600; color: var(--accent-color); padding-top: 0; }

/* Dil Dropdown */
.has-dropdown:hover > a { color: var(--accent-color); }
.dropdown-menu { display: none; position: absolute; top: 100%; right: 0; min-width: 100px; background-color: var(--bg-container); box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-radius: 8px; padding: 5px 0; z-index: 1001; }
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { padding: 10px 20px; display: block; }
.dropdown-menu li a:hover { background-color: var(--accent-color); color: var(--bg-container); }


/* ========= ANA SAYFA PREMIUM BÖLÜMLERİ ========= */
.section { padding: 100px 0; }
.section-bg { background-color: #f7f7f7; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--text-dark); }
.section-title p { font-size: 1.1rem; max-width: 600px; margin: 10px auto 0; color: var(--text-light); }
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 600; transition: all 0.4s; border: 2px solid var(--accent-color); cursor: pointer; }
.btn-primary { background-color: var(--accent-color); color: #fff; }
.btn-primary:hover { background-color: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-3px); }
.btn-secondary { background-color: transparent; color: var(--accent-color); }
.btn-secondary:hover { background-color: var(--accent-color); color: #fff; }
.hero { position: relative; height: calc(100vh - 137px); background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.slide-content { position: relative; z-index: 2; }
.slide-content h1 { font-family: var(--font-display); font-size: 4.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); color: #fff; }
.slide-content p { font-size: 1.3rem; margin-top: 15px; margin-bottom: 30px; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.package-card { background-color: var(--bg-container); border-radius: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.07); transition: all 0.3s ease; }
.package-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.package-card .card-image { position: relative; height: 240px; }
.package-card .card-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px 10px 0 0; }
.package-card .region-tag { position: absolute; top: 15px; left: 15px; background-color: rgba(0,0,0,0.5); backdrop-filter: blur(4px); color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; }
.package-card .card-body { padding: 25px; }
.package-card .package-title { font-size: 1.4rem; font-weight: 600; margin-bottom: 15px; }
.package-card .card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border-color); margin-top: 20px; }
.package-card .price { font-size: 1.6rem; font-weight: 700; color: var(--accent-color); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.feature-icon { font-size: 3rem; color: var(--accent-color); margin-bottom: 20px; }
.feature-item h3 { font-size: 1.3rem; margin-bottom: 10px; }
.testimonial-card { max-width: 700px; margin: auto; text-align: center; }
.testimonial-card p { font-size: 1.2rem; font-style: italic; margin-bottom: 25px; }
.testimonial-author img { width: 70px; height: 70px; border-radius: 50%; margin-bottom: 10px; }
.testimonial-author h4 { font-size: 1.1rem; }
.testimonial-author span { color: var(--text-light); }
.cta-section { background-size: cover; background-position: center; background-attachment: fixed; padding: 100px 0; text-align: center; position: relative; color: #fff; }
.cta-section::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 2.5rem; color: #fff; margin-bottom: 25px; }

/* ========= FOOTER (ORİJİNAL VE TAM TASARIM) ========= */
.site-footer { background-color: var(--bg-dark); color: var(--text-light); padding: 80px 0 0 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-column h4 { color: #fff; font-size: 1.1rem; margin-bottom: 25px; font-weight: 600; font-family: var(--font-base); }
.footer-logo { max-height: 60px; width: auto; margin-bottom: 20px; }
.footer-column.about .about-text { font-size: 0.9rem; line-height: 1.8; margin-bottom: 25px; }
.social-icons a { color: var(--text-light); font-size: 1.3rem; margin-right: 18px; transition: all 0.3s ease; }
.social-icons a:hover { color: var(--accent-color); transform: translateY(-3px); }
.footer-column.links ul li { margin-bottom: 15px; }
.footer-column.links ul a { transition: all 0.3s ease; }
.footer-column.links ul a:hover { color: var(--accent-color); padding-left: 5px; }
.footer-column.contact p { margin-bottom: 15px; font-size: 0.9rem; display: flex; align-items: flex-start; }
.footer-column.contact i { color: var(--accent-color); font-size: 1rem; margin-right: 15px; width: 20px; text-align: center; margin-top: 4px; }
.footer-bottom-bar { text-align: center; padding: 30px 0; margin-top: 60px; border-top: 1px solid #333; }
.footer-bottom-bar p { font-size: 0.85rem; color: #888; }
/* =================================================
   İÇ SAYFA BAŞLIK STİLLERİ (packages.php vb. için)
   ================================================= */
.page-header {
    padding: 100px 0;
    position: relative;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =================================================
   HAKKIMIZDA SAYFASI PROFESYONEL TASARIM STİLLERİ
   ================================================= */

/* Giriş Bölümü İyileştirmeleri */
.about-intro .tagline {
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.about-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.about-intro .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.about-intro p {
    margin-bottom: 15px;
}

/* Misyon, Vizyon, Değerler Bölümü */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}
.mission-item {
    background-color: var(--bg-container);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.mission-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* İstatistik Sayacı Bölümü */
.stats-counter {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}
.stats-counter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.8));
}
.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
}
.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 5px;
}

/* Ekip Bölümü */
.team-section { padding-bottom: 120px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-card {
    text-align: center;
    background: var(--bg-container);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}
.team-card:hover .team-image img {
    filter: grayscale(0%);
}
.team-info {
    padding: 25px;
}
.team-info h4 {
    font-family: var(--font-base);
    font-size: 1.2rem;
    font-weight: 600;
}
.team-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =================================================
   İLETİŞİM SAYFASI TASARIM STİLLERİ
   ================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.contact-details h2, .contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-right: 20px;
    width: 40px;
}

.contact-text h4 {
    font-family: var(--font-base);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form Stilleri */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-base);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(185, 138, 110, 0.2);
}

.contact-form-wrapper button {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
}

/* Form Sonuç Mesajları */
.form-result {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}
.form-result.success {
    background-color: #e8f5e9;
    color: #388e3c;
    border: 1px solid #c8e6c9;
}
.form-result.error {
    background-color: #ffcdd2;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Mobil Cihazlar için Düzenleme */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}