/* Premium Mobile Styles for max-width 968px */

body {
  font-size: 16px;
  /* Base size for mobile readability */
}

section {
  padding: 100px 0;
  /* Increased mobile breathing room */
}

.section-title {
  font-size: 2.3rem;
  /* Slightly larger heading */
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.15rem;
  /* Better readability */
  margin-bottom: 2.5rem;
}

/* Navigation - Mobile */
.navbar {
  height: 64px;
  /* Increased for logo space */
  padding: 0 15px;
}

.navbar .nav-container {
  padding: 0;
}

.logo-img {
  height: 50px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: rgba(241, 245, 249, 0.9);
  /* Translucent hamburger bg */
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.hamburger span {
  width: 26px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--surface-light);
  /* Deeper luxury background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  /* Reduced gap for lists */
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  /* Smoother slide In */
  z-index: 1000;
}

.nav-menu.active {
  left: 0;
}

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

.nav-link {
  font-size: 1.8rem;
  /* Larger, bolder text */
  font-weight: 700;
  color: var(--text-main);
  display: block;
  padding: 12px 20px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 40px;
  /* Small elegant underline on hover/tap */
}

.nav-btn {
  font-size: 1.25rem;
  padding: 16px 40px;
  /* Larger premium button */
  margin-top: 20px;
  width: 80%;
  max-width: 300px;
  border-radius: var(--radius-full);
}

.nav-actions {
  margin-right: 0;
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 500px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slider {
  height: 100%;
  /* Fix slider height on mobile */
}

/* Mobile Hero Images (Portrait optimized) */
.hero-bg-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('static/images/Hero section/mobile_1.png');
}

.hero-bg-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('static/images/Hero section/mobile_2.png');
}

.hero-bg-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('static/images/Hero section/mobile_3.png');
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
}

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

.btn-large {
  width: 100%;
}

/* Grids */
.about-grid,
.services-grid,
.stats-grid {
  grid-template-columns: 1fr;
  gap: 32px;
  /* Bigger gaps between cards on mobile */
}

/* Split Layout */
.split-layout {
  flex-direction: column;
  gap: 50px;
  /* More mobile space */
}

.split-images {
  height: 420px;
  /* Scaled down representation of dual images */
  width: 100%;
}

.service-img {
  opacity: 1;
  /* No hover state on mobile, so must be fully opaque */
}

.feature-list li {
  margin-bottom: 24px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  /* More padding */
}

.feature-list i {
  margin-bottom: 16px;
}

/* Community Banner */
.community-banner {
  padding: 60px 30px;
  /* Larger */
  text-align: center;
}

.community-icon {
  display: none;
}

.community-text h2 {
  font-size: 2.2rem;
}

/* Contact Card */
.contact-card {
  flex-direction: column;
}

.contact-info-col {
  padding: 50px 30px;
  /* larger card padding */
}

.contact-form-col {
  padding: 50px 30px;
  /* larger card padding */
  background: var(--surface-light);
}

.contact-info-col h2 {
  font-size: 2rem;
}

/* Floating Actions */
.fab-whatsapp {
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  font-size: 28px;
}

/* --- NEW SECTIONS MOBILE --- */
.fleet-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

.fleet-img {
  height: 250px;
}

.faq-area-section .split-layout {
  grid-template-columns: 1fr;
  gap: 40px;
}

.areas-box {
  padding: 40px 20px;
}