:root {
  --primary: #f5a623;
  --primary-dark: #d4891a;
  --secondary: #1a1a2e;
  --dark: #0d0d1a;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --light-bg: #f8f8fc;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* TOP BAR */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-info, .top-contact { display: flex; gap: 20px; align-items: center; }
.top-info span, .top-contact a { color: rgba(255,255,255,0.85); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.top-contact a:hover { color: var(--primary); }
.wa-btn { background: #25d366; color: white!important; padding: 4px 12px; border-radius: 20px; font-weight: 600; }

/* NAVBAR */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo img { height: 55px; object-fit: contain; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 8px; }
.nav-links a { text-decoration: none; color: var(--secondary); font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: all 0.2s; font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(245,166,35,0.08); }
.nav-call-btn { background: var(--primary)!important; color: var(--white)!important; border-radius: 30px!important; font-weight: 600!important; padding: 10px 22px!important; }
.nav-call-btn:hover { background: var(--primary-dark)!important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--secondary); border-radius: 2px; transition: all 0.3s; display: block; }

/* HERO SLIDER */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: linear-gradient(to right, rgba(13,13,26,0.75) 40%, rgba(13,13,26,0.3)), url('assets/hero1.jpg'); }
.hero-slide:nth-child(2) { background-image: linear-gradient(to right, rgba(13,13,26,0.75) 40%, rgba(13,13,26,0.3)), url('assets/hero2.jpg'); }
.hero-slide:nth-child(3) { background-image: linear-gradient(to right, rgba(13,13,26,0.75) 40%, rgba(13,13,26,0.3)), url('assets/hero3.jpg'); }
.hero-content {
  position: relative; z-index: 5;
  height: 100%;
  display: flex; align-items: center;
}
.hero-text { max-width: 580px; }
.hero-badge {
  display: inline-block; background: var(--primary); color: var(--white);
  padding: 6px 18px; border-radius: 30px; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; margin-bottom: 18px; text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero-title span { color: var(--primary); }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 14px 30px; border-radius: 30px; text-decoration: none;
  font-weight: 700; font-size: 16px; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); }
.btn-outline {
  border: 2px solid var(--white); color: var(--white);
  padding: 14px 30px; border-radius: 30px; text-decoration: none;
  font-weight: 600; font-size: 16px; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--white); color: var(--secondary); }
.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 6; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; }
.slider-dot.active { background: var(--primary); transform: scale(1.3); }

/* BOOKING FORM */
.booking-section {
  background: var(--secondary);
  padding: 50px 0 40px;
}
.booking-section .section-tag { color: var(--primary); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.booking-section h2 { font-family: var(--font-heading); font-size: clamp(28px,4vw,46px); color: var(--white); margin-bottom: 8px; }
.booking-section p { color: rgba(255,255,255,0.65); margin-bottom: 30px; }
.booking-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.07); border-radius: var(--radius); padding: 5px; margin-bottom: 28px; width: fit-content; }
.tab-btn {
  padding: 10px 24px; border-radius: 8px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  background: transparent; color: rgba(255,255,255,0.6); transition: all 0.25s;
}
.tab-btn.active { background: var(--primary); color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.booking-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06); color: var(--white);
  font-family: var(--font-body); font-size: 15px; transition: all 0.25s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: var(--secondary); color: var(--white); }
.form-submit { display: flex; align-items: flex-end; }
.form-submit .btn-primary { width: 100%; justify-content: center; padding: 14px; border: none; cursor: pointer; font-family: var(--font-body); font-size: 16px; }
.autocomplete-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--secondary); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; z-index: 100; max-height: 200px; overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.autocomplete-dropdown div { padding: 10px 14px; cursor: pointer; color: var(--white); font-size: 14px; }
.autocomplete-dropdown div:hover { background: rgba(245,166,35,0.15); color: var(--primary); }
.input-wrap { position: relative; }

/* SECTIONS COMMON */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { color: var(--primary); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.section-title { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 54px); color: var(--secondary); line-height: 1.1; }
.section-title span { color: var(--primary); }
.section-sub { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 14px auto 0; line-height: 1.7; }

