/* ============================================
   ADAMS AUTOSHINE - Main Stylesheet
   Professional Car Detailing in Enid, Oklahoma
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
  /* Primary Colors */
  --primary: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: #FBBF24;
  --primary-glow: rgba(245, 158, 11, 0.3);

  /* Backgrounds */
  --bg-dark: #0A0A1A;
  --bg-section: #0E0E20;
  --bg-card: #141432;
  --bg-card-hover: #1A1A3E;
  --bg-input: #1A1A35;

  /* Text */
  --text-white: #FFFFFF;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dark: #0A0A1A;

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(245, 158, 11, 0.3);

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.2);
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--primary-light);
}

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

ul {
  list-style: none;
}

/* ============ CONTAINER ============ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ SECTION DEFAULTS ============ */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-accent {
  color: var(--primary);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-dark);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn--white:hover {
  background: var(--text-white);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

/* ============ HEADER / NAVIGATION ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 1001;
}

.nav__logo:hover {
  color: var(--text-white);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 1.1rem;
}

.logo-accent {
  color: var(--primary);
}

.footer__logo-img {
  height: 70px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav__toggle.active .hamburger {
  background: transparent;
}

.nav__toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-dark) 0%, #0c0c22 50%, var(--bg-section) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F59E0B' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px 20px 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-accent);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-stars {
  display: flex;
  gap: 2px;
  color: var(--primary);
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ============ SERVICES SECTION ============ */
.services {
  background: var(--bg-section);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  background: var(--bg-card-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-dark);
  border-color: var(--primary);
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-card__list li i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* ============ WHY CHOOSE US ============ */
.why-us {
  background: var(--bg-dark);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.why-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}

.why-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--border-color);
}

.stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: inline;
}

.stat__percent {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  display: inline;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ============ PRICING SECTION ============ */
.pricing {
  background: var(--bg-section);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

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

.pricing-card--featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, var(--bg-card) 100%);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.pricing-card__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: super;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.price-decimal {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: super;
}

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card__features li i {
  font-size: 0.85rem;
  min-width: 18px;
}

.pricing-card__features li .fa-check-circle {
  color: var(--primary);
}

.pricing-card__features li.disabled {
  color: var(--text-muted);
  opacity: 0.4;
}

.pricing-card__features li.disabled .fa-times-circle {
  color: var(--text-muted);
}

.pricing__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing__note i {
  color: var(--primary);
  margin-right: 6px;
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--bg-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.gallery-item__placeholder i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.5;
}

.gallery-item__placeholder span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 26, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item__placeholder {
  border-color: var(--border-accent);
}

.gallery-item__tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

/* ============ BOOKING SECTION ============ */
.booking {
  background: var(--bg-section);
}

.booking__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking__info .section__tag {
  margin-bottom: 16px;
}

.booking__info .section__title {
  text-align: left;
  margin-bottom: 16px;
}

.booking__info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}

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

.perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.perk > i {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1rem;
}

.perk strong {
  display: block;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
}

.perk span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form Styles */
.booking__form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

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

.required {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-white);
}

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

.form-error {
  display: none;
  font-size: 0.8rem;
  color: #EF4444;
  margin-top: 4px;
}

.form-group.error input,
.form-group.error select {
  border-color: #EF4444;
}

.form-group.error .form-error {
  display: block;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-disclaimer i {
  color: var(--primary);
  margin-right: 4px;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success i {
  font-size: 4rem;
  color: #10B981;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--bg-dark);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

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

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info strong {
  display: block;
  color: var(--text-white);
  font-size: 0.9rem;
}

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

.testimonials__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============ FAQ SECTION ============ */
.faq {
  background: var(--bg-section);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-accent);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__question i {
  color: var(--primary);
  font-size: 0.85rem;
  transition: var(--transition);
  min-width: 16px;
}

.faq-item.active .faq-item__question i {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============ ABOUT SECTION ============ */
.about {
  background: var(--bg-dark);
}

.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  /* Replace with: background: url('../images/about.jpg') center/cover; */
}

.about__image-placeholder i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
}

.about__image-placeholder span {
  color: var(--text-muted);
  font-weight: 500;
}

.about__content .section__tag {
  margin-bottom: 16px;
}

.about__content .section__title {
  text-align: left;
  margin-bottom: 20px;
}

.about__content > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about__values {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

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

.value i {
  color: var(--primary);
  font-size: 1.1rem;
}

.value span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

/* ============ CONTACT / MAP ============ */
.contact {
  background: var(--bg-section);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--primary);
}

.contact-card__item strong {
  display: block;
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card__item p,
.contact-card__item a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card__item a:hover {
  color: var(--primary);
}

.contact__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.contact__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.contact__map iframe {
  display: block;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(10, 10, 26, 0.95) 100%),
    var(--bg-dark);
  padding: 80px 0;
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
}

.cta-banner__content {
  text-align: center;
}

.cta-banner__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.cta-banner__content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 0;
  border-top: 1px solid var(--border-color);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer__brand .nav__logo {
  margin-bottom: 4px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
}

.footer__links h4,
.footer__contact h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__contact li i {
  color: var(--primary);
  margin-top: 3px;
  min-width: 16px;
}

.footer__contact a {
  color: var(--text-muted);
}

.footer__contact a:hover {
  color: var(--primary);
}

.footer__seo {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.footer__seo p {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
  line-height: 1.7;
  text-align: center;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
}

/* ============ ANIMATIONS ============ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services__grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services__grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services__grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services__grid .service-card:nth-child(5) { transition-delay: 0.4s; }
.services__grid .service-card:nth-child(6) { transition-delay: 0.5s; }

.why-us__grid .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-us__grid .why-card:nth-child(3) { transition-delay: 0.2s; }
.why-us__grid .why-card:nth-child(4) { transition-delay: 0.3s; }

.pricing__grid .pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing__grid .pricing-card:nth-child(3) { transition-delay: 0.2s; }

.testimonials__grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials__grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* ============ RESPONSIVE - TABLET ============ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat:nth-child(2)::after {
    display: none;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .booking__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--wide {
    grid-column: span 1;
  }
}

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: var(--transition-slow);
    border-left: 1px solid var(--border-color);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 14px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .hero__content {
    padding: 140px 20px 100px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }

  .trust-divider {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 20px;
  }

  .stat::after {
    display: none !important;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking__form-wrapper {
    padding: 28px 20px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .section__title {
    font-size: clamp(1.6rem, 5vw, 2.25rem);
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============ RESPONSIVE - SMALL MOBILE ============ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero__content {
    padding: 120px 16px 80px;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}

/* ============ PRINT STYLES ============ */
@media print {
  .header,
  .hero__scroll,
  .back-to-top,
  .nav__toggle,
  .cta-banner {
    display: none !important;
  }

  body {
    background: white;
    color: #333;
  }

  .section {
    padding: 20px 0;
  }
}
