* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #cc3399;
  --pink-light: #f0c0e0;
  --pink-pale: #fdf0f8;
  --dark: #1a1a1a;
  --mid: #555;
  --light: #f7f7f7;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--pink-light);
  padding: 0 5%;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  font-style: italic;
}

.nav-logo span {
  font-style: normal;
  font-weight: 300;
  color: #999;
  font-size: 12px;
  letter-spacing: 4px;
  display: block;
  margin-top: -2px;
}

.nav-logo-box {
  width: 36px;
  height: 36px;
  border: 3px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--pink);
}

.nav-spacer {
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.15s;
}

.nav-links a:hover {
  color: var(--pink);
  background: var(--pink-pale);
}

.nav-cta {
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: #aa2277;
}

.nav-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Section */
#hero {
  padding: 120px 5% 80px;
  background: linear-gradient(135deg, #fff 0%, #fdf0f8 60%, #f8e0f4 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pink-light);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 20px;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

h1 span {
  color: var(--pink);
}

.hero-sub {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #aa2277;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 51, 153, 0.3);
}

.btn-secondary {
  background: #fff;
  color: var(--pink);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid var(--pink);
  transition: all 0.15s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--pink-pale);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid var(--pink);
  transition: all 0.15s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--pink-pale);
}

.btn-white {
  background: #fff;
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.hero-trust-text {
  font-size: 14px;
  color: var(--mid);
  font-weight: 600;
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(204, 51, 153, 0.15);
  border: 1px solid var(--pink-light);
}

.hero-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 20px;
}

.hero-card-badge {
  background: var(--pink-pale);
  border: 1.5px solid var(--pink-light);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
}

/* Trust Bar */
#trust {
  background: var(--pink);
  padding: 24px 5%;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.trust-item span {
  font-size: 22px;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
  padding: 96px 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.7;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--pink-pale);
  border-radius: 20px;
  border: 1.5px solid var(--pink-light);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #fff;
  font-weight: 800;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--pink-pale);
  border: 1.5px solid var(--pink-light);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.2s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(204, 51, 153, 0.15);
  border-color: var(--pink);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  margin-top: 16px;
}

/* Why Us */
#why {
  background: var(--pink-pale);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid var(--pink-light);
}

.why-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.why-text p {
  font-size: 13px;
  color: var(--mid);
}

.why-visual {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(204, 51, 153, 0.1);
  border: 1px solid var(--pink-light);
  text-align: center;
}

.why-big-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}

.why-big-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--mid);
  margin-top: 8px;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.why-stat {
  background: var(--pink-pale);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.why-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--pink);
}

/* Areas Grid */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  justify-content: center;
}

.area-tag {
  background: var(--pink-pale);
  border: 1.5px solid var(--pink-light);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  transition: all 0.15s;
}

.area-tag:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* Areas Full Grid */
.areas-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.area-card {
  background: var(--pink-pale);
  border: 1.5px solid var(--pink-light);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  transition: all 0.2s;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
}

.area-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.area-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.area-card p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 16px;
}

.area-link {
  color: var(--pink);
  font-weight: 700;
  font-size: 14px;
}

/* Area Content Page */
.area-content {
  padding: 60px 5%;
}

.area-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.area-quick-info {
  background: var(--pink-pale);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--pink-light);
  margin-bottom: 24px;
}

.area-quick-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
}

.area-quick-info ul {
  list-style: none;
  padding-left: 0;
}

.area-quick-info li {
  padding: 6px 0;
  border-bottom: 1px solid var(--pink-light);
}

.area-cta {
  background: var(--pink);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  text-align: center;
}

.area-cta p {
  margin-bottom: 16px;
}

/* Testimonials */
#testimonials {
  background: var(--pink-pale);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--pink-light);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 14px;
}

.testimonial p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
}

/* Contact Page */
.contact-page {
  padding: 60px 5%;
}

.contact-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card, .contact-form-card {
  background: var(--pink-pale);
  border-radius: 20px;
  padding: 36px;
  border: 1.5px solid var(--pink-light);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: var(--dark);
  border: 1px solid var(--pink-light);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--pink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--pink-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

/* CTA */
#cta {
  background: var(--pink);
  padding: 80px 5%;
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--pink-pale) 0%, #fff 100%);
  padding: 140px 5% 80px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Detail */
