/**
 * Maksut Turizm — Özel kurumsal tema (logo renk paleti)
 * Plus Jakarta / yuvarlak kart tasarımından farklı: serif başlık, keskin hatlar, altın-yeşil lüks
 */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary: #1a3d2e;
    --primary-light: #2f5c47;
    --primary-dark: #0c1f17;
    --gold: #c8a951;
    --gold-light: #e2c878;
    --gold-dark: #9a7b32;
    --olive: #5c7350;
    --olive-light: #7a9168;
    --accent: #5c7350;
    --white: #ffffff;
    --cream: #faf6ee;
    --ivory: #fffdf9;
    --sand: #f0ebe0;
    --text: #1a2420;
    --text-muted: #5c6660;
    --border: rgba(26, 61, 46, 0.14);
    --shadow: 0 8px 32px rgba(12, 31, 23, 0.07);
    --shadow-lg: 0 24px 64px rgba(12, 31, 23, 0.14);
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: 'Merriweather', Georgia, 'Times New Roman', serif;
    --font-body: 'Open Sans', 'Segoe UI', system-ui, sans-serif;
    --header-h: 76px;
    --pattern: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a951' fill-opacity='0.06'%3E%3Cpath d='M40 0l5 15H60L45 24l5 16-10-8-10 8 5-16L20 15h15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body {
    font-family: var(--font-body);
    background: var(--ivory);
    background-image: var(--pattern);
    color: var(--text);
    font-size: 0.97rem;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ========== ANA SAYFA ÜST ŞERİT ========== */
.home-contact-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 24px;
    flex-wrap: wrap;
}

.home-contact-strip a { color: var(--primary-dark); }
.home-contact-strip a:hover { opacity: 0.85; }
.home-contact-strip-tagline {
    font-family: var(--font-display);
    font-style: italic;
    letter-spacing: 0.12em;
    text-transform: none;
    font-size: 0.85rem;
}
.home-contact-strip-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(12, 31, 23, 0.12);
    border-radius: var(--radius-sm);
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(200, 169, 81, 0.25);
    font-size: 0.82rem;
    padding: 8px 0;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }
.top-bar i { color: var(--gold); }

/* ========== HEADER — yüzen ada (ana sayfa) / kurumsal şerit (iç sayfa) ========== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(12, 31, 23, 0.08);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-shell { max-width: 1240px; }

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    min-height: var(--header-h);
}

.header-nav-island {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.header-nav-island .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px 8px;
}

.logo img {
    height: 64px;
    max-width: 240px;
    filter: none;
}

.page-home .top-bar { display: none; }

.page-home .site-header {
    position: fixed;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1180px;
    border-radius: 14px;
    background: rgba(255, 253, 249, 0.94);
    border: 1px solid rgba(200, 169, 81, 0.45);
    box-shadow: 0 16px 48px rgba(12, 31, 23, 0.22);
    backdrop-filter: blur(14px);
    border-bottom: 2px solid var(--gold);
}

.page-home .site-header.scrolled {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(12, 31, 23, 0.12);
}

.page-home .site-header.scrolled ~ * .hero-slider,
.page-home .hero-slider { padding-top: 0; }

.page-home .site-header:not(.scrolled) .logo img { height: 58px; }
.page-home .site-header.scrolled .logo img { height: 56px; }

/* İç sayfa: koyu nav metni */
.page-home .site-header:not(.scrolled) .header-nav-island .main-nav,
.page-home .site-header.scrolled .header-nav-island .main-nav,
.site-header .header-nav-island .main-nav {
    background: rgba(26, 61, 46, 0.06);
    border-color: rgba(26, 61, 46, 0.1);
}

.main-nav a,
.nav-dropdown-toggle {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 13px;
    border-radius: 999px;
    font-family: var(--font-body);
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--primary-dark);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(12, 31, 23, 0.08);
}

