/* =============================================
   TWINKLE GROUPS - MAIN STYLESHEET
   Business: Twinkle Groups, Tiruppur
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #1a1a6e;
  --primary-dark: #0d0d45;
  --primary-light: #2d2da8;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --accent-light: #fbbf24;
  --secondary: #e63946;
  --success: #06d6a0;
  --white: #ffffff;
  --light: #f8f9ff;
  --light-gray: #f1f3f9;
  --gray: #6b7280;
  --dark-gray: #374151;
  --dark: #111827;
  --text: #1f2937;
  --text-light: #6b7280;
  --border: #e5e7eb;

  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-card: 0 8px 32px rgba(26,26,110,0.12);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); outline: none; }

/* ---- Utility Classes ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-white { color: var(--white); }

.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(245,166,35,0.15);
  color: var(--accent);
  margin-bottom: 12px;
}

.badge-white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ---- Section Headings ---- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span { color: var(--accent); }

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 18px 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(26,26,110,0.1);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-logo-text { color: var(--primary); }
.navbar.scrolled .nav-logo-sub { color: var(--gray); }
.navbar.scrolled .nav-link { color: var(--dark); }
.navbar.scrolled .nav-link:hover { color: var(--accent); }
.navbar.scrolled .hamburger span { background: var(--primary); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.nav-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-light);
  background: rgba(255,255,255,0.1);
}

.nav-link.active { color: var(--accent-light); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
}

.dropdown-item .icon { font-size: 18px; }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,166,35,0.5) !important;
  background: rgba(255,255,255,0.15) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-dark);
  z-index: 999;
  padding: 100px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(255,255,255,0.1);
  color: var(--accent-light);
}

.mobile-nav-link .icon { font-size: 22px; }

.mobile-cta-area {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,166,35,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26,26,110,0.25);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 18px 42px; font-size: 17px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-circle-1 {
  width: 700px;
  height: 700px;
  background: var(--accent);
  top: -200px;
  right: -200px;
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  background: var(--white);
  bottom: -150px;
  left: -100px;
}

.hero-circle-3 {
  width: 200px;
  height: 200px;
  background: var(--accent-light);
  top: 30%;
  right: 10%;
  opacity: 0.12;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title .highlight {
  color: var(--accent-light);
  position: relative;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.service-tag {
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.service-tag:hover {
  background: rgba(245,166,35,0.25);
  border-color: var(--accent);
  color: var(--accent-light);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-light);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 580px;
  z-index: 1;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
}

.hero-service-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.hero-service-card:hover {
  background: rgba(245,166,35,0.2);
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
}

.hero-service-card .card-icon { font-size: 36px; margin-bottom: 10px; }
.hero-service-card .card-name { font-size: 14px; font-weight: 600; color: var(--white); }
.hero-service-card .card-sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-indicator .arrow {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================
   SERVICE CARDS (Landing Page)
   ============================================ */
.services-section {
  background: var(--light);
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26,26,110,0.2);
}

