:root {
  --bg: #07111f;
  --bg-2: #09182d;
  --bg-3: #0c1e36;
  --panel: #0d1b2d;
  --panel-2: #10233d;
  --text: #f4f7fb;
  --muted: #aab8ca;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #156cff;
  --primary-2: #2a87ff;
  --accent: #35c8ff;
  --success: #44d18f;
  --warning: #ffc94d;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-lg: 24px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(21, 108, 255, 0.08), transparent 20%),
    radial-gradient(circle at left center, rgba(53, 200, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #06101d 0%, #071321 100%);
  color: var(--text);
  line-height: 1.55;
}

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

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

.container {
  width: min(94%, var(--max));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.page-hero {
  padding: 84px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.7)),
    radial-gradient(circle at right top, rgba(21,108,255,0.12), transparent 25%);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); /* smaller, scales nicely */
  line-height: 1.2;                    /* more breathing room */
  letter-spacing: -0.02em;             /* subtle tracking */
  margin-bottom: 12px;                 /* slightly tighter spacing */
  font-weight: 700;                    /* strong but not overwhelming */
}

.page-hero p {
  color: var(--muted);
  max-width: 700px;                    /* narrower for better readability */
  font-size: 0.95rem;                  /* slightly smaller body text */
  line-height: 1.6;                    /* professional, easy to read */
  margin-top: 8px;
}


.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-2);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary));
}

.section-kicker::after {
  background: linear-gradient(90deg, var(--primary), transparent);
}

.center {
  text-align: center;
  justify-content: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  text-align: center;
}

.section-subtitle {
  max-width: 820px;
  margin: 0 auto 38px;
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-main {
  font-size: 1.5rem;
}

.brand-main .blue {
  color: var(--primary-2);
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #8aa2c2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #d8e4f2;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-cta,
.btn,
.card-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.btn:hover,
.card-btn:hover,
.outline-btn:hover {
  transform: translateY(-1px);
}

.nav-cta,
.btn-primary,
.card-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 12px 32px rgba(21, 108, 255, 0.28);
}

.nav-cta {
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
}

.btn,
.card-btn,
.outline-btn {
  border-radius: 12px;
  font-weight: 800;
  padding: 14px 22px;
}

.btn-outline,
.outline-btn {
  border: 1px solid rgba(57, 124, 255, 0.55);
  background: rgba(255,255,255,0.02);
  color: white;
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.94) 0%, rgba(6, 14, 27, 0.76) 35%, rgba(6, 14, 27, 0.35) 100%),
    url("[images.unsplash.com](https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80)") center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  padding: 60px 0;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); /* reduced max size */
  line-height: 1.2;                      /* more breathing room */
  letter-spacing: -0.02em;               /* subtle tracking */
  text-transform: none;                  /* avoid all caps for elegance */
  margin-bottom: 12px;                   /* balanced spacing */
  font-weight: 700;                      /* strong but not overwhelming */
}


.hero h1 .accent {
  color: var(--primary);
  display: block;
}

.hero-line {
  width: 220px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin: 22px 0;
  border-radius: 999px;
}

.hero p {
  color: #e6edf7;
  font-size: 1.08rem;
  max-width: 640px;
  margin-bottom: 22px;
}

.hero-location {
  font-size: 1.2rem;
  color: #dce8f8;
  margin-bottom: 20px;
}

.hero-location span {
  color: var(--primary-2);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-side-card,
.glass-card,
.package-card,
.fix-card,
.contact-card,
.info-card,
.builder-summary,
.builder-option {
  background: linear-gradient(180deg, rgba(12, 24, 42, 0.95), rgba(10, 20, 36, 0.98));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}

.hero-side-card {
  padding: 26px;
  border-radius: 24px;
}

.hero-side-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.hero-side-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: #e9f0fa;
}

.check-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

.service-strip {
  background: linear-gradient(180deg, #0a1b33 0%, #09182f 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.strip-item {
  text-align: center;
  padding: 26px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.strip-item:last-child {
  border-right: none;
}

.strip-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(21,108,255,0.14), rgba(43,194,255,0.06));
  border: 1px solid rgba(21,108,255,0.34);
  color: var(--primary-2);
  font-size: 1.5rem;
  font-weight: 900;
}

