/*
  KRISHA TRAVELLERS - REDESIGN V2
  Designed with a premium, professional, and modern aesthetic.
*/

/* ====== GOOGLE FONT IMPORT ====== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* ====== CSS VARIABLES (NEW COLOR PALETTE) ====== */
:root {
  --primary-color: #002D62; /* Deep Navy Blue */
  --secondary-color: #F8F9FA; /* Off-white Background */
  --accent-color: #F7941D;   /* Saffron/Orange */
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --border-light: #e9ecef;
}

/* ====== GLOBAL RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden; /* Prevents horizontal scroll */
}

/* ====== UTILITY & SHARED CLASSES ====== */
.section {
  padding: 80px 50px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ====== ANIMATIONS (FADE-IN ON SCROLL) ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* JS-powered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ====== HEADER (STICKY) ====== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--text-light);
  padding: 20px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

.logo {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover {
  color: var(--accent-color);
}

nav ul li a.active {
  color: var(--accent-color);
  font-weight: 700;
}

/* Active link underline effect */
nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}


/* ====== HERO SECTION ====== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.852), rgb(0, 0, 0));
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  animation: fadeInUp 1s ease-out;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* ====== BUTTONS (PREMIUM STYLE) ====== */
.btn {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #e68619;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ====== SERVICES SECTION (HOMEPAGE) ====== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--text-light);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* ====== ABOUT SECTION (HOMEPAGE) ====== */
.about {
  background-color: var(--text-light);
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  margin-top: 10px;
}

.about-content p {
  margin-bottom: 30px;
}

/* ====== CTA SECTION (HOMEPAGE) ====== */
.cta {
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta .btn {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.cta .btn:hover {
  background-color: #e68619;
}

/* ====== PAGE HEADERS (FOR OTHER PAGES) ====== */
.page-header {
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  animation: fadeInUp 1s ease-out;
}

/* ====== SERVICE PAGE (LIST) ====== */
.service-list {
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  background: var(--text-light);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-item .card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* Centered, single-column content for text pages */
.single-column-content {
  max-width: 900px;
  margin: 0 auto;
}

/* ====== NEW VEHICLE PAGE STYLES ====== */

/* Main 2-column layout for the vehicle page */
.vehicle-showcase-container {
  display: grid;
  grid-template-columns: 280px 1fr; /* Fixed menu, flexible content */
  gap: 40px;
  align-items: start; /* Align content to the top */
}

/* --- Left Column: Menu Sidebar --- */
.vehicle-menu-sidebar {
  background: var(--text-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  position: sticky; /* Makes menu stick on scroll */
  top: 100px; /* Adjust based on header height + padding */
  animation: fadeInUp 0.6s ease-out; /* Add animation */
}

.vehicle-menu-sidebar h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

/* Main vehicle type buttons (Innova, Ertiga, Tempo Traveller) */
.main-vehicle-options .vehicle-option-btn {
  display: flex; /* Use flex for icon alignment */
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  background: var(--secondary-color); /* Lighter background for main buttons */
  border: 1px solid var(--border-light);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.main-vehicle-options .vehicle-option-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.main-vehicle-options .vehicle-option-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
  transform: translateY(0); /* No lift on active */
  box-shadow: none;
}

/* Tempo Traveller Dropdown Container */
.tempo-dropdown {
    position: relative; /* For absolute positioning of sub-menu */
    width: 100%;
}

.tempo-main-btn {
    display: flex; /* For icon alignment */
    justify-content: center;
    align-items: center;
}

.tempo-main-btn .dropdown-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Rotate icon when dropdown is open */
.tempo-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Sub-menu styling for Tempo Traveller */
.tempo-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%; /* Position below the main button */
    left: 0;
    width: 100%;
    background: var(--text-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none; /* Prevents interaction when hidden */
}

/* Show sub-menu on hover over .tempo-dropdown */
.tempo-dropdown:hover .tempo-sub-menu,
.tempo-sub-menu.show { /* For JS-controlled visibility if needed */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Allows interaction when visible */
}

.tempo-sub-menu li {
   margin: 0;
}

/* Sub-category buttons (e.g., 9-seater, 12-seater) */
.tempo-sub-menu .vehicle-select-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  color: var(--text-dark);
}
.tempo-sub-menu .vehicle-select-btn:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.tempo-sub-menu .vehicle-select-btn:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tempo-sub-menu .vehicle-select-btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.tempo-sub-menu .vehicle-select-btn.active {
  background-color: var(--accent-color);
  color: var(--text-light);
  font-weight: 700;
}


/* --- Right Column: Vehicle Display --- */
.vehicle-display {
  background: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out;
}

/* Image Gallery (Carousel) */
.vehicle-image-gallery {
    position: relative;
    width: 100%;
    height: 380px; /* Adjusted fixed height */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
}

.gallery-inner {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.gallery-item {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container */
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--text-light);
    border: none;
    padding: 12px 10px; /* Smaller padding */
    cursor: pointer;
    font-size: 1.3rem; /* Smaller icon */
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.gallery-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active, .dot:hover {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Vehicle Details Content (Text part) */
.vehicle-details-content {
    margin-bottom: 40px; /* Space between content and amenities */
}

.vehicle-details-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0; /* No extra top margin */
  margin-bottom: 15px;
}

.vehicle-details-content p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Common Amenities List */
.common-amenities-title {
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--primary-color);
   margin-top: 30px;
   margin-bottom: 15px;
   padding-top: 20px;
   border-top: 2px solid var(--border-light);
}

.vehicle-amenities {
  list-style: none;
  padding: 0;
}

.vehicle-amenities li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  display: flex; /* For icon alignment */
  align-items: flex-start;
}

/* Amenity icons */
.vehicle-amenities li .fa-check-circle {
  color: var(--accent-color);
  font-size: 1.2em; /* Slightly larger icon */
  margin-right: 10px;
  position: absolute; /* Position icon absolutely */
  left: 0;
  top: 3px; /* Adjust vertical alignment */
}


/* === END OF NEW VEHICLE STYLES === */


/* ====== ABOUT PAGE LIST ====== */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.checklist li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
/* === END OF NEW CSS === */


/* ====== GALLERY PAGE ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.photo-box {
  height: 250px;
  background-color: var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-box:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ====== CONTACT PAGE ====== */
.contact-container {
  background: var(--text-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.contact-details h3, .contact-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Aligns icons and text better */
.contact-details p {
 display: flex;
 align-items: flex-start; /* Aligns icon and text to the top */
 gap: 10px; /* Adds space between icon and text */
 padding-left: 0; /* Removes old padding */
}

/* Better spacing for 'Get in Touch' section */
.contact-details h3 {
  margin-bottom: 30px; /* Adds space under "Get in Touch" */
}

/* --- Phone Number Styling --- */
.phone-numbers a {
  white-space: nowrap; /* Prevents numbers from breaking */
}

/* Add a separator on desktop */
.phone-numbers a:first-child::after {
  content: ' / ';
  color: var(--text-dark);
  text-decoration: none;
  pointer-events: none; /* Makes the slash non-clickable */
}

.contact-details p strong {
  position: static; /* Resets the old positioning */
  margin-right: 0; /* Resets old margin */
}

.contact-details p span {
  /* Aligns the address text properly with the icon */
  display: inline-block;
}

/* Form Styles */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 5px rgba(247, 148, 29, 0.3);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-start;
}

/* ====== FOOTER (PROFESSIONAL) ====== */
footer {
  background-color: #061A38; /* Even darker blue */
  color: #ccc;
  padding: 60px 50px 20px 50px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer-col .logo {
  color: var(--text-light);
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2a3e5a;
  font-size: 0.9rem;
}


/* ====== MOBILE NAVIGATION (HAMBURGER) ====== */
.mobile-nav-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001; /* Above overlay */
}

.hamburger-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  left: 0;
  transition: all 0.3s ease;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  bottom: -8px;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.mobile-menu-open .menu-overlay {
  display: block;
  opacity: 1;
}


/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .two-column-layout {
    grid-template-columns: 1fr;
  }

  /* Make vehicle page stack */
  .vehicle-showcase-container {
    grid-template-columns: 1fr;
  }
  
  .vehicle-menu-sidebar {
     position: static; /* Un-stick the menu on mobile */
     margin-bottom: 30px;
  }

  .tempo-dropdown {
      position: static; /* Remove absolute positioning for dropdown on mobile */
  }

  .tempo-sub-menu {
      position: static; /* Stack naturally */
      width: auto;
      transform: translateY(0);
      box-shadow: none;
      border: none;
      margin-top: 10px;
      padding-left: 20px; /* Indent sub-menu items */
      background: none;
      opacity: 1; /* Always visible if parent is hover/clicked on mobile */
      visibility: visible;
      pointer-events: auto;
  }

  /* Adjust tempo main button margin on mobile to separate from sub-menu when expanded */
  .tempo-dropdown.expanded .tempo-main-btn {
      margin-bottom: 5px;
  }

  /* Hide dropdown on mobile by default unless specifically toggled */
  .tempo-sub-menu:not(.show) {
      display: none; /* Control visibility with JS class 'show' on mobile */
  }
}

/* === REPLACED 768px BLOCK === */
@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  /* --- New Header Style --- */
  header {
    padding: 20px;
  }
  
  /* Show the hamburger button */
  .mobile-nav-toggle {
    display: block;
  }

  /* --- This is the Sidebar --- */
  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%; /* Sidebar width */
    max-width: 320px; /* Max width for large phones */
    height: 100vh;
    background-color: var(--text-light);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    
    /* Hide it off-screen by default */
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    
    padding-top: 100px; /* Space from top */
    z-index: 1000;
  }
  
  nav ul {
    /* Make links stack vertically */
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
    width: 100%;
  }
  
  nav ul li {
    margin: 0; /* Remove old margin */
    width: 100%;
  }

  nav ul li a {
    font-size: 1.2rem;
    display: block; /* Make link fill the space */
    padding: 15px 30px; /* Add padding to each link */
    transition: background-color 0.2s ease;
  }

  nav ul li a:hover {
    background-color: var(--secondary-color); /* Light background on hover */
  }

  /* Active link style for mobile */
  nav ul li a.active::after {
    display: none; /* Remove desktop underline */
  }
  nav ul li a.active {
    color: var(--primary-color);
    background-color: #f0f3f5;
  }

  /* --- This is the OPEN state --- */
  body.mobile-menu-open nav {
    transform: translateX(0); /* Slide it in */
  }

  /* Style the hamburger as a "close" (X) icon when open */
  body.mobile-menu-open .hamburger-icon {
    background-color: transparent; /* Middle line disappears */
  }
  body.mobile-menu-open .hamburger-icon::before {
    transform: rotate(45deg) translate(5px, 6px);
  }
  body.mobile-menu-open .hamburger-icon::after {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* --- Other Mobile Styles (from your old file) --- */
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* --- Stack phone numbers on mobile --- */
  .phone-numbers a {
    display: block; /* This makes them stack vertically */
  }

  /* Hide the desktop separator on mobile */
  .phone-numbers a:first-child::after {
    content: ''; /* Hides the " / " */
  }
}