/* === JHARKHAND TOUR TRAVELS - GLOBAL STYLES === */
:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --accent: #f59e0b;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.header { background: var(--card); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-size: 1.4rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 36px; height: 36px; background: var(--primary); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.nav { display: flex; gap: 1.8rem; align-items: center; }
.nav a { font-weight: 500; color: var(--text-light); transition: color 0.2s; font-size: 0.9rem; }
.nav a:hover { color: var(--primary); }
.nav a.active { color: var(--primary); font-weight: 600; }
.btn { padding: 0.6rem 1.4rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { filter: brightness(1.1); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.mobile-menu-btn { display: none; background: none; font-size: 1.5rem; color: var(--text); }

/* Hero */
.hero { background: linear-gradient(135deg, #0f766e 0%, #134e4a 50%, #0d9488 100%); color: white; padding: 4rem 0 5rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom; background-size: cover; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.hero h1 span { color: #fde047; }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.8rem; max-width: 500px; }
.hero-badges { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2rem; }
.stat h3 { font-size: 1.8rem; font-weight: 800; }
.stat p { font-size: 0.8rem; opacity: 0.8; margin: 0; }
.hero-form { background: var(--card); border-radius: 16px; padding: 1.8rem; box-shadow: var(--shadow-lg); color: var(--text); }
.hero-form h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--text); }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.6rem 0.9rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.9rem; transition: border-color 0.2s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-submit { width: 100%; margin-top: 0.3rem; }

/* Section */
.section { padding: 3.5rem 0; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 2.5rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.7rem; }
.section-header p { color: var(--text-light); font-size: 1rem; }
.section-header .tag { display: inline-block; background: #ccfbf1; color: var(--primary-dark); padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.7rem; }

/* Cards */
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-icon { width: 48px; height: 48px; background: #f0fdfa; color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 0.8rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.service-card .link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--primary); font-weight: 600; font-size: 0.82rem; margin-top: 0.8rem; }

.route-card { background: var(--card); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.route-img { height: 160px; background: linear-gradient(135deg, #0d9488, #134e4a); display: flex; align-items: center; justify-content: center; color: white; font-size: 2.5rem; position: relative; }
.route-img .distance { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.6); color: white; padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.route-body { padding: 1.2rem; }
.route-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.route-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.7rem; }
.route-meta { display: flex; justify-content: space-between; align-items: center; }
.route-price { font-size: 1rem; font-weight: 800; color: var(--primary); }
.route-price span { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

.dest-card { position: relative; border-radius: 14px; overflow: hidden; height: 240px; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem; color: white; }
.dest-overlay h3 { font-size: 1.05rem; font-weight: 700; }
.dest-overlay p { font-size: 0.8rem; opacity: 0.85; }

.pricing-card { background: var(--card); border: 2px solid var(--border); border-radius: 16px; padding: 1.8rem; text-align: center; transition: all 0.3s; position: relative; }
.pricing-card.featured { border-color: var(--primary); transform: scale(1.02); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 0.25rem 0.9rem; border-radius: 50px; font-size: 0.7rem; font-weight: 700; }
.pricing-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.pricing-card .price { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin: 0.8rem 0; }
.pricing-card .price span { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
.pricing-card ul { list-style: none; text-align: left; margin: 1.2rem 0; }
.pricing-card ul li { padding: 0.4rem 0; font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; }
.pricing-card ul li::before { content: '✓'; color: var(--primary); font-weight: 700; }

.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; }
.testi-stars { color: var(--accent); font-size: 1rem; margin-bottom: 0.8rem; }
.testi-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.7rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.testi-author h4 { font-size: 0.9rem; font-weight: 700; }
.testi-author p { font-size: 0.78rem; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 0.7rem; overflow: hidden; }
.faq-question { padding: 1.1rem 1.3rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 0.95rem; }
.faq-question:hover { background: #f8fafc; }
.faq-icon { font-size: 1.2rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.3rem; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.faq-item.active .faq-answer { padding: 0 1.3rem 1.1rem; max-height: 400px; }

/* Content Pages */
.content-hero { background: linear-gradient(135deg, #0f766e, #134e4a); color: white; padding: 3rem 0; }
.content-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.content-hero p { opacity: 0.9; font-size: 1rem; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.8rem; }
.breadcrumb a:hover { text-decoration: underline; }

.content-section { padding: 2.5rem 0; }
.content-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.content-section h3 { font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.7rem; color: var(--primary-dark); }
.content-section p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.content-section ul { margin-left: 1.5rem; margin-bottom: 1rem; color: var(--text-light); }
.content-section ul li { margin-bottom: 0.5rem; line-height: 1.7; }
.content-section strong { color: var(--text); }

.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; }
.sidebar-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.2rem; }
.sidebar-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.8rem; }
.sidebar-card .price-tag { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.sidebar-card .price-tag span { font-size: 0.85rem; color: var(--text-light); }

.info-box { background: #f0fdfa; border-left: 4px solid var(--primary); padding: 1.2rem; border-radius: 0 8px 8px 0; margin: 1.2rem 0; }
.info-box p { margin: 0; color: var(--primary-dark); font-weight: 500; }

/* Table */
.data-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.data-table th { background: var(--primary); color: white; padding: 0.8rem; text-align: left; font-size: 0.9rem; }
.data-table td { padding: 0.8rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-light); }
.data-table tr:hover td { background: #f8fafc; }

/* CTA */
.cta-banner { background: linear-gradient(135deg, #0f766e, #134e4a); color: white; border-radius: 20px; padding: 3rem; text-align: center; margin: 2rem 0; }
.cta-banner h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.7rem; }
.cta-banner p { font-size: 1rem; opacity: 0.9; margin-bottom: 1.2rem; }

/* Footer */
.footer { background: #0f172a; color: #94a3b8; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 2rem; }
.footer-brand .logo { color: white; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 36px; height: 36px; background: #1e293b; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; transition: background 0.2s; }
.footer-social a:hover { background: var(--primary); }
.footer h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact p { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.88rem; }
.footer-contact a { color: white; font-weight: 600; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }

/* Mobile */
@media (max-width: 1024px) {
  .hero-grid, .content-grid { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero h1, .content-hero h1 { font-size: 1.8rem; }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav.active { display: flex; }
  .mobile-menu-btn { display: block; }
  .card-grid-4, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
}
