/* ============================================================
   SHOGRAN VALLEY — assets/css/main.css
   Full theme styles
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--meadow); }

/* ===== SKIP LINK ===== */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--forest); color: white; padding: 10px 20px; border-radius: 4px; z-index: 9999; text-decoration: none; }
.skip-link:focus { top: 16px; }

/* ===== CONTAINER ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* ===== NAVBAR ===== */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(26,60,46,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease;
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 900;
    color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-icon { width: 38px; height: 38px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.nav-logo .logo-text span, .nav-logo span { color: var(--gold-light); }
.nav-logo .custom-logo { height: 48px; width: auto; }
.nav-links { display: flex; gap: 2px; align-items: center; list-style: none; }
.nav-links a, .nav-links li a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.88rem; font-weight: 600; padding: 8px 14px; border-radius: 8px; transition: all 0.25s ease; text-transform: uppercase; letter-spacing: 0.3px; }
.nav-links a:hover, .nav-links li a:hover { color: var(--gold-light); background: rgba(255,255,255,0.08); }
.nav-links .nav-cta, .nav-links a.nav-cta { background: var(--gold); color: var(--forest); }
.nav-links .nav-cta:hover, .nav-links a.nav-cta:hover { background: var(--gold-light); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 140px 5% 80px;
    position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(74,140,92,0.2) 0%, transparent 60%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 1000px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,168,67,0.2); border: 1px solid rgba(212,168,67,0.5); color: var(--gold-light); font-size: 0.8rem; font-weight: 700; padding: 6px 16px; border-radius: 50px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; animation: fadeDown 0.6s ease both; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -1px; max-width: 820px; margin-bottom: 20px; animation: fadeDown 0.7s 0.1s ease both; }
.hero h1 em, .hero h1 strong { color: var(--gold-light); font-style: normal; }
.hero > .hero-inner > p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 600px; margin-bottom: 48px; animation: fadeDown 0.7s 0.2s ease both; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; animation: fadeUp 0.7s 0.4s ease both; flex-wrap: wrap; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold-light); }
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ===== SEARCH BOX ===== */
.search-box { background: white; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 8px; display: flex; flex-wrap: wrap; gap: 4px; max-width: 860px; width: 100%; animation: fadeUp 0.7s 0.3s ease both; }
.search-tabs { width: 100%; display: flex; gap: 4px; padding: 4px 4px 0; border-bottom: 1px solid #eee; margin-bottom: 4px; overflow-x: auto; }
.search-tab { padding: 8px 18px; border-radius: 10px 10px 0 0; font-size: 0.82rem; font-weight: 700; color: var(--text-light); cursor: pointer; border: none; background: none; transition: 0.2s; white-space: nowrap; font-family: 'Nunito', sans-serif; }
.search-tab.active { background: var(--forest); color: white; }
.search-fields { display: flex; flex: 1; flex-wrap: wrap; gap: 4px; align-items: center; padding: 4px; }
.search-field { flex: 1; min-width: 180px; display: flex; align-items: center; gap: 10px; background: var(--stone); border-radius: 12px; padding: 12px 16px; }
.search-field label { font-size: 0.7rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.search-field input, .search-field select { border: none; background: none; font-family: 'Nunito', sans-serif; font-size: 0.88rem; color: var(--text-dark); width: 100%; outline: none; }
.search-btn { background: var(--forest); color: white; border: none; border-radius: 14px; padding: 14px 28px; font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.25s ease; white-space: nowrap; }
.search-btn:hover { background: var(--forest-light); transform: translateY(-1px); }

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap { padding: 24px 0 0; }
.breadcrumb ol { list-style: none; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.8rem; color: var(--text-light); }
.breadcrumb li a { color: var(--meadow); text-decoration: none; font-weight: 600; }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; }

/* ===== SECTIONS ===== */
section, .section-destinations, .section-bookings, .section-about,
.section-why, .section-offers, .section-info { padding: 80px 0; }
.section-alt { background: var(--stone); }
.why-bg { background: linear-gradient(135deg, var(--forest) 0%, #0f2b1e 100%); position: relative; overflow: hidden; }
.why-bg::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(74,140,92,0.2) 0%, transparent 70%); pointer-events: none; }

.section-header { margin-bottom: 48px; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 800; color: var(--meadow); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; padding: 4px 14px; background: rgba(74,140,92,0.12); border-radius: 50px; }
.gold-label { background: rgba(212,168,67,0.15); color: var(--gold-light); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--forest); line-height: 1.2; letter-spacing: -0.5px; }
.section-title em { color: var(--meadow); font-style: normal; }
.white-title { color: white; }
.gold-em { color: var(--gold-light) !important; }
.section-sub { font-size: 1rem; color: var(--text-mid); max-width: 540px; margin-top: 12px; }

/* ===== DESTINATIONS ===== */
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.dest-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; aspect-ratio: 4/3; background: var(--forest); }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,60,46,0.9) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.dest-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.dest-name a { color: white; text-decoration: none; }
.dest-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.dest-tag { background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.25); text-decoration: none; transition: background 0.2s; }
.dest-tag:hover { background: var(--gold); color: var(--forest); }

