/* ==========================================
   New Bharat Travels - Core Design System
   Website: bushireinchandigarh.com
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary: #0b1329;
  --primary-light: #1c2541;
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-gold: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --success: #059669;
  --success-hover: #047857;
  --success-glow: rgba(5, 150, 105, 0.15);
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --border-color: #e2e8f0;
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px var(--accent-glow);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

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

/* Common Layout Components */
section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.section-header .badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--accent-glow);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Typography Helpers */
.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-normal);
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-card);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--bg-card);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
}

.btn-success {
  background-color: var(--success);
  color: var(--bg-card);
}

.btn-success:hover {
  background-color: var(--success-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-card);
  transform: translateY(-2px);
}

.btn-outline-white {
  border-color: var(--text-light);
  color: var(--text-light);
  background-color: transparent;
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 19, 41, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.top-bar {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info a:hover {
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a:hover {
  color: var(--accent-gold);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo h1 span {
  color: var(--accent-gold);
}

.logo p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

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

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-normal);
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown:hover .nav-link::after,
.nav-item-dropdown .nav-link.active::after,
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

/* Dropdown Menu styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--primary);
  min-width: 310px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1010;
}

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

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: rgba(241, 245, 249, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
  text-align: left;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
  padding-left: 24px;
}


.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition-normal);
  background-color: var(--text-light);
}

/* Hero Section */
.hero {
  padding: 140px 0 60px 0;
  background: linear-gradient(135deg, rgba(7, 11, 22, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%), 
              url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
  color: var(--text-light);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
  width: fit-content;
}

.hero-badge i {
  font-size: 0.9rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold);
  opacity: 0.35;
  border-radius: 2px;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(241, 245, 249, 0.8);
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 36px;
}

.hero-rating-stars {
  color: var(--accent-gold);
  display: flex;
  gap: 4px;
}

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

.trust-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.trust-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.trust-card i {
  font-size: 1.3rem;
  color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.1);
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card-info h4 {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2px;
  font-weight: 600;
}

.trust-card-info p {
  font-size: 0.75rem;
  color: rgba(241, 245, 249, 0.55);
  margin: 0;
}

/* Calculator Widget */
.calc-card {
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.calc-card h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  text-align: center;
}

.calc-card p.calc-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.calc-tabs {
  display: flex;
  background-color: var(--bg-main);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.calc-tab-btn {
  flex: 1;
  padding: 8px 12px;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.calc-tab-btn.active {
  background-color: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.calc-form-group {
  margin-bottom: 16px;
}

.calc-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-light);
}

.calc-form-group select,
.calc-form-group input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  background-color: var(--bg-main);
  transition: var(--transition-fast);
}

.calc-form-group select:focus,
.calc-form-group input:focus {
  border-color: var(--accent);
  background-color: var(--bg-card);
}

.calc-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-result-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background-color: rgba(217, 119, 6, 0.05);
  border: 1px dashed rgba(217, 119, 6, 0.3);
  text-align: center;
}

.calc-result-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.calc-total-fare {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-hover);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 8px;
}

.calc-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.calc-cta-btn {
  width: 100%;
  margin-top: 16px;
}

/* Services Overview */
.services-section {
  background-color: var(--bg-card);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 19, 41, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(11, 19, 41, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.75rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
  background-color: var(--primary);
  color: var(--text-light);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

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

/* Fleet Highlights */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.fleet-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

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

.fleet-img-container {
  position: relative;
  height: 220px;
  background-color: #e2e8f0;
  overflow: hidden;
}

.fleet-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.fleet-card:hover .fleet-img-container img {
  transform: scale(1.05);
}

.fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.fleet-content {
  padding: 24px;
}

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.fleet-header h3 {
  font-size: 1.25rem;
}

.fleet-price {
  text-align: right;
}

.fleet-price span.price-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.fleet-price span.price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fleet-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  min-height: 40px;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  margin-bottom: 20px;
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 500;
}

.fleet-spec-item i {
  color: var(--accent);
}

.fleet-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

/* Why Choose Us & Stats */
.why-section {
  background-color: var(--primary);
  color: var(--text-light);
}

.why-section .section-header h2 {
  color: var(--text-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-feature-text h3 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.why-feature-text p {
  color: rgba(241, 245, 249, 0.75);
  font-size: 0.95rem;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
}

.stat-box:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 5rem;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  color: rgba(226, 232, 240, 0.8);
  font-weight: 800;
}

.rating {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}

.user-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.user-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Tariff Grid / Tables */
.tariff-section {
  background-color: var(--bg-card);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: 32px;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.tariff-table th, 
.tariff-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
}

.tariff-table th {
  background-color: var(--primary);
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.tariff-table tr:last-child td {
  border-bottom: none;
}

.tariff-table tbody tr:hover {
  background-color: var(--bg-main);
}

.vehicle-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vehicle-icon {
  font-size: 1.25rem;
  color: var(--accent);
}

.vehicle-name {
  font-weight: 600;
  color: var(--primary);
}

.fare-badge {
  background-color: var(--accent-glow);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-glow);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  min-width: 48px;
}

.contact-info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info-text a:hover {
  color: var(--accent);
}

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

.contact-form-container h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.contact-form-container p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background-color: var(--bg-card);
}

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

.form-btn-container {
  grid-column: span 2;
  margin-top: 12px;
}

.form-btn-container .btn {
  width: 100%;
}

.contact-map-section {
  padding: 0 0 80px 0;
}

.map-container {
  width: 100%;
  height: 450px;
  background-color: #cbd5e1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--text-light);
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(241, 245, 249, 0.8);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Inner Page Banner */
.page-banner {
  padding: 140px 0 60px 0;
  background: linear-gradient(135deg, rgba(11, 19, 41, 0.95) 0%, rgba(28, 37, 65, 0.9) 100%), 
              url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&q=80&w=1200') no-repeat center center/cover;
  color: var(--text-light);
  text-align: center;
}

.page-banner h1 {
  font-size: 2.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.7);
}

.breadcrumbs a {
  color: var(--accent-gold);
}

/* Footer Styles */
footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 80px 0 24px 0;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-about p {
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-social a:hover {
  background-color: var(--accent-gold) !important;
  color: var(--primary) !important;
  transform: translateY(-3px) scale(1.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact-item a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.6);
}

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

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

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.float-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-call {
  background-color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-card);
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-card);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-content {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Internal Subpages Premium Styling */
.internal-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: start;
}

.internal-image-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  height: 380px;
}

.internal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
  display: block;
}