.page-home .site-header:not(.scrolled) .main-nav a,
.page-home .site-header:not(.scrolled) .nav-dropdown-toggle {
    color: var(--primary-dark);
}

.page-home .site-header:not(.scrolled) .header-nav-island .main-nav {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(200, 169, 81, 0.35);
}

.page-home .site-header:not(.scrolled) .main-nav a:hover,
.page-home .site-header:not(.scrolled) .main-nav a.active,
.page-home .site-header:not(.scrolled) .nav-dropdown-toggle:hover {
    background: rgba(200, 169, 81, 0.18);
    color: var(--primary-dark);
}

.mobile-toggle { color: var(--primary); }

.nav-dropdown-menu {
    background: var(--white);
    border: 1px solid rgba(200, 169, 81, 0.35);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
}

.nav-dropdown-menu a {
    color: var(--text);
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: rgba(26, 61, 46, 0.08);
    color: var(--primary);
}

.header-cta .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.header-cta .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.header-cta .btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.header-cta .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--gold-light);
}

.site-header::after { display: none; }

/* ========== BUTTONS ========== */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    border: none;
    box-shadow: 0 6px 20px rgba(200, 169, 81, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(200, 169, 81, 0.45);
    color: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-btn-light {
    border-color: rgba(255,255,255,0.65);
    color: var(--white);
}

.hero-btn-light:hover {
    background: rgba(255,255,255,0.12);
    color: var(--gold-light);
}

/* ========== HERO — cam panel, ortalanmış kurumsal ========== */
.page-home .hero-slider {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 120px;
}

.page-home .hero-slider::after {
    background: linear-gradient(
        180deg,
        rgba(12, 31, 23, 0.35) 0%,
        rgba(12, 31, 23, 0.55) 55%,
        rgba(12, 31, 23, 0.82) 100%
    );
}

.hero-slide-overlay {
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(12, 31, 23, 0.4) 100%);
}

.hero-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(100px, 14vh, 160px) 24px clamp(100px, 12vh, 140px);
    min-height: inherit;
}

.hero-slide-panel {
    position: relative;
    max-width: 780px;
    width: 100%;
    padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 56px);
    background: rgba(12, 31, 23, 0.72);
    border: 1px solid rgba(200, 169, 81, 0.45);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.hero-slide-panel::before,
.hero-slide-panel::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 2px solid var(--gold);
    pointer-events: none;
}

.hero-slide-panel::before {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.hero-slide-panel::after {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

.hero-slide-inner {
    max-width: none;
    text-align: center;
    border-left: none;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.hero-slide-badge {
    background: transparent;
    border: 1px solid rgba(200, 169, 81, 0.55);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.hero-slide-inner h1,
.hero-slide-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.8vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    text-shadow: none;
    margin-bottom: 16px;
}

.hero-slide-inner p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

.hero-slide-actions {
    justify-content: center;
    flex-wrap: wrap;
}

.hero-nav {
    background: rgba(255, 253, 249, 0.12);
    border: 1px solid rgba(200, 169, 81, 0.5);
    color: var(--gold-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.hero-dots {
    bottom: 36px;
    gap: 8px;
}

.hero-dot {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.35);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--gold);
    width: 10px;
    transform: scale(1.2);
}

.hero-scroll-hint {
    bottom: 88px;
    color: var(--gold-light);
    letter-spacing: 0.25em;
}

.page-home .home-quick-nav {
    margin-top: 0;
    padding: 72px 0;
}

.home-quick-nav::before { display: none; }

.home-quick-grid {
    gap: 20px;
}

.home-quick-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
    min-height: 160px;
    transition: var(--transition);
}

.home-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.home-quick-hac .home-quick-accent,
.home-quick-umre .home-quick-accent,
.home-quick-tours .home-quick-accent,
.home-quick-contact .home-quick-accent {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.home-quick-hac .home-quick-icon,
.home-quick-umre .home-quick-icon,
.home-quick-tours .home-quick-icon,
.home-quick-contact .home-quick-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
}

.home-quick-hac .home-quick-watermark,
.home-quick-umre .home-quick-watermark,
.home-quick-tours .home-quick-watermark,
.home-quick-contact .home-quick-watermark {
    color: var(--primary);
    opacity: 0.06;
}

.home-quick-hac:hover .home-quick-go,
.home-quick-umre:hover .home-quick-go,
.home-quick-tours:hover .home-quick-go,
.home-quick-contact:hover .home-quick-go {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--gold-light);
}

.home-quick-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--primary-dark);
}

