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

:root {
  --primary-gold: #fcb900;
  --primary-gold-hover: #e0a500;
  --primary-gold-light: #fef3c7;
  
  --dark-slate: #0b0f19;
  --dark-slate-light: #1e293b;
  --dark-slate-accent: #0f172a;
  
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  
  --border-color: #e2e8f0;
  --success-green: #25d366;
  --success-green-hover: #20ba5a;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 60px; /* Space for mobile sticky bottom bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-slate);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--dark-slate);
}

.btn-primary:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--success-green);
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background-color: var(--success-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  background-color: var(--primary-gold-light);
  color: var(--dark-slate);
}

/* Form Elements */
.form-group {
  margin-bottom: 16px;
  position: relative;
}

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

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 12px 14px 12px 40px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-white);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(252, 185, 0, 0.2);
}

textarea.form-control {
  min-height: 80px;
  resize: vertical;
}

/* Sections Styling */
section {
  padding: 80px 0;
}

.section-bg-light {
  background-color: var(--bg-light);
}

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

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold-hover);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-slate);
  color: var(--bg-white);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-info a, .top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-info a i {
  color: var(--primary-gold);
}

.top-bar-socials {
  display: flex;
  gap: 16px;
}

.top-bar-socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.top-bar-socials a:hover {
  color: var(--primary-gold);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* Header & Navbar */
header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon-wrapper {
  background: var(--dark-slate);
  color: var(--primary-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 2px solid var(--primary-gold);
}

.logo-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark-slate);
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-slate-light);
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary-gold-hover);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid var(--border-color);
}

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

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  padding-left: 24px;
}

.header-cta {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-slate);
}

@media (max-width: 1024px) {
  nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 20px;
    border-top: 1px solid var(--border-color);
  }

  nav.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    align-items: flex-start;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
  }

  .dropdown-menu li a {
    padding: 8px 0;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%), 
              url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
  background-size: cover;
  color: var(--bg-white);
  padding: 100px 0;
  overflow: hidden;
}

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

.hero-left {
  max-width: 650px;
}

.hero-tag {
  background-color: rgba(252, 185, 0, 0.15);
  color: var(--primary-gold);
  border: 1px solid rgba(252, 185, 0, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.hero-feature-item i {
  color: var(--primary-gold);
  background: rgba(252, 185, 0, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.enquiry-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.enquiry-card-header {
  background-color: var(--dark-slate);
  color: var(--bg-white);
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.enquiry-card-header h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.enquiry-card-header p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.enquiry-card-body {
  padding: 24px;
  color: var(--text-dark);
}

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

.enquiry-card-body .btn-primary {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  font-size: 1.05rem;
}

.enquiry-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.enquiry-note i {
  color: var(--primary-gold-hover);
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-left {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-features {
    align-items: center;
  }
  
  .hero-right {
    justify-content: center;
  }
}

/* Trust Strip */
.trust-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.trust-icon-box {
  background-color: var(--primary-gold-light);
  color: var(--primary-gold-hover);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.trust-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-info p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .trust-strip {
    margin-top: 0;
    border-radius: 0;
    padding: 40px 0;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(252, 185, 0, 0.5);
}

.service-img-wrapper {
  height: auto !important;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--dark-slate);
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

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

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

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

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

.service-card-link i {
  color: var(--primary-gold-hover);
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Fleet Section */
.fleet-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.fleet-tab-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-tab-btn:hover {
  border-color: var(--primary-gold);
  background-color: var(--primary-gold-light);
}

.fleet-tab-btn.active {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--dark-slate);
  box-shadow: var(--shadow-md);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.fleet-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 24px;
  text-align: center;
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fleet-card.hidden {
  display: none !important;
  opacity: 0;
  transform: scale(0.95);
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.fleet-header {
  margin-bottom: 16px;
}

.fleet-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fleet-capacity {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-light);
  padding: 4px 12px;
  border-radius: 50px;
}

.fleet-img-box {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.fleet-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

.fleet-card .btn {
  width: 100%;
}

/* Popular Routes Section */
.routes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.route-tag {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 14px 24px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.route-tag i {
  color: var(--primary-gold-hover);
  transition: transform 0.3s ease;
}

.route-tag:hover {
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: var(--primary-gold-light);
}

.route-tag:hover i {
  transform: translateX(4px);
}

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

.testimonial-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating-stars {
  color: var(--primary-gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

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

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

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-light);
}

.user-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

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

/* Footer Section */
footer {
  background-color: var(--dark-slate);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  font-size: 0.9rem;
}

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

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bg-white);
}

.footer-logo .logo-icon-wrapper {
  background: var(--dark-slate-light);
}

.footer-logo-text h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bg-white);
}

.footer-logo-text span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  display: block;
}

.footer-about-text {
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-social-icons a {
  background-color: rgba(255,255,255,0.05);
  color: var(--bg-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background-color: var(--primary-gold);
  color: var(--dark-slate);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--bg-white);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

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

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-contact-item-text p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-item-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

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

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Page Header Layout */
.page-header-bg {
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
  border-bottom: 2px solid var(--primary-gold);
}

.page-header-bg h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-header-bg p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Internal Pages Cards Grid */
.page-content-wrapper {
  padding: 80px 0;
}

/* Sticky Contact Actions */
/* Mobile Bottom Bar (Screen < 768px) */
.sticky-mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  grid-template-columns: 1fr 1fr;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
}

.sticky-btn.call {
  background-color: var(--primary-gold);
  color: var(--dark-slate);
}

.sticky-btn.whatsapp {
  background-color: var(--success-green);
}

/* Desktop Floating Widgets (Screen >= 768px) */
.desktop-floating-actions {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.floating-btn span {
  display: inline-block;
}

.floating-btn i {
  font-size: 1.25rem;
}

.floating-btn.whatsapp {
  background-color: var(--success-green);
}

.floating-btn.whatsapp:hover {
  background-color: var(--success-green-hover);
  transform: translateY(-3px);
}

.floating-btn.call {
  background-color: var(--primary-gold);
  color: var(--dark-slate);
}

.floating-btn.call:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .sticky-mobile-footer {
    display: grid;
  }
}

@media (min-width: 768px) {
  .desktop-floating-actions {
    display: flex;
  }
}

/* Helper styles for specific sections */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-feature-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

.about-feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-slate);
}

.about-feature-card h4 i {
  color: var(--primary-gold-hover);
}

.about-feature-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}