/* ============================================
   SharedAutoCars – Custom Styles & Animations
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --primary-blue: #238dcc;
  --primary-blue-dark: #17628f;
  --primary-blue-light: #e9f7ff;
  --honda-red: #e31e24;
  --honda-red-dark: #b9151d;
  --honda-red-light: #fff0f1;
  --accent-yellow: #e31e24;
  --accent-yellow-dark: #b9151d;
  --body-text: #5b6067;
  --heading-text: #242426;
  --light-bg: #f4f6f8;
  --white: #ffffff;
  --dark-bg: #242426;
  --dark-footer: #171719;
  --border-color: #dfe4e8;
  --brand-blue-glow: rgba(35, 141, 204, 0.28);
  --brand-red-glow: rgba(227, 30, 36, 0.28);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--body-text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--heading-text);
  line-height: 1.3;
}

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

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue-dark);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-color);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.75rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading-text);
  transition: var(--transition-fast);
  white-space: nowrap;
}

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

.nav-link .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 12px 12px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  border-top: 3px solid var(--primary-blue);
}

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

.dropdown-item {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body-text);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  padding-left: 2rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--primary-blue);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-normal);
}

.nav-cta:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--brand-blue-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading-text);
  transition: var(--transition-normal);
  border-radius: 2px;
}

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

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

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

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  margin-top: 72px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}

.slide.active {
  opacity: 1;
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(0,30,60,0.7) 0%, rgba(0,86,179,0.3) 50%, transparent 100%); */
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.slide-content {
  max-width: 600px;
  color: var(--white);
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 800ms ease 300ms forwards;
}

.slide-content p {
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 800ms ease 500ms forwards;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.slide-content .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 800ms ease 700ms forwards;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(36, 36, 38, 0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(36, 36, 38, 0.18);
  transition: var(--transition-normal);
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 10px 28px var(--brand-blue-glow);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 2rem;
}

.slider-arrow.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 3px 10px rgba(36, 36, 38, 0.18);
}

.slider-dot.active {
  background: var(--honda-red);
  transform: scale(1.2);
  border-color: var(--honda-red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.18), 0 4px 12px rgba(36, 36, 38, 0.2);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn:hover::after {
  opacity: 1;
}

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

.btn-primary:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--brand-blue-glow);
}

.btn-red {
  background: var(--honda-red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--honda-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--brand-red-glow);
}

.btn-white {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

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

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 5rem 0;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--body-text);
  max-width: 650px;
  margin: 1.5rem auto 0;
}

/* ============================================
   Service Section (Blue BG)
   ============================================ */
.service-section {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('https://sharedauto.com/wp-content/uploads/2020/12/honda-service-bg.jpg') center/cover;
  opacity: 0.15;
}

.service-section .section-header h2 {
  color: var(--white);
}

.service-section .section-header h2::after {
  background: linear-gradient(90deg, var(--accent-yellow), var(--white));
}

.service-section .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  background: var(--accent-yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition-normal);
}

.service-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ============================================
   Appointment Card
   ============================================ */
.appointment-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-bottom: 5px solid var(--accent-yellow);
  max-width: 600px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 2;
}

.appointment-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.appointment-card p {
  margin-bottom: 1.5rem;
  color: var(--body-text);
}

/* ============================================
   Comfort / Facilities Grid
   ============================================ */
.comfort-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
}

.comfort-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.comfort-card:hover img {
  transform: scale(1.1);
}

.comfort-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition-normal);
}

.comfort-card:hover .overlay {
  background: linear-gradient(to top, rgba(35, 141, 204, 0.85) 0%, rgba(227, 30, 36, 0.25) 100%);
}

.comfort-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark-footer) 0%, var(--primary-blue-dark) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://sharedauto.com/wp-content/uploads/2020/12/showroom-bg.jpg') center/cover;
  opacity: 0.08;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--accent-yellow);
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card .stars {
  color: var(--accent-yellow);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--body-text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.testimonial-card .author-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-card .author-info span {
  font-size: 0.8rem;
  color: var(--body-text);
}

/* ============================================
   CTA Blocks
   ============================================ */
.cta-block {
  background: var(--primary-blue);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px var(--brand-blue-glow);
}

.cta-block .cta-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-block h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ============================================
   HIP Section
   ============================================ */
.hip-section {
  background: linear-gradient(135deg, var(--dark-footer) 0%, var(--dark-bg) 50%, var(--primary-blue-dark) 100%);
  position: relative;
}

.hip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--honda-red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* ============================================
   Car Cards (Sales Page)
   ============================================ */
.car-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

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

.car-card .car-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.car-card .car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.car-card .car-info {
  padding: 1.5rem;
  text-align: center;
}

.car-card .car-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.car-card .car-info .price {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.95rem;
}

.car-card .car-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--honda-red);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================
   Loan Calculator
   ============================================ */
.calculator-section {
  background: var(--light-bg);
}