/* ========== SECTIONS ========== */
section { padding: 88px 0; }

.section-header { max-width: 720px; }

.section-label {
    color: var(--gold-dark);
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    position: relative;
    padding-bottom: 12px;
}

.section-label::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 10px auto 0;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--primary-dark);
    font-weight: 700;
}

.bg-white { background: var(--white); }
.bg-sand { background: var(--cream); }
.bg-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* ========== TOUR / HOTEL / BLOG CARDS ========== */
.tour-card,
.hotel-card,
.blog-card,
.service-card,
.feature-box {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.tour-card:hover,
.hotel-card:hover,
.blog-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 81, 0.4);
}

.tour-card-image,
.hotel-card-image,
.blog-card-image {
    position: relative;
}

.tour-card-image::after,
.hotel-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--olive));
}

.tour-card-body h3,
.hotel-card-body h3,
.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.tour-card-category { color: var(--gold-dark); font-weight: 600; }
.tour-card-price {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--gold-light);
    border-radius: var(--radius-sm);
}

.tour-card-meta i { color: var(--gold); }

.hotel-card-city {
    background: var(--primary);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
}

.hotel-card-link { color: var(--primary); font-weight: 600; }
.hotel-card:hover .hotel-card-link { color: var(--gold-dark); }

/* ========== HOME SECTIONS ========== */
.home-tours { background: var(--white); }

.home-why { background: var(--cream); }

.home-why-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}

.home-why-item:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow);
}

.home-why-icon {
    background: linear-gradient(135deg, rgba(26,61,46,0.08), rgba(200,169,81,0.12));
    color: var(--primary);
    border-radius: var(--radius-sm);
}

.home-why-num { color: var(--gold); opacity: 0.5; font-family: var(--font-display); }

.home-about {
    background: var(--white);
    position: relative;
}

.home-about-deco-1 {
    background: radial-gradient(circle, rgba(200,169,81,0.15), transparent 70%);
}

.home-about-deco-2 {
    background: radial-gradient(circle, rgba(26,61,46,0.08), transparent 70%);
}

.home-about-stat {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: var(--radius);
    border-bottom: 3px solid var(--gold);
}

.home-about-stat strong {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 2rem;
}

.home-packages-grid .home-package-card {
    border: 1px solid var(--border);
    border-top: none;
    border-radius: var(--radius);
    background: var(--ivory);
    box-shadow: var(--shadow);
}

.home-package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pkg-eko .home-package-accent,
.pkg-gumus .home-package-accent,
.pkg-altin .home-package-accent,
.pkg-platin .home-package-accent,
.pkg-standart .home-package-accent {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    height: 4px;
}

.home-package-icon {
    background: linear-gradient(135deg, rgba(26,61,46,0.08), rgba(200,169,81,0.15));
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.home-package-card h3 {
    font-family: var(--font-display);
    color: var(--primary-dark);
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
}

.contact-card-icon {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--gold-light);
    border-radius: var(--radius-sm);
}

.contact-card h4 {
    font-family: var(--font-display);
    color: var(--primary-dark);
}

.home-testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}

.home-testimonial::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

.home-quote-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--olive) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 169, 81, 0.3);
}