.strip-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
  padding: 11px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(21,108,255,0.14), rgba(43,194,255,0.06));
  border: 1px solid rgba(21,108,255,0.34);
}

.strip-item h4 {
  font-size: 1rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

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

.fix-card,
.package-card {
  border-radius: 18px;
  overflow: hidden;
}

.fix-image,
.package-image {
  height: 170px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.fix-image::after,
.package-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 18, 0.18), rgba(4, 9, 18, 0.6));
}

.fix-icon,
.package-icon {
  position: absolute;
  left: 16px;
  bottom: -28px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 17, 31, 0.94);
  border: 1px solid rgba(57, 124, 255, 0.45);
  color: var(--primary-2);
  font-size: 1.35rem;
  box-shadow: 0 0 24px rgba(21,108,255,0.18);
}

.fix-body,
.package-body {
  padding: 36px 18px 18px;
}

.fix-body h3,
.package-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.fix-body p,
.package-body p,
.muted {
  color: var(--muted);
}

.fix-meta,
.package-turnaround,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.fix-meta {
  margin: 16px 0 14px;
  color: #d3e1f5;
}

.fix-meta span:last-child,
.price,
.price-small,
.highlight {
  color: var(--primary-2);
  font-weight: 800;
}

.card-btn {
  width: 100%;
  padding: 13px 18px;
  font-size: 0.94rem;
  border-radius: 10px;
}

.notice-banner {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(9, 26, 50, 0.82), rgba(8, 22, 40, 0.95));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.notice-banner h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.package-card.featured {
  transform: translateY(-6px);
  border-color: rgba(57, 124, 255, 0.45);
}

.package-popular {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
}

.package-body .eyebrow {
  color: var(--primary-2);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.package-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-2);
  line-height: 1;
  margin: 8px 0 6px;
}

.package-note {
  margin-bottom: 16px;
  color: #d8e2f1;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.09);
  margin: 16px 0;
}

.builder-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr;
  gap: 20px;
  align-items: stretch;
}

.builder-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.builder-option {
  border-radius: 16px;
  padding: 22px 20px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.builder-option:hover {
  transform: translateY(-2px);
  border-color: rgba(57,124,255,0.35);
}

.builder-option.selected {
  border-color: rgba(57,124,255,0.78);
  box-shadow: 0 0 0 1px rgba(57,124,255,0.24) inset;
}

.builder-option .tick {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.9rem;
}

.builder-option.selected .tick {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
}

.builder-option .option-icon {
  font-size: 2rem;
  color: var(--primary-2);
  margin-bottom: 12px;
}

.builder-option h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.builder-option p {
  color: var(--muted);
}

.builder-summary {
  border-radius: 18px;
  padding: 26px;
}

.builder-summary h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.builder-selected-count {
  color: var(--primary-2);
  font-weight: 700;
  margin-bottom: 18px;
}

.summary-list {
  display: grid;
  gap: 12px;
}

.summary-row {
  color: #e5edf8;
}

.summary-total-label {
  color: #d9e5f4;
  margin-top: 20px;
  margin-bottom: 4px;
}

.summary-total {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-2);
  margin-bottom: 10px;
}

.summary-help {
  color: var(--muted);
  margin-bottom: 18px;
}

.builder-side-image {
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.12), rgba(7,17,31,0.18)),
    url("[images.unsplash.com](https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80)") center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.08);
}