.service-card-banner {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-card-banner.catering {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.service-card-banner.holidays {
  background: linear-gradient(135deg, #0652DD, #1289A7);
}

.service-card-banner.cabs {
  background: linear-gradient(135deg, #f9ca24, #f0932b);
}

.service-card-banner.tech {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.service-card-banner .big-icon {
  font-size: 80px;
  opacity: 0.3;
  position: absolute;
  right: -10px;
  bottom: -10px;
}

.service-card-banner .main-icon {
  font-size: 60px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-body {
  padding: 24px;
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.service-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.service-card-feature::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--success), #00b894);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card-link:hover {
  color: var(--accent);
  gap: 10px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: 90px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover::before { opacity: 1; }

.why-card:hover .why-icon,
.why-card:hover .why-title,
.why-card:hover .why-desc { color: var(--white); }

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.why-icon {
  font-size: 44px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.why-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */
.locations-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.locations-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(245,166,35,0.08);
  top: -200px;
  right: -200px;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
}

.location-chip:hover {
  background: rgba(245,166,35,0.25);
  border-color: var(--accent);
  transform: translateY(-3px);
  color: var(--accent-light);
}

.location-chip .pin { font-size: 18px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 90px 0;
  background: var(--light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.quote-mark {
  font-size: 60px;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.author-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -250px;
  left: -200px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -150px;
  right: -100px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-section {
  background: var(--primary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .number {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent-light);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-item .label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero.catering {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #ff6b6b 100%);
}

.page-hero.holidays {
  background: linear-gradient(135deg, #1a1a6e 0%, #0652DD 50%, #1289A7 100%);
}

.page-hero.cabs {
  background: linear-gradient(135deg, #d35400 0%, #f39c12 50%, #f9ca24 100%);
}

.page-hero.tech {
  background: linear-gradient(135deg, #2d1b69 0%, #6c5ce7 50%, #a29bfe 100%);
}

.page-hero.contact-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--accent-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.5; }

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-overview {
  padding: 80px 0;
  background: var(--white);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-overview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
}

.img-placeholder .big-emoji { font-size: 80px; }
.img-placeholder .img-caption { font-size: 18px; font-weight: 600; opacity: 0.9; }
.img-placeholder .img-sub { font-size: 14px; opacity: 0.7; }

.service-overview-content .badge { margin-bottom: 16px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(245,166,35,0.08);
  transform: translateX(4px);
}

.feature-item .fi-icon { font-size: 24px; flex-shrink: 0; }
.feature-item-text h4 { font-size: 14px; font-weight: 700; color: var(--primary); }
.feature-item-text p { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* Packages/Pricing Cards */
.packages-section {
  padding: 80px 0;
  background: var(--light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: var(--accent);
  transform: scale(1.03);
}

.package-card:hover {
  border-color: var(--accent);
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.package-card.featured:hover { transform: scale(1.05) translateY(-4px); }

.package-popular {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-icon { font-size: 48px; margin-bottom: 16px; }
.package-name { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.package-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin: 16px 0;
  font-family: var(--font-heading);
}

.package-price span { font-size: 16px; font-weight: 500; color: var(--text-light); }

.package-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
  text-align: left;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.package-feature.included::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--success), #00b894);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.package-feature.excluded { color: var(--text-light); text-decoration: line-through; }
.package-feature.excluded::before {
  content: "✗";
  width: 20px;
  height: 20px;
  background: #fee2e2;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   CONTACT & FORMS
   ============================================ */
.contact-section {
  padding: 90px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(245,166,35,0.4);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.form-title { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,26,110,0.08);
}

.form-group textarea { height: 120px; resize: vertical; }

/* ============================================
   QUICK QUOTE SECTION
   ============================================ */
.quote-section {
  background: var(--light);
  padding: 80px 0;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.quote-step {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.quote-step.active,
.quote-step:hover {
  border-color: var(--accent);
  background: rgba(245,166,35,0.06);
}

.quote-step .step-icon { font-size: 32px; margin-bottom: 8px; }
.quote-step .step-label { font-size: 13px; font-weight: 600; color: var(--text); }

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-section { padding: 80px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,110,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { margin-bottom: 20px; display: inline-flex; }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-item .icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-copyright span { color: var(--accent-light); }

.footer-links-bottom {
  display: flex;
  gap: 20px;
}

.footer-links-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links-bottom a:hover { color: var(--accent-light); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }

.whatsapp-tooltip {
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 997;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   QUICK QUOTE POPUP
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.popup-overlay.open { opacity: 1; visibility: visible; }

.popup-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
}

.popup-overlay.open .popup-card { transform: scale(1) translateY(0); }

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.popup-close:hover { background: var(--secondary); color: white; }

/* ============================================
   VEHICLE SELECTOR (Cabs page)
   ============================================ */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.vehicle-card:hover, .vehicle-card.selected {
  border-color: var(--accent);
  background: rgba(245,166,35,0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.vehicle-icon { font-size: 52px; margin-bottom: 12px; }
.vehicle-name { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.vehicle-capacity { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.vehicle-price { font-size: 22px; font-weight: 800; color: var(--accent); }
.vehicle-price span { font-size: 13px; color: var(--text-light); font-weight: 400; }

/* ============================================
   TOUR PACKAGES (Holidays page)
   ============================================ */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.tour-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  position: relative;
  overflow: hidden;
}

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-body { padding: 24px; }
.tour-location { font-size: 12px; color: var(--text-light); margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.tour-title { font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.tour-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }

.tour-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tour-price { font-size: 24px; font-weight: 800; color: var(--accent); }
.tour-price span { font-size: 12px; color: var(--text-light); font-weight: 400; }

/* ============================================
   TECH / PORTFOLIO
   ============================================ */
.tech-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tech-service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tech-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.tech-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tech-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.tech-service-title { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.tech-service-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  padding: 4px 12px;
  background: var(--light);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

/* Map placeholder */
.map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-light);
  border: 2px dashed var(--border);
  margin-top: 40px;
}

.map-placeholder .map-icon { font-size: 48px; }