.home-final-cta-inner {
    background: var(--primary-dark);
    border: 2px solid rgba(200, 169, 81, 0.35);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.home-final-cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.home-gallery-grid .gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.home-gallery-grid .gallery-item:hover {
    border-color: var(--gold);
}

/* ========== PAGE HEADER (inner pages) ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--olive) 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    background: var(--pattern);
    opacity: 0.4;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 700;
}

.page-header-subtitle { color: rgba(255,255,255,0.85); }

.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ========== INFO / CONTENT PAGES ========== */
.info-intro-box {
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: var(--ivory);
}

.info-section h2 {
    font-family: var(--font-display);
    color: var(--primary-dark);
    border-bottom-color: rgba(200, 169, 81, 0.35);
}

.info-list li::before { background: var(--gold); border-radius: 2px; }

.info-toc,
.info-sidebar-cta {
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
}

/* ========== TOUR DETAIL ========== */
.tour-detail-hero {
    background: #0c1f17;
}

.tour-detail-badge {
    background: rgba(200, 169, 81, 0.2);
    border: 1px solid rgba(200, 169, 81, 0.5);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
}

.tour-booking-card {
    border-top: 4px solid var(--gold);
    border-radius: var(--radius);
}

.tour-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--gold);
}

/* ========== CONTACT ========== */
.contact-info-cards .contact-card,
.contact-info-card {
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
}

.contact-info-card i { color: var(--gold); }

.contact-form {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.2);
}

/* ========== FOOTER ========== */
.site-footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #060f0b 100%);
    color: rgba(255,255,255,0.85);
    padding-top: 72px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.footer-brand h3 {
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 1.5rem;
}

.footer-brand img {
    max-height: 100px;
    margin-bottom: 16px;
}

.footer h4 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.75);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }

.footer-contact i { color: var(--gold); }

.footer-keywords span {
    background: rgba(200, 169, 81, 0.12);
    border: 1px solid rgba(200, 169, 81, 0.25);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(200, 169, 81, 0.2);
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

.social-links a {
    background: rgba(200, 169, 81, 0.12);
    border: 1px solid rgba(200, 169, 81, 0.3);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

/* ========== FLOATING / MOBILE ========== */
.floating-btn.whatsapp { background: #25D366; }
.floating-btn.phone {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
}

.mobile-action-bar {
    background: var(--ivory);
    border-top: 2px solid rgba(200, 169, 81, 0.35);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
}

.mobile-action-appointment {
    background: rgba(26, 61, 46, 0.06);
    border-color: rgba(26, 61, 46, 0.15);
    color: var(--primary);
}

.mobile-action-appointment .mobile-action-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--primary-dark);
}

.mobile-action-call .mobile-action-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* ========== WELCOME POPUP ========== */
.welcome-popup-overlay {
    background: rgba(12, 31, 23, 0.82);
}

.welcome-popup-text-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 169, 81, 0.35);
    border-top: 4px solid var(--gold);
}