.internal-image-container:hover .internal-image {
  transform: scale(1.05);
}

.internal-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.internal-stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.internal-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.internal-stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
}

.internal-stat-info {
  display: flex;
  flex-direction: column;
}

.internal-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

.internal-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.internal-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.internal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.internal-feature-item:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateX(4px);
}

.internal-feature-item i {
  color: var(--accent);
  background-color: rgba(245, 158, 11, 0.15);
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.internal-feature-item-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.internal-feature-item-text strong {
  color: var(--primary);
  font-weight: 600;
}

.internal-enquiry-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  height: fit-content;
}

.internal-enquiry-card h3 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.internal-enquiry-card h3 i {
  color: var(--accent);
  font-size: 1.2rem;
}

.internal-enquiry-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.4;
}

.internal-enquiry-card .contact-form {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

.internal-enquiry-card .contact-form .form-group,
.internal-enquiry-card .contact-form .form-btn-container,
.internal-enquiry-card .contact-form div {
  grid-column: span 1 !important;
}

/* Polished Tables */
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px 0;
  font-size: 0.92rem;
  text-align: left;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.tariff-table th {
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 600;
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.tariff-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  background-color: var(--bg-card);
}

.tariff-table tr:last-child td {
  border-bottom: none;
}

.tariff-table tr:nth-child(even) td {
  background-color: var(--bg-main);
}

.tariff-table td strong {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Responsiveness Media Queries */
@media (max-width: 1024px) {
  .internal-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding: 110px 0 40px 0;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-rating {
    justify-content: center;
  }
  .hero-trust-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 1.85rem;
  }
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 96px; /* below navbar */
    gap: 0;
    flex-direction: column;
    background-color: var(--primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--accent);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 18px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-item-dropdown {
    width: 100%;
  }
  
  .nav-item-dropdown .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  .nav-menu .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: none;
    padding: 0;
  }
  
  .nav-menu .dropdown-menu.show {
    display: block;
  }
  
  .nav-menu .dropdown-item {
    text-align: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(241, 245, 249, 0.7);
    font-size: 0.88rem;
  }
  
  .nav-menu .dropdown-item:hover {
    padding-left: 20px;
    color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.05);
  }

  
  .hero-trust-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .internal-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .top-bar {
    display: none; /* Hide top bar on mobile to save space */
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-full {
    grid-column: span 1;
  }
  
  .form-btn-container {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .calc-card {
    padding: 20px;
  }
  .calc-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* Logo Slider Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1644px);
  }
}

.logo-slider-track:hover {
  animation-play-state: paused !important;
}

