/* ============================================
   MATEMATİK OKULU TUR SİSTEMİ v2
   Ephesus / Selçuk / Şirince Historic Theme
   Renkler admin panelden değiştirilebilir
   ============================================ */
:root {
    --primary: #5c6d4f;
    --primary-dark: #3d4a34;
    --primary-light: #748963;
    --primary-50: #f0f3ed;
    --primary-100: #dce4d6;
    --secondary: #c4915e;
    --secondary-dark: #a8783e;
    --secondary-light: #d4a878;
    --dark: #2c2416;
    --dark-2: #3a3028;
    --dark-3: #4a3f33;
    --white: #ffffff;
    --off-white: #faf6f1;
    --cream: #f3efe9;
    --gray-100: #e8e3dc;
    --gray-200: #d1cac0;
    --gray-300: #a8a097;
    --gray-400: #7e786f;
    --text: #2c2416;
    --text-light: #6b6054;
    --text-muted: #928a80;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --section-pad: clamp(60px, 8vw, 100px);
    --container: 1320px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; font-size: 15px; overflow-x: hidden; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--text); }

/* ============================================
   HEADER - Modern Transparent → Solid
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent; transition: all 0.4s ease;
}
.site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.site-header.scrolled .nav-list > li > a,
.site-header.scrolled .logo-text { color: var(--text); }
.site-header.scrolled .header-cta { background: var(--primary); color: var(--white); }
.site-header.scrolled .mobile-menu-btn span { background: var(--text); }

/* Topbar */
.header-topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    display: flex;
}
.header-topbar .container {
    display: flex; justify-content: space-between; align-items: center;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left span i { color: var(--secondary); font-size: 0.75rem; }
.topbar-right { display: flex; gap: 8px; align-items: center; }
.topbar-social a {
    width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 0.72rem;
    transition: var(--transition);
}
.topbar-social a:hover { background: var(--secondary); }

@media (max-width: 768px) { .header-topbar { display: none; } }

.header-main {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--container); margin: 0 auto; padding: 0 20px; height: 80px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 44px; width: auto; }
.logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.site-header.scrolled .logo-text { color: var(--primary); }

/* Desktop Nav */
.desktop-nav { display: none; }
@media (min-width: 1080px) { .desktop-nav { display: block; } .mobile-menu-btn { display: none !important; } }

.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: flex; align-items: center; gap: 5px; padding: 10px 16px;
    font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); border-radius: 8px;
    transition: var(--transition);
}
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.site-header.scrolled .nav-list > li > a:hover,
.site-header.scrolled .nav-list > li > a.active { color: var(--primary); background: var(--primary-50); }
.nav-list > li > a i.fa-chevron-down { font-size: 0.6rem; opacity: 0.6; }

.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
    background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100); padding: 10px; opacity: 0; visibility: hidden;
    transform: translateY(12px); transition: var(--transition); list-style: none; z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 14px; font-size: 0.86rem; color: var(--text-light); border-radius: 8px; }
.dropdown li a:hover { background: var(--primary-50); color: var(--primary); }

.header-cta {
    padding: 10px 24px; background: var(--secondary); color: var(--white); font-weight: 700;
    font-size: 0.85rem; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.02em;
}
.header-cta:hover { background: var(--secondary-dark); transform: translateY(-1px); }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; z-index: 1001;
}
.mobile-menu-btn span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Mobile Menu - Sağdan */
.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 9998; transition: var(--transition);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: 340px; max-width: 90vw;
    background: var(--white); z-index: 9999; transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--gray-100);
}
.mobile-menu-header .logo-text { color: var(--primary); font-size: 1.2rem; }
.mobile-close-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: var(--cream); border: none; border-radius: 10px; cursor: pointer; font-size: 1.1rem; color: var(--text);
}

.mobile-nav-list { list-style: none; padding: 12px 16px; }
.mobile-nav-list > li { border-bottom: 1px solid var(--gray-100); }
.mobile-nav-list > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 8px; font-size: 0.95rem; font-weight: 600; color: var(--text);
}
.mobile-nav-list .submenu { list-style: none; padding: 0 0 8px 16px; display: none; }
.mobile-nav-list .has-submenu.open .submenu { display: block; }
.mobile-nav-list .submenu a { display: block; padding: 10px 8px; font-size: 0.88rem; color: var(--text-light); }

