/* 
 * Premium Car Rental Landing Page Stylesheet
 * Custom design system, typography, animations, layouts, and responsive queries.
 */

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

/* --- Design Tokens --- */
:root {
  --primary: #F4B400;
  --secondary: #111111;
  --background: #F8F8F8;
  --surface: #FFFFFF;
  --text: #111111;
  --text-light: #666666;
  --border: #ECECEC;
  --radius: 24px;
  --radius-lg: 32px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .06);
  --shadow-hover: 0 30px 80px rgba(0, 0, 0, .12);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --container-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--background);
  color: var(--text);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

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

button, input, select {
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

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

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244, 180, 0, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: #222222;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--surface);
  transform: translateY(-3px);
}

.btn-circle-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.btn-primary:hover .btn-circle-arrow {
  transform: rotate(45deg);
}

/* --- Sticky Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
}

.header.scrolled {
  padding: 0.8rem 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--secondary);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.nav-mobile-only {
  display: none !important;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.profile-btn:hover {
  border-color: var(--secondary);
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

/* --- Fullscreen Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  background-color: var(--background);
}

.hero-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  background-image: url('assets/images/hero_car.png');
  background-size: cover;
  background-position: center right;
  padding: 6rem 5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  min-height: 600px;
  overflow: hidden;
  transition: var(--transition);
}

.hero-banner:hover {
  box-shadow: var(--shadow-hover);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 520px;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--secondary);
}

.hero-title span {
  color: var(--primary);
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--secondary);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* --- How It Works & Booking Card Section --- */
.how-it-works {
  padding: 8rem 0;
  background-color: var(--surface);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 5rem;
}

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

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.how-it-works-visual {
  position: relative;
}

.visual-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 480px;
}

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

/* Booking Card Overlay Widget */
.booking-widget {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 320px;
  background-color: var(--secondary);
  color: var(--surface);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10;
  animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.booking-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-icon {
  color: var(--text-light);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.booking-info label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.booking-info select, .booking-info input {
  background: transparent;
  color: var(--surface);
  font-weight: 500;
  font-size: 0.95rem;
  width: 100%;
  cursor: pointer;
}

.booking-info select option {
  background-color: var(--secondary);
  color: var(--surface);
}

.btn-search {
  width: 100%;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
}

/* --- About Section (Premium Black Theme) --- */
.about {
  padding: 8rem 0;
  background-color: var(--secondary);
  color: var(--surface);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.about-content .section-title {
  color: var(--surface);
  margin-bottom: 0;
}

.about-content .section-desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transform: rotate(-3deg);
  transition: var(--transition);
}

.about-img:hover {
  transform: scale(1.05) rotate(0deg);
}

/* Testimonial Card */
.testimonial-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.rating-stars {
  color: var(--primary);
  display: flex;
  gap: 0.25rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatars {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  margin-right: -12px;
  object-fit: cover;
}

.author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--surface);
}

.author-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Vehicle Fleet Section --- */
.fleet {
  padding: 8rem 0;
  background-color: var(--background);
}

.fleet-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.fleet-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.filter-tab {
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--surface);
  color: var(--text-light);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid var(--border);
}

.filter-tab:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.filter-tab.active {
  background-color: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* Fleet Card */
.fleet-card {
  background-color: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
}

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

.fleet-image-wrapper {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #F3F3F3;
}

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

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

.fleet-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.fleet-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.fleet-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F8F8F8;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.fleet-card:hover .fleet-arrow-btn {
  background-color: var(--secondary);
  color: var(--surface);
}

/* --- Call To Action Section --- */
.cta {
  padding: 4rem 0;
  background-color: var(--background);
}

.cta-banner {
  background: linear-gradient(135deg, #F4B400 0%, #FFC72C 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--secondary);
  letter-spacing: -1.5px;
}

.cta-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.75);
  max-width: 580px;
}

/* --- Premium Footer --- */
.footer {
  background-color: var(--secondary);
  color: var(--surface);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr) 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.newsletter-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.3rem;
  overflow: hidden;
}

.newsletter-input {
  width: 100%;
  padding: 0.8rem 1rem;
  color: var(--surface);
  background: transparent;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-submit {
  background-color: var(--primary);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-submit:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Reveal Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Button Ripple effect styling */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- Responsive Styles (Media Queries) --- */

/* Desktop / Large Tablets */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-image-wrapper {
    height: 440px;
  }
  .how-it-works-grid {
    gap: 3rem;
  }
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
  .about-image-wrapper {
    display: none; /* Hide middle SUV to save space on medium screen */
  }
  .cta-grid {
    padding: 0 2rem;
  }
  .footer-top {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
  .footer-newsletter {
    grid-column: span 4;
    max-width: 400px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex !important;
  }
  .nav-mobile-only {
    display: inline-flex !important;
  }
  .header-actions .btn-search-trigger,
  .header-actions .profile-btn {
    display: none !important;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    z-index: 1000;
  }
  .nav.active {
    right: 0;
  }
  .nav-link {
    font-size: 1.1rem;
    color: var(--secondary);
    width: 100%;
  }
  .header-actions {
    margin-right: 0.5rem;
  }
  
  /* Toggle icon animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-banner {
    background-image: url('assets/images/hero_car.png');
    background-position: bottom center;
    padding: 5rem 3rem;
    min-height: 620px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hero-content {
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
  }
  .hero-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .how-it-works-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .booking-widget {
    right: -20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-content {
    text-align: center;
  }
  .about-content .section-desc {
    margin: 0 auto;
  }
  .about-content .btn {
    align-self: center;
  }
  .testimonial-card {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .cta-banner {
    padding: 4rem 1.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }
  .header {
    padding: 1rem 0;
  }
  /* Section Padding reduction on mobile */
  .hero {
    padding: 5.5rem 0 1.5rem;
    min-height: auto;
  }
  .how-it-works, .about, .fleet {
    padding: 5rem 0;
  }

  .hero-title {
    font-size: 2.3rem;
    letter-spacing: -1px;
    line-height: 1.15;
  }
  .hero-desc {
    font-size: 0.95rem;
    max-width: 320px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 180px;
    box-sizing: border-box;
  }
  .hero-banner {
    background-image: url('assets/images/hero_car.png');
    background-position: bottom center;
    padding: 3rem 1.5rem;
    min-height: 550px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .section-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .booking-widget {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 230px;
    box-sizing: border-box;
    animation: none;
    padding: 1rem;
    gap: 0.8rem;
    border-radius: var(--radius-sm);
  }
  .booking-field {
    padding-bottom: 0.5rem;
    gap: 0.6rem;
  }
  .booking-info label {
    font-size: 0.65rem;
  }
  .booking-info select, .booking-info input {
    font-size: 0.8rem;
  }
  .booking-icon {
    font-size: 0.9rem;
  }
  .btn-search {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  .visual-image-wrapper {
    height: 420px;
    border-radius: var(--radius);
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .fleet-filter-tabs {
    gap: 0.4rem;
  }
  .filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .cta-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .cta-banner {
    padding: 3rem 1rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
  .footer-brand {
    grid-column: span 2;
    align-items: center;
    text-align: center;
  }
  .footer-desc {
    max-width: 280px;
    margin: 0 auto;
  }
  .footer-col {
    text-align: center;
  }
  /* Center the third services list */
  .footer-top > .footer-col:nth-child(4) {
    grid-column: span 2;
  }
  .footer-col h4 {
    margin-bottom: 1rem;
  }
  .footer-newsletter {
    grid-column: span 2;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .newsletter-form {
    width: 100%;
    max-width: 320px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