.builder-trust {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-item {
  padding: 16px 12px 0 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.content-card,
.glass-card,
.contact-card,
.info-card {
  border-radius: 20px;
  padding: 28px;
}

.content-card h3,
.glass-card h3,
.contact-card h3,
.info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
}

form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #dce7f5;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a1627;
  color: white;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(42, 135, 255, 0.85);
  box-shadow: 0 0 0 4px rgba(21, 108, 255, 0.12);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.info-list li {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1180px) {
  .grid-4,
  .grid-3,
  .builder-layout,
  .contact-layout,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .builder-layout {
    gap: 18px;
  }

  .builder-side-image {
    min-height: 320px;
  }

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 6px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 4px 0;
  }

  .nav-cta {
    display: none;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .form-row,
  .builder-options,
  .builder-trust {
    grid-template-columns: 1fr;
  }

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

  .notice-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 56px 0 36px;
  }

  .hero-grid {
    padding: 44px 0;
  }

  .hero p {
    max-width: none;
  }

  .content-card,
  .glass-card,
  .contact-card,
  .info-card {
    padding: 22px 20px;
  }

  .hero-side-card {
    padding: 22px 20px;
  }

  .builder-summary {
    padding: 22px 20px;
  }
}

.brand-logo {
  height: 100px;
  width: auto;
}



@media (max-width: 560px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .brand-main {
    font-size: 1.28rem;
  }

  .summary-total {
    font-size: 2.2rem;
  }

  .container {
    width: calc(100% - 36px);
  }

  .page-hero {
    padding: 44px 0 28px;
  }

  .page-hero h1 {
    font-size: 1.65rem;
  }

  .hero-grid {
    padding: 32px 0;
  }

  .hero p,
  .hero-location {
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 10px;
  }

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

  .content-card,
  .glass-card,
  .contact-card,
  .info-card {
    padding: 18px 16px;
  }

  .hero-side-card {
    padding: 18px 16px;
  }

  .builder-summary {
    padding: 18px 16px;
  }

  .builder-option {
    padding: 16px 14px;
  }

  .notice-banner {
    padding: 16px;
  }

  .fix-body,
  .package-body {
    padding: 36px 14px 14px;
  }

  .package-card.featured {
    transform: none;
  }

  .brand-logo {
    height: 72px;
  }

  .section-kicker::before,
  .section-kicker::after {
    width: 32px;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .strip-item {
    padding: 20px 12px;
  }

  .package-price {
    font-size: 1.7rem;
  }
}

@media (max-width: 400px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 42px 0;
  }

  .page-hero {
    padding: 36px 0 22px;
  }

  .nav {
    min-height: 60px;
  }

  .brand-logo {
    height: 58px;
  }

  .menu-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .hero-actions .btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .card-btn {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .content-card,
  .glass-card,
  .contact-card,
  .info-card,
  .hero-side-card,
  .builder-summary {
    padding: 16px 14px;
  }

  .section-title {
    font-size: clamp(1.45rem, 8vw, 1.8rem);
  }

  .quote-modal-card {
    padding: 18px 14px;
  }
}

/* ============================================================
   QUOTE MODAL
   ============================================================ */

.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 10, 22, 0.88);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.quote-modal-overlay.open {
  display: flex;
}

.quote-modal-card {
  position: relative;
  background: linear-gradient(180deg, #0c1d36 0%, #091829 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(21, 108, 255, 0.15);
  width: 100%;
  max-width: 580px;
  padding: 36px;
  animation: modalSlideIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quote-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.quote-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.quote-modal-header {
  margin-bottom: 20px;
}

.quote-modal-kicker {
  display: inline-block;
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quote-modal-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.quote-modal-services-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}

.quote-modal-services-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 12px;
}

.quote-modal-services-list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-svc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #dce9f8;
}

.modal-svc-row span:last-child {
  color: var(--primary-2);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 12px;
}

.quote-modal-services-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  font-weight: 700;
  color: #e4edf8;
  font-size: 0.9rem;
}

.modal-svc-total-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
}

.form-group {
  display: grid;
  gap: 7px;
}

.required-star {
  color: #ff5a5a;
}

.quote-form-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: 10px;
  color: #ff8585;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.quote-submit-btn {
  width: 100%;
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 16px 18px;
  text-align: center;
}

.quote-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.quote-success-msg {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 8px;
  gap: 12px;
}

.quote-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #2dcf7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 28px rgba(68, 209, 143, 0.3);
  margin-bottom: 4px;
}

.quote-success-msg h4 {
  font-size: 1.35rem;
  font-weight: 800;
}

@media (max-width: 640px) {
  .quote-modal-card {
    padding: 24px 20px;
  }
}