.mobile-menu-social {
    display: flex; gap: 10px; padding: 20px 24px; border-top: 1px solid var(--gray-100);
}
.mobile-menu-social a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-50); border-radius: 50%; color: var(--primary); font-size: 0.95rem;
}
.mobile-menu-social a:hover { background: var(--primary); color: var(--white); }

/* Mobile CTA in menu */
.mobile-menu-cta {
    padding: 16px 24px;
}
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ============================================
   HERO - FULLSCREEN SLIDER
   ============================================ */
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 650px; }
.hero-slider .swiper { width: 100%; height: 100%; }

.hero-slide { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-slide-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.08); transition: transform 10s ease-out;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(44,36,22,0.78) 0%, rgba(107,91,71,0.4) 50%, rgba(44,36,22,0.65) 100%);
}

.hero-slide-content {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 0 20px; z-index: 2; color: var(--white);
}
.hero-slide-content .hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
    margin-bottom: 20px; opacity: 0; transform: translateY(20px); animation: heroFadeUp 0.8s 0.2s forwards;
}
.hero-slide-content .hero-label i { color: var(--secondary); }
.hero-slide-content h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; color: var(--white);
    margin-bottom: 20px; line-height: 1.1; max-width: 800px;
    opacity: 0; transform: translateY(30px); animation: heroFadeUp 0.8s 0.4s forwards;
}
.hero-slide-content p {
    font-size: clamp(1rem, 2vw, 1.15rem); opacity: 0.85; max-width: 560px; margin-bottom: 32px;
    opacity: 0; transform: translateY(30px); animation: heroFadeUp 0.8s 0.6s forwards;
}
.hero-slide-content .hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    opacity: 0; transform: translateY(30px); animation: heroFadeUp 0.8s 0.8s forwards;
}

@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-slider .swiper-pagination { bottom: 40px !important; }
.hero-slider .swiper-pagination-bullet {
    width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3);
    opacity: 1; transition: var(--transition); border: 2px solid transparent;
}
.hero-slider .swiper-pagination-bullet-active {
    background: transparent; border-color: var(--white); width: 14px; height: 14px;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white); opacity: 0.6;
}
.hero-scroll .mouse {
    width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px;
    position: relative;
}
.hero-scroll .mouse::after {
    content: ''; width: 3px; height: 8px; background: var(--white); border-radius: 2px;
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollAnim 1.8s infinite;
}
@keyframes scrollAnim { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 100%{opacity:0;transform:translateX(-50%) translateY(12px)} }
.hero-scroll span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
    border-radius: 50px; border: 2px solid transparent; cursor: pointer; transition: var(--transition);
    text-align: center; line-height: 1; letter-spacing: 0.02em;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,84,166,0.3); }
