/* ============================================
   OK COLLISION INC — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --charcoal: #1A1A2E;
  --charcoal-light: #2D2D44;
  --charcoal-mid: #16162A;
  --coral: #E8644B;
  --coral-light: #F2826B;
  --coral-dark: #D1523A;
  --coral-pale: #FFF0ED;
  --white: #FFFFFF;
  --off-white: #F8F7F5;
  --gray-100: #F1F0EE;
  --gray-200: #E5E3DF;
  --gray-300: #C4C1BB;
  --gray-400: #9E9B95;
  --gray-500: #6B6862;
  --gray-600: #4A4843;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.nav__logo-accent {
  color: var(--coral);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a:not(.nav__cta) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}

.nav__links a:not(.nav__cta):hover {
  color: var(--charcoal);
}

.nav__links a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

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

.nav__cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

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

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.mobile-overlay.active .mobile-nav {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--coral);
}

.mobile-nav__cta {
  margin-top: 16px;
  background: var(--coral);
  color: var(--white) !important;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: none !important;
  font-size: 1rem !important;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 100, 75, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray-300);
}

.btn--ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

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

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

.btn--outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --- Section shared --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-sub {
  margin: 0 auto;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
}

.hero__shape--circle1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(232, 100, 75, 0.08);
  top: -200px;
  right: -100px;
}

.hero__shape--circle2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(232, 100, 75, 0.06);
  bottom: -80px;
  left: 10%;
}

.hero__shape--square {
  width: 120px;
  height: 120px;
  background: var(--coral);
  opacity: 0.12;
  top: 20%;
  left: 5%;
  transform: rotate(45deg);
  border-radius: var(--radius-sm);
}

.hero__shape--triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid rgba(232, 100, 75, 0.1);
  top: 60%;
  right: 15%;
}

.hero__shape--dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(232, 100, 75, 0.3) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  bottom: 15%;
  right: 35%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 100, 75, 0.12);
  border: 1px solid rgba(232, 100, 75, 0.25);
  color: var(--coral-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__headline-accent {
  color: var(--coral);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero image */
.hero__image-wrap {
  position: relative;
}

.hero__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--coral);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.4;
}

.hero__card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__card-icon {
  width: 48px;
  height: 48px;
  background: var(--coral);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__card-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero__card-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* --- Services --- */
.services {
  position: relative;
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
}

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

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

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

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--coral-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--coral);
  color: var(--white);
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.services__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services__deco-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 100, 75, 0.04);
  bottom: -200px;
  right: -100px;
}

.services__deco-square {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--charcoal);
  opacity: 0.03;
  top: 20%;
  left: -20px;
  transform: rotate(30deg);
  border-radius: var(--radius-sm);
}

/* --- About --- */
.about {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.about__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about__bg-circle1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(232, 100, 75, 0.04);
  top: -150px;
  right: -150px;
}

.about__bg-square {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--coral);
  opacity: 0.06;
  bottom: 10%;
  left: 5%;
  transform: rotate(45deg);
  border-radius: var(--radius-sm);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__image-grid {
  position: relative;
  height: 600px;
}

.about__img-main {
  width: 75%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about__img-side {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

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

.about__experience-badge {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background: var(--coral);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about__exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about__exp-label {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.3;
}

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

.about__body {
  color: var(--gray-500);
  line-height: 1.8;
  font-size: 1rem;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin: 8px 0;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* --- Why Us --- */
.why {
  position: relative;
  padding: 100px 0;
  background: var(--charcoal);
  overflow: hidden;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.why__card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(232, 100, 75, 0.3);
}

.why__card-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.why__card-title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.why__card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.why__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.why__deco-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(232, 100, 75, 0.06);
  bottom: -150px;
  left: -50px;
}

/* --- Reviews --- */
.reviews {
  position: relative;
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.review-card__author span {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
}

/* --- CTA --- */
.cta {
  position: relative;
  padding: 80px 0;
  background: var(--coral);
  overflow: hidden;
}

.cta__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta__shape-circle1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  left: -100px;
}

.cta__shape-circle2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -80px;
  right: 10%;
}

.cta__shape-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  top: 50%;
  right: 5%;
  transform: rotate(-30deg);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
  padding: 100px 0;
  background: var(--white);
}

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

.contact__desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact__detail-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact__link {
  color: var(--coral) !important;
  transition: color var(--transition);
}

.contact__link:hover {
  color: var(--coral-dark);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact__form-col {
  position: sticky;
  top: 100px;
}

.contact__form-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

.contact__form-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact__form-sub {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 100, 75, 0.1);
}

.form-input::placeholder {
  color: var(--gray-300);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6862' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

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

.form-success__icon {
  margin-bottom: 16px;
}

.form-success__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.form-success__text {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo-accent {
  color: var(--coral);
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--coral);
}

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

.footer__contact p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__link:hover {
  color: var(--coral) !important;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 40px;
  }

  .hero__image {
    height: 460px;
  }

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

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

  .about__inner {
    gap: 40px;
  }

  .about__image-grid {
    height: 480px;
  }

  .about__img-main {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__right {
    order: -1;
  }

  .hero__image {
    height: 360px;
  }

  .hero__image-accent {
    display: none;
  }

  .hero__card {
    left: 16px;
    bottom: -16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__trust {
    gap: 16px;
  }

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

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

  .about__image-grid {
    height: 360px;
    order: -1;
  }

  .about__img-main {
    height: 300px;
  }

  .about__img-side {
    width: 60%;
    height: 200px;
  }

  .about__experience-badge {
    right: 10px;
    top: auto;
    bottom: -10px;
    transform: none;
  }

  .about__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .about__stat-divider {
    display: none;
  }

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

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

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta__actions .btn {
    justify-content: center;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form-col {
    position: static;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__headline {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .services,
  .about,
  .why,
  .reviews,
  .contact {
    padding: 72px 0;
  }

  .service-card {
    padding: 28px 22px;
  }

  .contact__form-card {
    padding: 28px 22px;
  }
}

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

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