.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--pink-light);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-icon {
  font-size: 120px;
  text-align: center;
  opacity: 0.6;
}

.service-detail h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 16px;
}

.service-detail h3 {
  font-size: 18px;
  margin: 20px 0 12px;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.service-detail li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.service-detail li:before {
  content: "✓";
  color: var(--pink);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Pricing Info */
.pricing-info {
  background: var(--pink-pale);
  text-align: center;
}

.pricing-note {
  max-width: 500px;
  margin: 24px auto;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  text-align: left;
}

.pricing-note ul {
  margin-top: 12px;
  padding-left: 20px;
}

.pricing-note .small {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.blog-post-preview {
  background: var(--pink-pale);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--pink-light);
}

.blog-date {
  font-size: 12px;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-post-preview h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
}

.blog-post-preview p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 16px;
}

.read-more {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
}

.blog-note {
  text-align: center;
  padding: 32px;
  background: var(--pink-pale);
  border-radius: 16px;
  margin-top: 32px;
}

/* Team Section */
.team-section {
  background: var(--pink-pale);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--pink-light);
}

.team-avatar {
  font-size: 64px;
  margin-bottom: 16px;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--pink-pale);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--pink-light);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--pink);
}

/* Areas CTA */
.areas-cta {
  text-align: center;
  background: var(--pink-pale);
  border-radius: 24px;
  padding: 48px;
  margin-top: 48px;
}

.areas-cta h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
}

.areas-cta .btn-primary {
  margin-top: 20px;
}

/* Footer */
footer {
  background: var(--dark);
  padding: 48px 5% 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo span {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* Quote Modal */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-bg.open {
  opacity: 1;
  pointer-events: all;
}

.quote-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.quote-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-close:hover {
  background: #f5f5f5;
}

.quote-header {
  padding: 28px 28px 16px;
  border-bottom: 1px solid #f0e0f5;
}

.quote-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 12px;
}

.quote-logo span {
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  color: #999;
  display: block;
  letter-spacing: 3px;
}

.quote-progress-bar {
  height: 6px;
  background: #f0e0f5;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.quote-progress-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.quote-step-label {
  font-size: 12px;
  color: #999;
  font-weight: 600;
}

.quote-step {
  display: none;
  padding: 24px 28px 28px;
}

.quote-step.active {
  display: block;
}

.quote-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.quote-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 2px solid #f0e0f5;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.15s;
}

.quote-opt span {
  font-size: 22px;
}

.quote-opt small {
  margin-left: auto;
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.quote-opt:hover {
  border-color: var(--pink);
  background: var(--pink-pale);
}

.quote-opt.selected {
  border-color: var(--pink);
  background: var(--pink-pale);
  color: var(--pink);
}

.quote-result-wrap {
  text-align: center;
  padding: 8px 0;
}

.quote-result-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.quote-result-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.quote-price-box {
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
}

.quote-price-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.quote-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}

.quote-price-sub {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
}

.quote-first-box {
  background: #f9f9f9;
  border: 1.5px solid #eee;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.quote-first-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.quote-first-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
}

.quote-first-sub {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.quote-summary {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}

.quote-book-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--pink);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 0.15s;
  text-align: center;
  border: none;
  cursor: pointer;
}

.quote-book-btn:hover {
  background: #aa2277;
}

.quote-restart {
  width: 100%;
  padding: 12px;
  background: none;
  border: 1.5px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  font-family: var(--font-body);
}

.quote-restart:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.lead-text {
  font-size: 18px;
  color: var(--mid);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .why-grid,
  .contact-grid-full,
  .area-content-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .testimonials-grid,
  .steps-grid,
  .areas-full-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-visual {
    display: none;
  }
  
  .nav-links {
    display: none;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .areas-full-grid {
    gap: 16px;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 48px 5%;
  }
  
  #hero {
    padding: 100px 5% 60px;
  }
  
  h1 {
    font-size: 2.4rem;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .hero-btns a {
    width: 100%;
    text-align: center;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .trust-inner {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-divider {
    display: none;
  }
  
  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .nav-phone {
    font-size: 13px;
  }
  
  .page-header {
    padding: 120px 5% 60px;
  }
  
  .quote-modal {
    max-height: 95vh;
  }
}