.btn-secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.3); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-alt { background: var(--off-white); }
.section-blue { background: var(--primary-50); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header .label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--primary); background: var(--primary-50); border-radius: 50px; margin-bottom: 14px;
}
.section-header .label i { color: var(--secondary); font-size: 0.7rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ============================================
   TOUR CARDS
   ============================================ */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.tour-card {
    background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column;
    border: 1px solid var(--gray-100);
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }

.tour-card-img { position: relative; height: 240px; overflow: hidden; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tour-card:hover .tour-card-img img { transform: scale(1.08); }

.tour-card-price {
    position: absolute; bottom: 16px; right: 16px; background: var(--white); padding: 6px 16px;
    border-radius: 50px; box-shadow: var(--shadow-md); z-index: 2;
}
.tour-card-price .original { font-size: 0.72rem; color: var(--text-muted); text-decoration: line-through; display: block; line-height: 1; }
.tour-card-price .current { font-size: 1.1rem; font-weight: 800; color: var(--primary); line-height: 1.2; }

.tour-card-badge {
    position: absolute; top: 16px; left: 16px; padding: 5px 14px; font-size: 0.72rem; font-weight: 700;
    color: var(--white); background: var(--danger); border-radius: 50px; z-index: 2;
}
.tour-card-category {
    position: absolute; top: 16px; right: 16px; padding: 5px 12px; font-size: 0.7rem; font-weight: 700;
    color: var(--white); background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); border-radius: 50px; z-index: 2;
}

.tour-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.tour-card-body .location { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.tour-card-body .location i { font-size: 0.7rem; }
.tour-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.tour-card-body h3 a:hover { color: var(--primary); }
.tour-card-body .excerpt { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.tour-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.tour-card-meta { display: flex; gap: 14px; }
.tour-card-meta span { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; color: var(--text-muted); }
.tour-card-meta span i { color: var(--secondary); font-size: 0.75rem; }
.tour-card-footer .detail-link { font-size: 0.82rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.tour-card-footer .detail-link:hover { gap: 8px; }

/* ============================================
   DESTINATION CARDS
   ============================================ */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.dest-card {
    position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 350px; cursor: pointer;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.1); }
.dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent);
}
.dest-card-content {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; color: var(--white); z-index: 2;
}
.dest-card-content h3 { font-size: 1.3rem; margin-bottom: 4px; }
.dest-card-content .tour-count { font-size: 0.82rem; opacity: 0.8; display: flex; align-items: center; gap: 6px; }
.dest-card-content .tour-count i { color: var(--secondary); }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--gray-100); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-card-body .meta { display: flex; gap: 16px; margin-bottom: 10px; font-size: 0.8rem; color: var(--text-muted); }
.blog-card-body .meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-body .meta i { color: var(--secondary); font-size: 0.75rem; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body .excerpt { font-size: 0.88rem; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-body .read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.85rem; font-weight: 700; color: var(--primary); }
.blog-card-body .read-more:hover { gap: 10px; color: var(--secondary); }

/* ============================================
   CATEGORY CARDS
   ============================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.cat-card {
    background: var(--white); border-radius: var(--radius-xl); padding: 30px 24px; text-align: center;
    border: 2px solid var(--gray-100); transition: var(--transition); cursor: pointer;
}
.cat-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-card .icon {
    width: 64px; height: 64px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-50); border-radius: 50%; font-size: 1.4rem; color: var(--primary); transition: var(--transition);
}
.cat-card:hover .icon { background: var(--primary); color: var(--white); }
.cat-card h4 { font-size: 1rem; margin-bottom: 4px; }
.cat-card .count { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================
   CAMPAIGN BANNERS
   ============================================ */
.campaign-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-3) 100%);
    border-radius: var(--radius-xl); padding: 40px; color: var(--white);
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
    overflow: hidden; position: relative;
}
.campaign-banner::before {
    content: ''; position: absolute; top: -60%; right: -8%; width: 350px; height: 350px;
    background: rgba(255,107,53,0.15); border-radius: 50%;
}
.campaign-banner::after {
    content: ''; position: absolute; bottom: -40%; left: 10%; width: 200px; height: 200px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}
.campaign-banner-content { position: relative; z-index: 1; }
.campaign-banner-content h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 8px; }
.campaign-banner-content p { opacity: 0.8; font-size: 0.95rem; }
.campaign-badge { display: inline-block; background: var(--secondary); color: var(--white); padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; margin-bottom: 10px; }
.campaign-countdown { display: flex; gap: 10px; position: relative; z-index: 1; }
.countdown-item { text-align: center; background: rgba(255,255,255,0.1); padding: 12px 14px; border-radius: 12px; min-width: 60px; backdrop-filter: blur(10px); }
.countdown-item .num { font-size: 1.4rem; font-weight: 800; display: block; }
.countdown-item .lbl { font-size: 0.68rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================
   STATS
   ============================================ */
.stats-section {
    background: var(--primary); padding: 60px 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l2 3-2 3zm0-3V20h20v2H20v2l-2-3 2-3z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.stat-item { text-align: center; color: var(--white); }
.stat-item .icon { font-size: 2rem; margin-bottom: 8px; color: var(--secondary); }
.stat-item .number { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.stat-item .label { font-size: 0.88rem; opacity: 0.7; }

/* ============================================
   FORM / CONTACT
   ============================================ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
    width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: 0.9rem;
    border: 2px solid var(--gray-100); border-radius: var(--radius); background: var(--white);
    color: var(--text); transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,84,166,0.1); }
textarea.form-control { min-height: 130px; resize: vertical; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card {
    display: flex; align-items: center; gap: 18px; padding: 22px; background: var(--off-white); border-radius: var(--radius-lg);
}
.contact-info-card .icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: var(--primary); border-radius: 50%; color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.92rem; margin-bottom: 2px; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-light); }

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 160px 0 70px; text-align: center; position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); color: var(--white);
}
.page-hero::before {
    content: ''; position: absolute; inset: 0; opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; color: var(--white); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   TOUR DETAIL
   ============================================ */
.tour-detail-hero { position: relative; height: 50vh; min-height: 400px; background-size: cover; background-position: center; margin-top: 0; }
.tour-detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,30,51,0.3) 0%, rgba(12,30,51,0.7) 100%); }
.tour-detail-hero-content { position: absolute; bottom: 40px; left: 0; right: 0; max-width: var(--container); margin: 0 auto; padding: 0 20px; z-index: 2; color: var(--white); }
.tour-detail-hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); }

