/* Ooty Cabz Taxi Service - Main Stylesheet */
:root {
  --primary: #0d6efd;
  --primary-dark: #0b5ed7;
  --secondary: #198754;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --border: #e2e8f0;
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-stack); color: var(--dark); line-height: 1.6; background-color: #ffffff; }

/* Global Utilities */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.max-800 { max-width: 800px; margin: 0 auto; }
.section { padding: 65px 0; }
.bg-light { background-color: var(--light); }
.text-center { text-align: center; }
.text-left { text-align: left; }

.subheading { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1.2px; display: block; margin-bottom: 6px; }
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 15px; font-weight: 800; }
h2 { font-size: 2.1rem; margin-bottom: 30px; font-weight: 700; }

/* Buttons */
.btn { display: inline-block; padding: 12px 24px; border-radius: 6px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: background 0.2s ease, transform 0.1s ease; text-align: center; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--primary); color: #ffffff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--dark); color: #ffffff; }
.btn-whatsapp { background: #25d366; color: #ffffff; }
.btn-whatsapp:hover { background: #1eb954; }
.btn-full { width: 100%; display: block; }

/* Top Announcement Bar */
.top-bar { background: var(--dark); color: #cbd5e1; font-size: 0.85rem; padding: 8px 0; border-bottom: 1px solid #334155; }
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: #38bdf8; text-decoration: none; font-weight: 600; }

/* Navigation Bar */
.navbar { position: sticky; top: 0; background: #ffffff; box-shadow: 0 2px 12px rgba(0,0,0,0.06); z-index: 1000; padding: 16px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand-logo { font-size: 1.6rem; font-weight: 800; text-decoration: none; color: var(--dark); }
.brand-logo span { color: var(--primary); }
.nav-menu { display: flex; gap: 20px; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu a:hover { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 25px; height: 3px; background: var(--dark); border-radius: 2px; }

/* Hero Section */
.hero { background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('assets/ooty-sightseeing.jpg') center/cover no-repeat; color: #ffffff; padding: 90px 0 80px; }
.hero-content { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center; }
.badge { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: inline-block; margin-bottom: 15px; }
.hero-ctas { display: flex; gap: 15px; margin-top: 25px; flex-wrap: wrap; }

.hero-card { background: #ffffff; color: var(--dark); padding: 25px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.hero-card h3 { font-size: 1.25rem; margin-bottom: 15px; color: var(--dark); }
.hero-card form { display: flex; flex-direction: column; gap: 12px; }
.hero-card input, .hero-card select { padding: 11px; border: 1px solid var(--border); border-radius: 6px; font-size: 0.9rem; font-family: inherit; }
.hero-card input:focus, .hero-card select:focus { outline: 2px solid var(--primary); }

/* About Us */
.about-img-box { position: relative; }
.about-img-box img { width: 100%; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.experience-card { position: absolute; bottom: 20px; right: 20px; background: var(--primary); color: #fff; padding: 15px 20px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.experience-card h4 { font-size: 1.4rem; font-weight: 800; }
.experience-card p { font-size: 0.85rem; }
.check-list { list-style: none; margin-top: 15px; }
.check-list li { padding: 8px 0; font-weight: 500; font-size: 0.95rem; }

/* Grids & Cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }

.card { background: #ffffff; border: 1px solid var(--border); border-radius: 10px; padding: 20px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.03); transition: transform 0.2s ease; }
.card:hover { transform: translateY(-4px); }
.card-img-wrapper { height: 180px; margin: -20px -20px 15px -20px; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--gray); }
.card .tag { font-weight: 600; color: var(--primary); margin-bottom: 8px; font-size: 0.85rem; }

/* Package Cards */
.pkg-card { background: #ffffff; border: 1px solid var(--border); border-radius: 10px; padding: 30px 25px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); display: flex; flex-direction: column; justify-content: space-between; }
.pkg-card.featured { border: 2px solid var(--primary); position: relative; }
.popular-badge { position: absolute; top: -14px; right: 20px; background: var(--primary); color: #fff; font-size: 0.75rem; padding: 4px 12px; border-radius: 12px; font-weight: 700; text-transform: uppercase; }
.price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin: 12px 0; }
.pkg-features { list-style: none; margin: 15px 0 25px; text-align: left; }
.pkg-features li { padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 0.9rem; color: #334155; }

/* Why Us Feature Boxes */
.feature-box { background: #ffffff; padding: 30px 20px; border-radius: 10px; border: 1px solid var(--border); }
.feature-box .icon { font-size: 2.5rem; margin-bottom: 12px; }
.feature-box h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-box p { font-size: 0.9rem; color: var(--gray); }

/* Reviews */
.review-card { background: #ffffff; border: 1px solid var(--border); border-radius: 10px; padding: 25px; }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 10px; }
.review-card p { font-style: italic; font-size: 0.95rem; color: #334155; margin-bottom: 12px; }
.review-card .author { font-style: normal; font-size: 0.85rem; color: var(--primary); }

/* FAQ Accordion */
.faq-accordion { margin-top: 25px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; padding: 18px 0; background: none; border: none; font-size: 1.05rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; color: var(--dark); font-family: inherit; }
.faq-answer { display: none; padding-bottom: 18px; color: var(--gray); font-size: 0.95rem; }

/* Contact Section */
.info-details p { margin-bottom: 15px; font-size: 0.95rem; }
.info-details a { color: var(--primary); text-decoration: none; }

/* Footer */
.footer { background: var(--dark); color: #94a3b8; padding: 35px 0; font-size: 0.9rem; border-top: 1px solid #334155; }
.footer-links { margin-top: 10px; }
.footer-links a { color: #e2e8f0; text-decoration: none; margin: 0 8px; }

/* Sticky Floating Buttons */
.floating-ctas { position: fixed; bottom: 18px; right: 18px; display: flex; gap: 10px; z-index: 9999; }
.float-btn { padding: 12px 20px; border-radius: 30px; font-weight: 700; text-decoration: none; color: #ffffff; box-shadow: 0 6px 20px rgba(0,0,0,0.3); font-size: 0.9rem; transition: transform 0.2s; }
.float-btn:hover { transform: translateY(-2px); }
.call-btn { background: var(--primary); }
.wa-btn { background: #25d366; }

/* Responsive Adjustments */
@media (max-width: 900px) {
  .hero-content, .grid-2 { grid-template-columns: 1fr; }
  .top-bar-flex { justify-content: center; text-align: center; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; padding: 25px; box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
  .nav-menu.active { display: flex; }
  .nav-toggle { display: flex; }
}