/* ABOUT */
.about-section { background: var(--light-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 20px; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 440px; object-fit: cover; border-radius: 20px; }
.about-badge {
  position: absolute; bottom: 28px; right: 28px;
  background: var(--primary); color: var(--white);
  padding: 16px 22px; border-radius: 14px; text-align: center;
  box-shadow: var(--shadow-strong);
}
.about-badge .num { font-family: var(--font-heading); font-size: 42px; line-height: 1; display: block; }
.about-badge .lbl { font-size: 13px; font-weight: 600; }
.about-text h2 { font-family: var(--font-heading); font-size: clamp(32px,4vw,48px); color: var(--secondary); margin-bottom: 18px; }
.about-text h2 span { color: var(--primary); }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 16px; }
.about-stats { display: flex; gap: 24px; margin-top: 30px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-heading); font-size: 38px; color: var(--primary); display: block; line-height: 1; }
.stat .lbl { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* WHY CHOOSE */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
  background: var(--light-bg); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: all 0.3s; border: 2px solid transparent;
}
.why-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 26px; color: var(--white);
}
.why-card h3 { font-size: 18px; color: var(--secondary); margin-bottom: 10px; font-weight: 700; }
.why-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* CARS */
.cars-section { background: var(--light-bg); }
.cars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.car-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.car-img { height: 200px; overflow: hidden; }
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.car-card:hover .car-img img { transform: scale(1.05); }
.car-info { padding: 22px 20px; }
.car-name { font-family: var(--font-heading); font-size: 26px; color: var(--secondary); }
.car-type { color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.car-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.car-feature { background: var(--light-bg); padding: 4px 12px; border-radius: 20px; font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.car-price { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 14px; }
.price-from { font-size: 13px; color: var(--text-light); }
.price-val { font-family: var(--font-heading); font-size: 24px; color: var(--primary); }
.car-book-btn { background: var(--primary); color: var(--white); border: none; padding: 10px 20px; border-radius: 30px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.car-book-btn:hover { background: var(--primary-dark); }

/* ROUTES */
.routes-section { background: var(--white); }
.routes-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; justify-content: center; }
.route-filter-btn {
  padding: 8px 20px; border-radius: 30px; border: 2px solid var(--border);
  background: var(--white); color: var(--text); font-family: var(--font-body);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.route-filter-btn:hover, .route-filter-btn.active { border-color: var(--primary); background: var(--primary); color: var(--white); }
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.route-card {
  background: var(--light-bg); border-radius: var(--radius); padding: 18px 20px;
  border: 1.5px solid var(--border); transition: all 0.25s; text-decoration: none;
  display: block;
}
.route-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(245,166,35,0.15); transform: translateY(-3px); }
.route-from-to { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.route-city { font-weight: 700; color: var(--secondary); font-size: 15px; }
.route-arrow { color: var(--primary); font-size: 14px; }
.route-meta { display: flex; justify-content: space-between; align-items: center; }
.route-dist { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.route-price { font-weight: 700; color: var(--primary); font-size: 16px; }
.view-all-btn { text-align: center; margin-top: 36px; }

/* TESTIMONIALS */
.testimonials-section { background: var(--secondary); padding: 80px 0; }
.testimonials-section .section-title { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.06); border-radius: 18px; padding: 28px;
  border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testi-stars { color: var(--primary); font-size: 16px; margin-bottom: 14px; }
.testi-text { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 22px; color: var(--white); flex-shrink: 0; }
.testi-name { font-weight: 700; color: var(--white); }
.testi-route { font-size: 13px; color: rgba(255,255,255,0.5); }

/* FAQ */
.faq-section { background: var(--light-bg); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; color: var(--secondary); font-size: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-icon { color: var(--primary); font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.35s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { color: var(--text-light); line-height: 1.7; font-size: 15px; }

/* CONTACT FORM */
.contact-form-section { background: var(--white); }
.contact-form-bg {
  position: relative; border-radius: 24px; overflow: hidden;
  min-height: 500px;
}
.contact-slider { position: absolute; inset: 0; }
.contact-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s;
}
.contact-slide:nth-child(1) { background-image: url('assets/hero1.jpg'); }
.contact-slide:nth-child(2) { background-image: url('assets/hero2.jpg'); }
.contact-slide:nth-child(3) { background-image: url('assets/hero3.jpg'); }
.contact-slide.active { opacity: 1; }
.contact-overlay { position: absolute; inset: 0; background: rgba(13,13,26,0.7); }
.contact-form-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; min-height: 500px;
}
.contact-info-side { padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; }
.contact-info-side h2 { font-family: var(--font-heading); font-size: 42px; color: var(--white); margin-bottom: 10px; }
.contact-info-side p { color: rgba(255,255,255,0.7); margin-bottom: 30px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85); }
.contact-detail-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 17px; flex-shrink: 0; }
.contact-detail a { color: rgba(255,255,255,0.85); text-decoration: none; }
.contact-detail a:hover { color: var(--primary); }
.contact-form-side {
  background: var(--white); padding: 50px 40px; border-radius: 0 24px 24px 0;
}
.contact-form-side h3 { font-family: var(--font-heading); font-size: 30px; color: var(--secondary); margin-bottom: 24px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-full { grid-column: 1 / -1; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.cf-group input, .cf-group select, .cf-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--light-bg);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  transition: border-color 0.2s; resize: vertical;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { outline: none; border-color: var(--primary); background: var(--white); }
.cf-submit { background: var(--primary); color: var(--white); border: none; padding: 14px 32px; border-radius: 30px; font-family: var(--font-body); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; width: 100%; margin-top: 8px; }
.cf-submit:hover { background: var(--primary-dark); }
.success-msg { background: #e8f5e9; color: #2e7d32; padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; border: 1px solid #a5d6a7; display: none; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 60%, var(--dark));
  padding: 80px 0 60px; text-align: center;
}
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(36px,5vw,64px); color: var(--white); }
.page-hero h1 span { color: var(--primary); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; margin-top: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 16px; color: rgba(255,255,255,0.5); font-size: 14px; }
.breadcrumb a { color: var(--primary); text-decoration: none; }

/* ROUTE PAGE */
.route-detail { padding: 60px 0; }
.route-detail-card { background: var(--light-bg); border-radius: 20px; padding: 40px; margin-bottom: 32px; }
.route-title-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.route-title-bar h1 { font-family: var(--font-heading); font-size: 42px; color: var(--secondary); }
.route-meta-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.chip { padding: 8px 18px; border-radius: 30px; font-size: 14px; font-weight: 600; }
.chip-primary { background: rgba(245,166,35,0.15); color: var(--primary-dark); }
.chip-secondary { background: rgba(26,26,46,0.08); color: var(--secondary); }
.fare-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.fare-table th { background: var(--secondary); color: var(--white); padding: 14px 18px; text-align: left; }
.fare-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.fare-table tr:hover td { background: rgba(245,166,35,0.05); }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-logo { height: 50px; object-fit: contain; margin-bottom: 16px; filter: brightness(10); }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.contact-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 14px; }
.contact-list li i { color: var(--primary); width: 16px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s; }
.social-links a:hover { background: var(--primary); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; color: rgba(255,255,255,0.4); font-size: 13px; }

/* FLOAT BUTTONS */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 22px; z-index: 999;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4); transition: all 0.3s;
}
.call-float {
  position: fixed; bottom: 26px; right: 22px; z-index: 999;
  width: 54px; height: 54px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(245,166,35,0.4); transition: all 0.3s;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 18px rgba(245,166,35,0.4); }
  50% { box-shadow: 0 4px 32px rgba(245,166,35,0.7); }
}

/* PAGE INNER STYLES */
.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 40px; }
.service-card { background: var(--white); border-radius: 18px; padding: 36px 28px; box-shadow: var(--shadow); border: 2px solid transparent; transition: all 0.3s; text-align: center; }
.service-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.service-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--white); margin: 0 auto 20px; }
.service-card h3 { font-family: var(--font-heading); font-size: 26px; color: var(--secondary); margin-bottom: 12px; }
.service-card p { color: var(--text-light); line-height: 1.7; font-size: 15px; }
.service-card .price-tag { display: inline-block; background: rgba(245,166,35,0.12); color: var(--primary-dark); padding: 6px 16px; border-radius: 20px; font-weight: 700; margin-top: 16px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .about-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--white);
    padding: 20px; box-shadow: var(--shadow); gap: 4px;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .navbar { position: relative; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .contact-form-content { grid-template-columns: 1fr; }
  .contact-info-side { padding: 40px 28px; }
  .contact-form-side { border-radius: 0; padding: 36px 24px; }
  .cf-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { height: 100svh; }
  .hero-title { font-size: 42px; }
  .top-info { display: none; }
  .booking-form { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .contact-form-bg { border-radius: 0; }
  .booking-tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 10px 12px; font-size: 13px; }
}