/* ===== TABS ===== */
.tabs-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn { padding: 10px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 700; cursor: pointer; border: 2px solid transparent; background: white; color: var(--text-mid); transition: all 0.25s ease; box-shadow: var(--shadow-sm); font-family: 'Nunito', sans-serif; }
.tab-btn.active { background: var(--forest); color: white; border-color: var(--forest); }
.tab-btn:hover:not(.active) { border-color: var(--forest); color: var(--forest); }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.product-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: linear-gradient(135deg, var(--forest) 0%, var(--meadow) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.product-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--forest); font-size: 0.72rem; font-weight: 800; padding: 5px 12px; border-radius: 50px; text-transform: uppercase; }
.product-badge.sale { background: #e53e3e; color: white; }
.product-body { padding: 20px; }
.product-location { font-size: 0.78rem; color: var(--meadow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.product-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--forest); line-height: 1.35; margin-bottom: 12px; text-decoration: none; display: block; }
.product-title:hover { color: var(--meadow); }
.product-meta { display: flex; justify-content: space-between; align-items: center; }
.product-price .old { font-size: 0.82rem; color: var(--text-light); text-decoration: line-through; }
.product-price .current { font-size: 1.25rem; font-weight: 700; color: var(--forest); font-family: 'Playfair Display', serif; }
.product-price .per { font-size: 0.75rem; color: var(--text-light); }
.product-btn { background: var(--forest); color: white; border: none; border-radius: 10px; padding: 10px 18px; font-size: 0.82rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: 0.2s; font-family: 'Nunito', sans-serif; display: inline-block; }
.product-btn:hover { background: var(--meadow); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { color: var(--text-mid); margin-top: 16px; font-size: 0.97rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box { border-radius: var(--radius); padding: 28px; text-align: center; }
.stat-box.forest { background: var(--forest); }
.stat-box.meadow { background: var(--meadow); }
.stat-box.stone { background: var(--stone); }
.stat-box.gold { background: var(--gold); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: white; }
.stat-box.gold .stat-num, .stat-box.stone .stat-num { color: var(--forest); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-box.stone .stat-label { color: var(--text-light); }
.stat-box.gold .stat-label { color: rgba(26,60,46,0.6); }

/* ===== WHY ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 48px; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 32px; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: white; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===== OFFERS ===== */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; margin-top: 48px; }
.offer-card { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 260px; background: linear-gradient(135deg, var(--forest-light), var(--forest)); display: flex; align-items: flex-end; box-shadow: var(--shadow-md); transition: transform 0.3s ease; cursor: pointer; }
.offer-card-2 { background: linear-gradient(135deg, var(--meadow), var(--forest-light)); }
.offer-card:hover { transform: scale(1.02); }
.offer-bg { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,60,46,0.92) 0%, rgba(26,60,46,0.3) 100%); }
.offer-content { position: relative; z-index: 1; padding: 28px; }
.offer-badge { background: var(--gold); color: var(--forest); font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; display: inline-block; margin-bottom: 12px; text-transform: uppercase; }
.offer-card h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.35rem; margin-bottom: 8px; }
.offer-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.offer-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-light); font-weight: 700; font-size: 0.85rem; text-decoration: none; margin-top: 16px; transition: gap 0.2s; }
.offer-link:hover { gap: 10px; }