.tour-detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 48px 0; }
@media (max-width: 1024px) { .tour-detail-layout { grid-template-columns: 1fr; } }

.tour-sidebar { position: sticky; top: 100px; align-self: start; }
.tour-sidebar-card { background: var(--white); border: 2px solid var(--gray-100); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-md); }
.tour-price-block { text-align: center; padding-bottom: 20px; border-bottom: 2px solid var(--gray-100); margin-bottom: 20px; }
.tour-price-block .original-price { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.tour-price-block .final-price { font-size: 2.2rem; font-weight: 800; color: var(--primary); }

.tour-info-list { list-style: none; margin-bottom: 20px; }
.tour-info-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--gray-100); font-size: 0.9rem; }
.tour-info-list li:last-child { border-bottom: none; }
.tour-info-list li i { width: 20px; color: var(--secondary); text-align: center; }

/* Daily Program */
.daily-program { margin: 32px 0; }
.day-item { position: relative; padding-left: 44px; padding-bottom: 28px; }
.day-item::before { content: ''; position: absolute; left: 14px; top: 32px; bottom: 0; width: 2px; background: var(--primary-100); }
.day-item:last-child::before { display: none; }
.day-marker {
    position: absolute; left: 0; top: 4px; width: 30px; height: 30px; background: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; color: var(--white);
}
.day-item h4 { font-size: 1rem; margin-bottom: 4px; }
.day-item p { font-size: 0.9rem; color: var(--text-light); }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
.services-list { list-style: none; }
.services-list.included li::before { content: '✓'; color: var(--success); font-weight: 700; margin-right: 10px; }
.services-list.excluded li::before { content: '✗'; color: var(--danger); font-weight: 700; margin-right: 10px; }
.services-list li { padding: 7px 0; font-size: 0.9rem; color: var(--text-light); border-bottom: 1px dashed var(--gray-100); }

/* Reservation Form */
.reservation-form { background: var(--off-white); border-radius: var(--radius-xl); padding: 32px; margin-top: 24px; border: 2px solid var(--gray-100); }
.reservation-form h3 { font-size: 1.2rem; margin-bottom: 20px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,84,166,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 1.5rem; color: var(--white); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px;
    border-radius: 50px; font-size: 0.88rem; font-weight: 600; border: 2px solid var(--gray-100); color: var(--text-light); transition: var(--transition);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Category Filter */
.category-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.category-filter a {
    padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    border: 2px solid var(--gray-100); color: var(--text-light); transition: var(--transition);
}
.category-filter a:hover, .category-filter a.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--dark); color: var(--white); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-col .logo-text { color: var(--white); font-size: 1.3rem; margin-bottom: 14px; display: block; }
.footer-desc { font-size: 0.88rem; opacity: 0.6; margin-bottom: 20px; line-height: 1.8; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border-radius: 50%; color: #fff; font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); transform: translateY(-2px); }

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--secondary); border-radius: 2px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: '→'; color: var(--secondary); font-size: 0.75rem; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col .contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.55); padding: 6px 0; }
.footer-col .contact-list li::before { display: none; }
.footer-col .contact-list li i { color: var(--secondary); margin-top: 4px; flex-shrink: 0; }
.footer-col .contact-list li a { color: rgba(255,255,255,0.55); }
.footer-col .contact-list li a::before { display: none; }
.footer-col .contact-list li a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ============================================
   UTILITIES
   ============================================ */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
    background: var(--primary); color: var(--white); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(16px); transition: var(--transition); box-shadow: var(--shadow-md); z-index: 100;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px; width: 56px; height: 56px;
    background: #25D366; color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35); z-index: 100; transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes whatsappPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.55); }
}

.alert { padding: 14px 20px; border-radius: var(--radius-lg); font-size: 0.9rem; margin-bottom: 20px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

.content-body { font-size: 1rem; line-height: 1.85; color: var(--text-light); }
.content-body h2 { font-size: 1.5rem; margin: 28px 0 14px; color: var(--text); }
.content-body h3 { font-size: 1.2rem; margin: 22px 0 10px; }
.content-body p { margin-bottom: 14px; }
.content-body img { border-radius: var(--radius-lg); margin: 20px 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-slide-content h1 { font-size: 2rem; }
    .tour-grid, .blog-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .campaign-banner { flex-direction: column; text-align: center; padding: 28px; }
    .campaign-countdown { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
}
