/* --- Değişkenler --- */
:root {
    --color-yellow: #FFD700;    /* Kokart Sarısı */
    --color-yellow-dark: #E6C200;
    --color-dark: #1A1A1A;      /* Karbon Siyahı */
    --color-dark-light: #333333;
    --color-bg: #F4F4F4;        /* Açık Gri Zemin */
    --color-white: #FFFFFF;
    --color-text: #222222;
    --color-text-light: #666666;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 4px; }

/* --- Navigation --- */
.main-nav { background: var(--color-dark); color: var(--color-white); padding: 15px 0; border-bottom: 3px solid var(--color-yellow); position: sticky; top: 0; z-index: 1000; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-white); letter-spacing: 1px; }
.yellow-text { color: var(--color-yellow); }

.desktop-menu { display: flex; gap: 25px; align-items: center; }
.desktop-menu a { font-weight: 500; font-size: 0.95rem; text-transform: uppercase; color: #ddd; }
.desktop-menu a:hover, .desktop-menu a.active { color: var(--color-yellow); }

.btn-register { background: var(--color-yellow); color: var(--color-dark) !important; padding: 8px 20px; border-radius: 4px; font-weight: 700 !important; }
.btn-register:hover { background: var(--color-white); }

.mobile-toggle { display: none; background: none; border: none; color: var(--color-white); cursor: pointer; }

/* --- Mobile Menu --- */
.mobile-menu { position: fixed; top: 0; left: 0; width: 280px; height: 100%; background: var(--color-dark); z-index: 1001; transition: 0.3s; transform: translateX(-100%); padding: 20px; display: flex; flex-direction: column; gap: 20px; box-shadow: 5px 0 15px rgba(0,0,0,0.2); }
.mobile-menu.active { transform: translateX(0); }
.menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: var(--color-yellow); font-weight: bold; font-family: var(--font-heading); }
.close-menu { background: none; border: none; font-size: 1.5rem; color: var(--color-white); cursor: pointer; }
.mobile-menu a { color: var(--color-white); font-size: 1.1rem; border-bottom: 1px solid #444; padding-bottom: 10px; font-weight: 500; }

/* --- Search Hero --- */
.hero-search { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/210186/pexels-photo-210186.jpeg?auto=compress&cs=tinysrgb&w=1920'); background-size: cover; background-position: center; padding: 80px 0; color: var(--color-white); text-align: center; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 15px; }
.yellow-bg { background-color: var(--color-yellow); color: var(--color-dark); padding: 0 10px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; }

.search-bar { background: var(--color-white); padding: 20px; border-radius: 8px; display: flex; gap: 20px; max-width: 900px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.2); align-items: flex-end; flex-wrap: wrap; }
.input-group { flex: 1; text-align: left; min-width: 200px; }
.input-group label { display: block; font-size: 0.85rem; font-weight: bold; color: var(--color-text-light); margin-bottom: 5px; }
.input-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); font-size: 1rem; color: var(--color-text); }
.btn-search { background: var(--color-dark); color: var(--color-white); border: none; padding: 12px 30px; font-weight: bold; border-radius: 4px; cursor: pointer; display: flex; align-items: center; gap: 10px; height: 48px; }
.btn-search:hover { background: var(--color-yellow); color: var(--color-dark); }

/* --- Content --- */
.section-padding { padding: 60px 0; }
.section-title, .page-title { text-align: center; margin-bottom: 50px; }
.section-title h2, .page-title h1 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-dark); margin-bottom: 15px; }
.line { width: 60px; height: 5px; background: var(--color-yellow); margin: 0 auto; }

/* --- Guide Grid --- */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.guide-card { background: var(--color-white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #eee; }
.guide-card:hover { transform: translateY(-5px); border-color: var(--color-yellow); }
.guide-img { position: relative; height: 250px; }
.guide-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.badge { position: absolute; top: 15px; right: 15px; background: var(--color-yellow); color: var(--color-dark); padding: 5px 12px; font-weight: bold; font-family: var(--font-heading); font-size: 0.8rem; border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.guide-info { padding: 25px; }
.guide-info h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 5px; }
.specialty { color: var(--color-yellow-dark); font-weight: 600; font-size: 0.9rem; margin-bottom: 15px; }
.languages { display: flex; gap: 10px; margin-bottom: 15px; }
.languages span { background: #f0f0f0; padding: 3px 8px; border-radius: 4px; font-size: 0.85rem; font-weight: 500; }
.desc { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 20px; line-height: 1.5; }
.btn-contact { display: block; text-align: center; background: var(--color-dark); color: var(--color-white); padding: 10px; border-radius: 4px; font-weight: bold; font-family: var(--font-heading); }
.btn-contact:hover { background: var(--color-yellow); color: var(--color-dark); }

/* --- Info Banner --- */
.info-banner { background: var(--color-dark); color: var(--color-white); padding: 50px 0; margin-top: 60px; }
.banner-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.banner-text h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 10px; }
.btn-outline { border: 2px solid var(--color-white); color: var(--color-white); padding: 10px 25px; border-radius: 4px; font-weight: bold; }
.btn-outline:hover { background: var(--color-yellow); border-color: var(--color-yellow); color: var(--color-dark); }

/* --- About & Split --- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-content h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; }
.check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.check-list svg { color: var(--color-yellow-dark); }

/* --- Reviews --- */
.reviews-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.review-item { background: var(--color-white); padding: 30px; border-radius: 8px; border-left: 5px solid var(--color-yellow); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.star-rating { color: #FFC107; margin-bottom: 10px; font-size: 1.2rem; }
.review-item h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; }
.review-item p { font-style: italic; color: #555; margin-bottom: 15px; }
.reviewer { font-weight: bold; color: var(--color-dark); font-size: 0.9rem; }

/* --- Contact & Legal --- */
.contact-card { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; background: var(--color-white); padding: 50px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.contact-left h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px; color: var(--color-dark); }
.c-info { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-weight: 500; }
.alert-box { background: #FFF9C4; padding: 15px; border-radius: 4px; font-size: 0.9rem; color: #5D4037; margin-top: 20px; }

.pro-form .form-group { margin-bottom: 20px; }
.pro-form label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--color-dark); }
.pro-form input, .pro-form select, .pro-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.pro-form input:focus { border-color: var(--color-yellow); outline: none; }
.btn-submit { background: var(--color-dark); color: var(--color-white); width: 100%; padding: 15px; border: none; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--color-yellow); color: var(--color-dark); }

.policy-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border-radius: 8px; }
.policy-doc h1 { font-family: var(--font-heading); }
.policy-doc h3 { font-family: var(--font-heading); margin-top: 30px; margin-bottom: 10px; color: var(--color-dark-light); }

/* --- Footer --- */
.main-footer { background: var(--color-dark); color: #999; padding-top: 50px; margin-top: auto; border-top: 5px solid var(--color-yellow); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; padding-bottom: 30px; }
.footer-col h4 { color: var(--color-white); font-family: var(--font-heading); font-size: 1.5rem; }
.contact-col { text-align: right; }
.copyright { background: #111; text-align: center; padding: 15px; font-size: 0.85rem; color: #666; }

@media (max-width: 992px) {
    .desktop-menu { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .search-bar { flex-direction: column; align-items: stretch; }
    .btn-search { width: 100%; justify-content: center; }
    .split-layout, .contact-card { grid-template-columns: 1fr; }
    .banner-flex { flex-direction: column; text-align: center; }
}