.calculator-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.calc-input-group {
  margin-bottom: 1.25rem;
}

.calc-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-text);
  margin-bottom: 0.4rem;
}

.calc-input-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-fast);
  background: var(--light-bg);
}

.calc-input-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(35, 141, 204, 0.16);
  background: var(--white);
}

.calc-result {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: var(--white);
  margin-top: 1.5rem;
}

.calc-result .amount {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}

.calc-result .label {
  font-size: 0.85rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   Promo Page (Honda Happenings Style)
   ============================================ */
.promo-hero {
  background: var(--light-bg);
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 72px;
}

.promo-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.promo-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--body-text);
  font-size: 1rem;
}

.promo-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

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

.promo-card .promo-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.promo-card .promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.promo-card:hover .promo-image img {
  transform: scale(1.05);
}

.promo-card .promo-body {
  padding: 1.5rem 0.5rem;
}

.promo-card .promo-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.promo-card .promo-body p {
  color: var(--body-text);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.promo-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-text);
  transition: var(--transition-fast);
}

.promo-card .read-more .arrow-icon {
  color: var(--honda-red);
  font-size: 1rem;
  transition: transform var(--transition-fast);
}

.promo-card:hover .read-more {
  color: var(--honda-red);
}

.promo-card:hover .read-more .arrow-icon {
  transform: translateX(4px);
}

@media (min-width: 1024px) {
  #rewardsBreakdown .reward-card {
    padding: 2rem !important;
  }

  #rewardsBreakdown .reward-card h3 {
    font-size: 1rem;
    line-height: 1.35;
  }

  #rewardsBreakdown .reward-card h3 span {
    font-size: 0.85rem;
  }

  #rewardsBreakdown .reward-card img {
    height: 6rem;
    margin-bottom: 1.75rem;
  }

  #rewardsBreakdown .reward-card .text-center.mb-4>p:first-of-type {
    font-size: 0.85rem;
    line-height: 1.35;
  }

  #rewardsBreakdown .reward-card .text-center.mb-4>p:last-of-type {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  #rewardsBreakdown .reward-card h4 {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  #rewardsBreakdown .reward-card .flex.justify-between {
    gap: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  #rewardsBreakdown .reward-card .flex.justify-between span:last-child {
    text-align: right;
  }
}

/* Terms & Conditions */
.promo-terms {
  background: var(--light-bg);
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
}

.promo-terms h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-terms ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1.5rem;
  margin: 0;
}

.promo-terms li {
  display: list-item;
  font-size: 0.85rem;
  color: var(--body-text);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Year filter tabs for promo page */
.promo-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.promo-tab {
  padding: 0.6rem 2rem;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--body-text);
}

.promo-tab.active,
.promo-tab:hover {
  background: var(--heading-text);
  color: var(--white);
  border-color: var(--heading-text);
}

/* ============================================
   Service Page Specific
   ============================================ */
.service-hero {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  padding: 10rem 0 5rem;
  text-align: center;
  color: var(--white);
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://sharedauto.com/wp-content/uploads/2020/12/service-hero-bg.jpg') center/cover;
  opacity: 0.15;
}

.service-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.service-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 1rem auto 2rem;
  position: relative;
  z-index: 2;
}

.method-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.method-card .method-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-blue-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.method-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-number {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-number .num {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-blue);
  opacity: 0.3;
  line-height: 1;
  min-width: 60px;
}

.service-number h4 {
  font-size: 1.1rem;
  padding-top: 0.75rem;
}

/* ============================================
   Insurance Page
   ============================================ */
.insurance-hero {
  background: linear-gradient(135deg, var(--dark-footer) 0%, var(--dark-bg) 50%, var(--primary-blue-dark) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
  color: var(--white);
  margin-top: 72px;
}

.insurance-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
}

.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  border-top: 4px solid var(--primary-blue);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.benefit-card .benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-card .step-number {
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto 1.25rem;
}

/* ============================================
   About Page
   ============================================ */
.about-hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  padding: 10rem 0 5rem;
  text-align: center;
  color: var(--white);
  margin-top: 72px;
}

.about-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
}

.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--accent-yellow);
  transition: var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card .info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card .info-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-text);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.footer p,
.footer li {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--accent-yellow);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   SAC Brand Overrides for Tailwind Utilities
   ============================================ */
.bg-blue-50 {
  background-color: var(--primary-blue-light) !important;
}

.bg-blue-100 {
  background-color: #dff2ff !important;
}

.bg-blue-400\/20,
.from-blue-600\/20 {
  background-color: rgba(35, 141, 204, 0.2) !important;
}

.bg-blue-600,
.hover\:bg-blue-600:hover {
  background-color: var(--primary-blue) !important;
}

.bg-blue-700,
.bg-blue-800,
.bg-blue-900,
.hover\:bg-blue-700:hover,
.hover\:bg-blue-800:hover,
.hover\:bg-blue-900:hover {
  background-color: var(--primary-blue-dark) !important;
}