/* ===== ROUTE ===== */
.route-bar { background: var(--stone); border-radius: var(--radius); padding: 24px 32px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.route-stop { font-weight: 700; color: var(--forest); font-size: 0.9rem; }
.route-arrow { color: var(--gold); font-size: 1.2rem; }
.route-time { margin-left: auto; background: var(--forest); color: white; padding: 8px 18px; border-radius: 8px; font-size: 0.82rem; font-weight: 700; }

/* ===== INFO ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 36px; }
.info-box { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.info-box h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--forest); margin-bottom: 16px; }
.info-box p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 16px; }
.info-list { list-style: none; }
.info-list li { padding: 10px 0; border-bottom: 1px solid var(--stone); font-size: 0.9rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 10px; }
.info-list li:last-child { border-bottom: none; }
.info-list .bullet { color: var(--meadow); font-weight: 800; min-width: 24px; }
.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tip { background: var(--stone); border-radius: 10px; padding: 14px; font-size: 0.85rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.tick { color: var(--meadow); font-weight: 800; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--forest); color: white; padding: 14px 28px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: background 0.2s; margin-top: 28px; }
.btn-primary:hover { background: var(--meadow); color: white; }

/* ===== FOOTER ===== */
.site-footer { background: #0f2b1e; color: white; padding: 64px 5% 32px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: white; display: block; margin-bottom: 14px; text-decoration: none; }
.footer-brand .brand-name span { color: var(--gold-light); }
.brand-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: white; font-size: 1rem; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.87rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.ci-icon { font-size: 1rem; color: var(--gold); margin-top: 2px; }
.contact-item span, .contact-item a { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none; }
.contact-item a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 0.9rem; transition: background 0.2s; }
.social-link.social-facebook:hover { background: #1877f2; }
.social-link.social-instagram:hover { background: #e1306c; }
.social-link.social-youtube:hover { background: #ff0000; }
.social-link.social-twitter:hover { background: #1da1f2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.82rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== BACK TO TOP ===== */
#back-top { position: fixed; bottom: 28px; right: 28px; background: var(--forest); color: white; border: none; width: 48px; height: 48px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; box-shadow: var(--shadow-md); z-index: 999; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--meadow); }

/* ===== BLOG ===== */
.blog-main, .single-post, .page-main { padding: 40px 0 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; margin-top: 40px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-img-link { display: block; aspect-ratio: 16/9; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card-img-link:hover .card-img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 10px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.card-title a { color: var(--forest); text-decoration: none; }
.card-title a:hover { color: var(--meadow); }
.card-excerpt { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 16px; }
.card-link { color: var(--meadow); font-weight: 700; font-size: 0.88rem; text-decoration: none; }
.post-article { max-width: 860px; }
.post-header { margin: 40px 0 32px; }
.post-cats a { color: var(--meadow); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; }
.post-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--forest); margin: 12px 0; }
.post-meta { color: var(--text-light); font-size: 0.85rem; }
.post-featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.post-featured-img img { width: 100%; }
.post-content { color: var(--text-mid); line-height: 1.85; }
.post-content h2, .post-content h3 { font-family: 'Playfair Display', serif; color: var(--forest); margin: 32px 0 16px; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--meadow); }
.post-tags a { display: inline-block; background: var(--stone); color: var(--text-mid); padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; text-decoration: none; margin: 4px; }
.pagination { margin-top: 60px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pagination .page-numbers { background: white; color: var(--forest); padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 600; box-shadow: var(--shadow-sm); transition: 0.2s; }
.pagination .page-numbers.current { background: var(--forest); color: white; }
.page-header { margin: 40px 0 32px; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--forest); }
.page-content { color: var(--text-mid); line-height: 1.85; }
.page-content h2, .page-content h3 { font-family: 'Playfair Display', serif; color: var(--forest); margin: 32px 0 16px; }
.page-content p { margin-bottom: 20px; }
.no-posts { color: var(--text-mid); font-size: 1.1rem; text-align: center; padding: 60px 0; }

/* ===== SEARCH FORM ===== */
.shogran-search-form .search-inner { display: flex; background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); border: 2px solid var(--stone); }
.shogran-search-form .search-field { flex: 1; border: none; padding: 12px 16px; font-family: 'Nunito', sans-serif; font-size: 0.9rem; outline: none; }
.shogran-search-form .search-submit { background: var(--forest); color: white; border: none; padding: 12px 20px; cursor: pointer; font-size: 1rem; transition: background 0.2s; }
.shogran-search-form .search-submit:hover { background: var(--meadow); }

/* ===== ANIMATIONS ===== */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(26,60,46,0.98); padding: 16px; gap: 4px; }
    .menu-toggle { display: block; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { gap: 20px; }
    .route-bar { flex-direction: column; align-items: flex-start; }
    .route-time { margin-left: 0; }
    .tips-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
}
@media print {
    .site-nav, #back-top, .search-box, .menu-toggle { display: none !important; }
    body { background: white; color: black; }
}

/* ============================================================
   TOUR PAGE STYLES
============================================================ */
.tour-page-wrap { max-width: 900px; margin: 0 auto; padding: 20px 0 60px; }

.tour-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900; color: var(--forest);
    line-height: 1.2; margin-bottom: 20px;
}

.tour-meta-bar {
    display: flex; flex-wrap: wrap; gap: 12px;
    background: var(--stone); border-radius: 14px;
    padding: 18px 24px; margin-bottom: 36px;
    align-items: center;
}
.tour-meta-bar span { font-size: 0.88rem; font-weight: 600; color: var(--text-mid); }
.tour-location { color: var(--meadow) !important; }
.tour-price { margin-left: auto; }
.tour-price strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--forest); }
.tour-price del { color: var(--text-light); font-size: 0.9rem; }
.tour-price.tour-sale strong { color: #e53e3e; }
.tour-badge-featured {
    background: rgba(74,140,92,0.12); color: var(--meadow);
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.tour-page-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--forest); margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--stone);
}
.tour-page-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: var(--forest-light);
    margin: 24px 0 12px;
}
.tour-page-wrap p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.tour-page-wrap ul { list-style: none; margin-bottom: 20px; }
.tour-page-wrap ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--stone);
    color: var(--text-mid); font-size: 0.93rem;
    line-height: 1.5;
}
.tour-page-wrap ul li:last-child { border-bottom: none; }

/* Single post/page tour wrapper */
.post-content .tour-page-wrap,
.page-content .tour-page-wrap { padding-top: 0; }
