/* ============================================
   UplinkRescue — Styles
   ============================================ */

/* Google Fonts loaded via <link> in HTML <head> */

/* --- CSS Custom Properties --- */
:root {
  --color-dark: #0a1628;
  --color-navy: #0f2440;
  --color-navy-light: #162d50;
  --color-navy-mid: #1a3a66;
  --color-teal: #00d4aa;
  --color-teal-dark: #00b894;
  --color-teal-glow: rgba(0, 212, 170, 0.12);
  --color-teal-glow-strong: rgba(0, 212, 170, 0.25);
  --color-coral: #ff6b4a;
  --color-coral-dark: #e5593a;
  --color-white: #ffffff;
  --color-light: #f4f7fa;
  --color-gray: #e2e8f0;
  --color-gray-dark: #94a3b8;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-on-dark: #c0cedb;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-teal: 0 4px 25px rgba(0, 212, 170, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

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

.container--narrow {
  max-width: 900px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

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

.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  display: none;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.8;
}

.section--dark .section-subtitle {
  color: var(--color-text-on-dark);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.teal-text { color: var(--color-teal); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--color-teal-dark);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--secondary:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  background: var(--color-teal-glow);
}

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

.btn--outline:hover {
  background: var(--color-teal);
  color: var(--color-dark);
  box-shadow: var(--shadow-teal);
}

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

.btn--coral:hover {
  background: var(--color-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(255, 107, 74, 0.35);
}

.btn--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

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

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

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

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-white);
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--color-teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav__logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-dark);
}

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

.nav__link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding: 4px 0;
}

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

.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-teal);
}

.nav__live-dot {
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(0, 212, 170, 0); }
}

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

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  border-radius: 2px;
}

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

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

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

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

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 100px;
  padding: 8px 20px 8px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

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

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--color-teal), #00f5c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-on-dark);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

/* --- Stats Bar --- */
.stats {
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -50px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stats__item {
  padding: 36px 32px;
  text-align: center;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-gray);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stats__number span {
  color: var(--color-teal);
}

.stats__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
}

/* --- Services Preview --- */
.services-preview { padding-top: 120px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

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

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

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

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

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-teal-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

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

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-teal);
  transition: color var(--transition);
}

.service-card:hover .service-card__icon svg {
  color: var(--color-dark);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* --- Section: Why UplinkRescue --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-feature {
  display: flex;
  gap: 20px;
}

.why-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-teal-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-teal);
}

.why-feature__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-feature__desc {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.why-visual {
  position: relative;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.why-visual__stat {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.why-visual__stat:last-child { margin-bottom: 0; }

.why-visual__stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
}

.why-visual__stat-label {
  font-size: 0.95rem;
  color: var(--color-text-on-dark);
  margin-top: 4px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.08) 0%, transparent 60%);
}

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

.cta-banner__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-white);
  font-weight: 800;
}

.cta-banner__title span {
  color: var(--color-teal);
}

.cta-banner__text {
  color: var(--color-text-on-dark);
  margin-top: 8px;
  font-size: 1.05rem;
}

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  padding: 80px 0 32px;
  color: var(--color-text-on-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 320px;
  color: var(--color-gray-dark);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-teal);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--color-gray-dark);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--color-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 20%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--color-white);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-on-dark);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Services Detail (services page) --- */
.services-detail {
  padding: 80px 0 100px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 40px;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  transition: all var(--transition);
  align-items: start;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-detail-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-teal-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-teal);
}

.service-detail-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-detail-card__desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-detail-card__feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-navy);
  background: var(--color-light);
  padding: 6px 14px;
  border-radius: 100px;
}

.service-detail-card__feature svg {
  width: 14px;
  height: 14px;
  color: var(--color-teal);
}

/* --- Process Section --- */
.process {
  background: var(--color-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -12px;
  width: calc(100% - 72px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-teal) 0,
    var(--color-teal) 8px,
    transparent 8px,
    transparent 16px
  );
  left: calc(50% + 36px);
}

.process-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-teal);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Contact Page --- */
.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.contact-form__title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form__subtitle {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--color-coral);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-teal);
  background: var(--color-white);
  box-shadow: 0 0 0 3px var(--color-teal-glow);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' 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: 42px;
}

.urgency-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.urgency-option {
  flex: 1;
}

.urgency-option input { display: none; }

.urgency-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: var(--color-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.urgency-option label .urgency-level {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.urgency-option label .urgency-desc {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.urgency-option input:checked + label {
  border-color: var(--color-teal);
  background: var(--color-teal-glow);
}

.urgency-option.urgent input:checked + label {
  border-color: var(--color-coral);
  background: rgba(255, 107, 74, 0.08);
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-card--dark {
  background: var(--color-navy);
  border: none;
  color: var(--color-text-on-dark);
}

.contact-info-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-card--dark .contact-info-card__title {
  color: var(--color-white);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-teal-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-teal);
}

.contact-info-item__label {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.contact-info-card--dark .contact-info-item__label {
  color: var(--color-gray-dark);
}

.contact-info-item__value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-info-card--dark .contact-info-item__value {
  color: var(--color-white);
}

.contact-hours {
  margin-top: 8px;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-hours__row:last-child { border-bottom: none; }

.contact-hours__day {
  color: var(--color-gray-dark);
}

.contact-hours__time {
  font-weight: 600;
  color: var(--color-white);
}

.contact-hours__time--highlight {
  color: var(--color-teal);
}

/* --- Form Success State --- */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  background: var(--color-teal-glow-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-teal);
}

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

.form-success__text {
  color: var(--color-text-light);
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Hero-specific animations */
.hero .hero__badge { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s 0.2s forwards; }
.hero .hero__title { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s 0.4s forwards; }
.hero .hero__subtitle { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s 0.6s forwards; }
.hero .btn-group { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s 0.8s forwards; }

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

/* --- Floating Emergency Button (mobile) --- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--color-coral);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 25px rgba(255, 107, 74, 0.4);
  border: none;
  cursor: pointer;
  gap: 8px;
  align-items: center;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .process-step:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    padding: 14px 0;
    font-size: 17px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav__cta {
    width: 100%;
    flex-direction: column;
    margin-top: 24px;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

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

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

  .stats__item:not(:last-child)::after {
    display: none;
  }

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

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

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

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

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .urgency-selector {
    flex-direction: column;
  }

  .contact-form {
    padding: 28px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .floating-cta {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .stats { margin-top: -30px; }

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

  .stats__item {
    padding: 24px 16px;
  }

  .stats__number {
    font-size: 1.6rem;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

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

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