.welcome-popup-badge {
    background: rgba(26, 61, 46, 0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
}

.welcome-popup-title {
    font-family: var(--font-display);
    color: var(--primary-dark);
}

.welcome-popup-btn {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.welcome-popup-btn:hover {
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(200, 169, 81, 0.4);
}

/* ========== CTA / MISC ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--olive));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 169, 81, 0.25);
}

.cta-banner h2 { font-family: var(--font-display); }

.pkg-eko, .pkg-gumus, .pkg-altin, .pkg-platin {
    border-radius: var(--radius-sm);
}

.video-gallery-play { background: rgba(12, 31, 23, 0.5); }
.video-gallery-item:hover .video-gallery-play { background: rgba(200, 169, 81, 0.5); }

.lightbox { background: rgba(12, 31, 23, 0.92); }

.hero-slide-fallback-1 { background: linear-gradient(135deg, #1a3d2e, #0c1f17); }
.hero-slide-fallback-2 { background: linear-gradient(135deg, #2f5c47, #1a3d2e); }
.hero-slide-fallback-3 { background: linear-gradient(135deg, #5c7350, #1a3d2e); }

/* ========== TUR LİSTESİ — 3'lü grid, kurumsal kart ========== */
.home-tours-showcase {
    background: var(--ivory);
    border-radius: 0;
    padding: 0 0 88px;
    box-shadow: none;
}

.home-tours-showcase-top {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 56px 0 28px;
    margin-bottom: 40px;
    position: relative;
}

.home-tours-showcase-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.home-tours-showcase-head {
    align-items: center;
}

.home-tours-showcase-title .section-label {
    color: var(--gold-light);
}

.home-tours-showcase-title .section-label::after {
    background: linear-gradient(90deg, var(--gold-light), transparent);
    margin-left: 0;
}

.home-tours-showcase-title h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.home-tours-showcase-title p {
    color: rgba(255, 255, 255, 0.78);
}

.home-tours-showcase-link {
    background: transparent;
    border: 1px solid rgba(200, 169, 81, 0.55);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-tours-showcase-link:hover {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
}

.home-tours-tabs-wrap {
    margin-top: 20px;
}

.home-tours-tabs {
    justify-content: center;
    padding-bottom: 0;
}

.home-tours-tab {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-tours-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.home-tours-tab.active {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    box-shadow: none;
}

.home-tours-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-tour-card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow);
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.home-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.home-tour-card-media {
    height: 220px;
}

.home-tour-card-content {
    padding: 22px 22px 20px;
}

.home-tour-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.home-tour-card-cat {
    background: var(--primary);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.home-tour-card-pkg {
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
}

.home-tour-card-chips span {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
}

.home-tour-card-foot {
    border-top: 1px dashed rgba(200, 169, 81, 0.45);
    padding-top: 16px;
}

.home-tour-card-price strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--primary-dark);
}

.home-tour-card-btn {
    background: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-tour-card:hover .home-tour-card-btn {
    background: var(--gold);
    color: var(--primary-dark);
}

/* Turlar sayfası — 3'lü grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tour-card {
    border-radius: var(--radius);
    border-top: 4px solid var(--gold);
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.tour-card-image {
    height: 240px;
}

.tour-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.tour-card-category {
    color: var(--gold-dark);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.tour-card-badge {
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    letter-spacing: 0.04em;
}

.tour-card-price {
    background: var(--primary-dark);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
}

.tour-filter-btn {
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tour-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 1024px) {
    .home-tours-list,
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }
}

@media (max-width: 992px) {
    .page-home .site-header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: 0;
    }

    .page-home .hero-slider {
        padding-top: 72px;
    }

    .home-contact-strip {
        position: relative;
        z-index: auto;
    }

    .header-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .header-nav-island .main-nav {
        border-radius: 0;
        background: transparent;
        border: none;
        padding: 0;
    }

    .main-nav {
        background: linear-gradient(180deg, var(--primary-dark), var(--primary));
        border-left: 3px solid var(--gold);
    }

    .main-nav a,
    .nav-dropdown-toggle {
        color: rgba(255,255,255,0.92);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-nav-call {
        background: linear-gradient(135deg, var(--gold-dark), var(--gold));
        color: var(--primary-dark);
        font-weight: 700;
        border-radius: var(--radius-sm);
    }

    .logo img { height: 52px; }
}

@media (max-width: 640px) {
    .home-tours-list,
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .home-tours-showcase-top {
        padding: 40px 0 24px;
    }

    .home-tour-card-media,
    .tour-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-slide-panel {
        padding: 28px 20px;
    }

    .hero-slide-panel::before,
    .hero-slide-panel::after {
        width: 32px;
        height: 32px;
    }

    .hero-slide-inner h1,
    .hero-slide-inner h2 {
        font-size: clamp(1.65rem, 6.5vw, 2.2rem);
    }

    section { padding: 64px 0; }

    .page-home .home-quick-nav {
        margin-top: 0;
        padding: 56px 0;
    }

    .home-contact-strip-inner {
        justify-content: center;
        text-align: center;
    }

    .home-contact-strip-tagline {
        display: none;
    }
}