.text-blue-600,
.text-blue-700,
.text-blue-800,
.text-blue-900,
.hover\:text-blue-600:hover {
  color: var(--primary-blue) !important;
}

.border-blue-600 {
  border-color: var(--primary-blue) !important;
}

.from-blue-600,
.from-blue-700 {
  --tw-gradient-from: var(--primary-blue) var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgba(35, 141, 204, 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.from-blue-600\/20 {
  --tw-gradient-from: rgba(35, 141, 204, 0.2) var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgba(35, 141, 204, 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.to-blue-800,
.to-blue-900 {
  --tw-gradient-to: var(--primary-blue-dark) var(--tw-gradient-to-position) !important;
}

.to-blue-800\/20 {
  --tw-gradient-to: rgba(23, 98, 143, 0.2) var(--tw-gradient-to-position) !important;
}

.bg-red-50 {
  background-color: var(--honda-red-light) !important;
}

.bg-red-100 {
  background-color: #ffe1e4 !important;
}

.bg-red-600,
.hover\:bg-red-600:hover {
  background-color: var(--honda-red) !important;
}

.bg-red-700,
.hover\:bg-red-700:hover {
  background-color: var(--honda-red-dark) !important;
}

.bg-red-600\/10 {
  background-color: rgba(227, 30, 36, 0.1) !important;
}

.from-red-600\/20 {
  --tw-gradient-from: rgba(227, 30, 36, 0.2) var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgba(227, 30, 36, 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.text-red-400,
.text-red-500,
.text-red-600 {
  color: var(--honda-red) !important;
}

.border-red-500,
.border-red-500\/30 {
  border-color: rgba(227, 30, 36, 0.35) !important;
}

.bg-yellow-50,
.bg-yellow-100 {
  background-color: var(--honda-red-light) !important;
}

.bg-yellow-400\/20 {
  background-color: rgba(227, 30, 36, 0.16) !important;
}

.text-yellow-300,
.text-yellow-400,
.text-yellow-500,
.text-yellow-600,
.hover\:text-yellow-300:hover {
  color: #ff5a63 !important;
}

.border-yellow-500 {
  border-color: var(--honda-red) !important;
}

.bg-green-50,
.bg-green-100 {
  background-color: var(--primary-blue-light) !important;
}

.bg-green-500,
.hover\:bg-green-600:hover {
  background-color: var(--primary-blue) !important;
}

.text-green-500,
.text-green-600 {
  color: var(--primary-blue) !important;
}

.border-green-500 {
  border-color: var(--primary-blue) !important;
}

.bg-purple-50,
.bg-indigo-50,
.bg-teal-50 {
  background-color: #f1f3f5 !important;
}

.bg-purple-100,
.bg-indigo-100,
.bg-teal-100 {
  background-color: #e8ecef !important;
}

.text-purple-600,
.text-indigo-600,
.text-teal-600 {
  color: var(--heading-text) !important;
}

.text-\[\#002b49\] {
  color: var(--heading-text) !important;
}

.bg-\[\#242426\] {
  background-color: var(--dark-bg) !important;
}

.bg-\[\#333\] {
  background-color: var(--heading-text) !important;
}

#ctaSection .cta-block:nth-child(1) {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark)) !important;
}

#ctaSection .cta-block:nth-child(2) {
  background: linear-gradient(135deg, var(--honda-red), var(--honda-red-dark)) !important;
}

#ctaSection .cta-block:nth-child(3) {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-footer)) !important;
}

/* ============================================
   Animations
   ============================================ */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Animation Delay */
.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

.delay-4 {
  transition-delay: 400ms;
}

.delay-5 {
  transition-delay: 500ms;
}

.delay-6 {
  transition-delay: 600ms;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-slider {
    height: 60vh;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-normal);
    gap: 0;
    overflow-y: auto;
  }

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

  .nav-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
  }

  .nav-item.open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-slider {
    height: clamp(200px, calc(41.2vw + 64px), 380px);
    min-height: 0;
    max-height: none;
  }

  .slide img {
    object-fit: cover;
    object-position: center top;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-dots {
    bottom: 0.9rem;
    gap: 0.5rem;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-hero h1,
  .insurance-hero h1,
  .about-hero h1 {
    font-size: 2rem;
  }

  .promo-hero h1 {
    font-size: 1.8rem;
  }

  .calc-result .amount {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 60px;
  }

  .hero-slider {
    margin-top: 60px;
    height: clamp(200px, calc(41.2vw + 64px), 270px);
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .slider-arrow.prev {
    left: 0.75rem;
  }

  .slider-arrow.next {
    right: 0.75rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* Page hero margins for non-home pages */
.page-hero {
  margin-top: 72px;
}

@media (max-width: 480px) {
  .page-hero {
    margin-top: 60px;
  }
}
