/* ===== Variables ===== */

:root {
  --primary: #e85d2a;

  --primary-dark: #c94a1a;

  --primary-light: #fff4ef;

  --secondary: #1a2332;

  --secondary-light: #2d3a4f;

  --accent: #0d9488;

  --text: #374151;

  --text-light: #6b7280;

  --text-dark: #111827;

  --bg: #ffffff;

  --bg-alt: #f8fafc;

  --bg-dark: #0f172a;

  --border: #e5e7eb;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);

  --radius: 12px;

  --radius-lg: 20px;

  --font: "DM Sans", system-ui, sans-serif;

  --font-display: "Playfair Display", Georgia, serif;

  --transition: 0.25s ease;

  --header-h: 72px;
}

/* ===== Reset ===== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);

  color: var(--text);

  background: var(--bg);

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, 92vw);

  margin-inline: auto;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  padding: 0.75rem 1.5rem;

  border-radius: 50px;

  font-weight: 600;

  font-size: 0.9375rem;

  border: 2px solid transparent;

  cursor: pointer;

  transition: all var(--transition);

  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);

  color: #fff;

  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);

  border-color: var(--primary-dark);

  transform: translateY(-1px);

  box-shadow: 0 6px 20px rgba(232, 93, 42, 0.35);
}

.btn-outline {
  background: transparent;

  color: var(--secondary);

  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);

  color: var(--primary);
}

.btn-white {
  background: #fff;

  color: var(--primary);

  border-color: #fff;
}

.btn-white:hover {
  transform: translateY(-2px);

  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ===== Header ===== */

.header {
  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(12px);

  border-bottom: 1px solid transparent;

  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);

  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;

  align-items: center;

  justify-content: space-between;

  height: var(--header-h);

  gap: 1.5rem;
}

.logo {
  display: flex;

  align-items: center;

  gap: 0.5rem;

  font-weight: 700;

  font-size: 1.375rem;

  color: var(--secondary);

  width: 85px;

  filter: drop-shadow(0 0 0.75rem crimson);
}
.logo-footer {
  display: flex;

  align-items: center;

  gap: 0.5rem;

  font-weight: 700;

  font-size: 1.375rem;

  color: var(--secondary);

  width: 150px;

  filter: drop-shadow(0 0 0.75rem rgb(237, 237, 237));
}

.logo-mark {
  background: var(--primary);

  color: #fff;

  width: 40px;

  height: 40px;

  border-radius: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.875rem;

  letter-spacing: -0.5px;
}

.logo-text {
  font-family: var(--font-display);
}

.nav-links {
  display: flex;

  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;

  font-weight: 500;

  color: var(--text);

  transition: color var(--transition);
}

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

.nav-actions {
  display: flex;

  align-items: center;

  gap: 1rem;
}

.nav-phone {
  display: flex;

  align-items: center;

  gap: 0.4rem;

  font-size: 0.875rem;

  font-weight: 600;

  color: var(--secondary);
}

.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(--secondary);

  border-radius: 2px;

  transition: all var(--transition);
}

/* ===== Hero ===== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  padding-top: var(--header-h);

  overflow: hidden;
}

.hero-bg {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.hero-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.65) 50%,
    rgba(232, 93, 42, 0.25) 100%
  );
}

.hero-content {
  position: relative;

  z-index: 1;

  padding: 4rem 0 5rem;

  max-width: 780px;
}

.hero-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: #fff;

  padding: 0.4rem 1rem;

  border-radius: 50px;

  font-size: 0.8125rem;

  font-weight: 500;

  margin-bottom: 1.5rem;

  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--font-display);

  font-size: clamp(2.25rem, 5vw, 3.75rem);

  font-weight: 700;

  color: #fff;

  line-height: 1.15;

  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: #ffb088;

  font-style: italic;
}

.hero-sub {
  font-size: 1.125rem;

  color: rgba(255, 255, 255, 0.85);

  margin-bottom: 2rem;

  max-width: 600px;

  line-height: 1.7;
}

.hero-cta {
  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

  margin-bottom: 3.5rem;
}

.hero-cta .btn-outline {
  color: #fff;

  border-color: rgba(255, 255, 255, 0.4);

  background: rgba(255, 255, 255, 0.08);
}

.hero-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);

  border-color: #fff;

  color: #fff;
}

.hero-stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;

  padding-top: 2rem;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat strong {
  display: block;

  font-size: 1.75rem;

  font-weight: 700;

  color: #fff;

  line-height: 1.2;
}

.stat span {
  font-size: 0.8125rem;

  color: rgba(255, 255, 255, 0.65);
}

/* ===== Sections ===== */

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;

  max-width: 640px;

  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;

  color: var(--primary);

  font-size: 0.8125rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);

  font-size: clamp(1.75rem, 3.5vw, 2.5rem);

  color: var(--text-dark);

  margin-bottom: 0.75rem;

  line-height: 1.2;
}

.section-header p {
  color: var(--text-light);

  font-size: 1.0625rem;
}

.section-cta {
  text-align: center;

  margin-top: 2.5rem;
}

/* ===== Services ===== */

.services {
  position: relative;

  overflow: hidden;
}

.services-bg {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.services-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.services-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.78) 100%
  );
}

.services-inner {
  position: relative;

  z-index: 1;
}

.section-header--light .section-tag {
  color: #ffb088;
}

.section-header--light h2 {
  color: #fff;
}

.section-header--light p {
  color: rgba(184, 181, 181, 0.75);
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 2rem;

  max-width: 900px;

  margin: 0 auto;
}

.service-card {
  border-radius: var(--radius-lg);

  border: 1px solid var(--border);

  transition: all var(--transition);

  position: relative;

  overflow: hidden;

  display: flex;

  flex-direction: column;
}

.service-image {
  width: 100%;

  height: 200px;

  overflow: hidden;
}

.service-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.service-content {
  padding: 2rem;

  flex: 1;

  display: flex;

  flex-direction: column;
}

.service-card:not(.service-card--featured) {
  backdrop-filter: blur(8px);
}

.service-card:not(.service-card--featured) h3 {
  color: #fff;
}

.service-card:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow);

  border-color: transparent;
}

.service-card--featured {
  border-color: var(--secondary);
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card--featured .service-link {
  color: #ffb088;
}

.service-icon {
  width: 52px;

  height: 52px;

  background: var(--primary-light);

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 1.25rem;
}

.service-card--featured .service-icon {
  background: rgba(232, 93, 42, 0.2);
}

.service-icon svg {
  width: 26px;

  height: 26px;

  stroke: var(--primary);
}

.service-card--featured .service-icon svg {
  stroke: #ffb088;
}

.service-card h3 {
  font-size: 1.25rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 0.75rem;
}

.service-card--featured h3 {
  color: #fff;
}

.service-card p {
  font-size: 0.9375rem;

  color: #c7cfdf;

  margin-bottom: 1.25rem;

  line-height: 1.65;
}

.service-link {
  font-size: 0.875rem;

  font-weight: 600;

  color: var(--primary);

  transition: gap var(--transition);
}

/* ===== Why Us ===== */

.why-us-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: center;
}

.why-us-content h2 {
  font-family: var(--font-display);

  font-size: clamp(1.75rem, 3vw, 2.25rem);

  color: var(--text-dark);

  margin-bottom: 1rem;

  line-height: 1.25;
}

.why-us-content > p {
  color: var(--text-light);

  margin-bottom: 2rem;

  font-size: 1.0625rem;
}

.trust-grid {
  display: flex;

  flex-direction: column;

  gap: 1.5rem;
}

.trust-item {
  display: flex;

  gap: 1rem;

  align-items: flex-start;
}

.trust-icon {
  flex-shrink: 0;

  width: 48px;

  height: 48px;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-icon--green {
  background: #ecfdf5;
  color: #059669;
}

.trust-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.trust-icon--orange {
  background: var(--primary-light);
  color: var(--primary);
}

.trust-icon--purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.trust-item h4 {
  font-size: 1rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.875rem;

  color: var(--text-light);

  line-height: 1.6;
}

.why-us-visual {
  position: relative;

  border-radius: var(--radius-lg);

  overflow: hidden;

  box-shadow: var(--shadow-lg);
}

.why-us-visual img {
  width: 100%;

  height: 480px;

  object-fit: cover;
}

.quality-badge {
  position: absolute;

  bottom: 2rem;

  left: 2rem;

  background: var(--primary);

  color: #fff;

  padding: 1.25rem 1.75rem;

  border-radius: var(--radius);

  display: flex;

  align-items: center;

  gap: 1rem;

  box-shadow: var(--shadow-lg);
}

.quality-number {
  font-size: 2.5rem;

  font-weight: 700;

  line-height: 1;
}

.quality-label {
  font-size: 0.8125rem;

  font-weight: 500;

  line-height: 1.4;

  opacity: 0.95;
}

/* ===== Estimator Banner ===== */

.estimator-banner {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );

  padding: 3.5rem 0;
}

.estimator-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 2rem;

  flex-wrap: wrap;
}

.estimator-text h2 {
  font-family: var(--font-display);

  font-size: clamp(1.5rem, 3vw, 2rem);

  color: #fff;

  margin-bottom: 0.5rem;
}

.estimator-text p {
  color: rgba(255, 255, 255, 0.7);

  font-size: 1.0625rem;
}

/* ===== Packages ===== */

.packages {
  background: var(--bg-alt);
}

.city-tabs {
  display: flex;

  justify-content: center;

  gap: 0.5rem;

  margin-bottom: 2.5rem;

  flex-wrap: wrap;
}

.city-tab {
  padding: 0.5rem 1.5rem;

  border-radius: 50px;

  border: 1px solid var(--border);

  background: var(--bg);

  font-weight: 600;

  font-size: 0.875rem;

  color: var(--text);

  cursor: pointer;

  transition: all var(--transition);
}

.city-tab:hover,
.city-tab.active {
  background: var(--primary);

  color: #fff;

  border-color: var(--primary);
}

.packages-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;
}

.package-card {
  background: var(--bg);

  border-radius: var(--radius-lg);

  padding: 2rem;

  border: 1px solid var(--border);

  position: relative;

  transition: all var(--transition);

  display: flex;

  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow);
}

.package-card--popular {
  border-color: var(--primary);

  box-shadow: 0 8px 32px rgba(232, 93, 42, 0.15);
}

.popular-badge {
  position: absolute;

  top: -12px;

  left: 50%;

  transform: translateX(-50%);

  background: var(--primary);

  color: #fff;

  font-size: 0.6875rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  padding: 0.35rem 1rem;

  border-radius: 50px;

  white-space: nowrap;
}

.package-header {
  margin-bottom: 1rem;

  padding-bottom: 1rem;

  border-bottom: 1px solid var(--border);
}

.package-header h3 {
  font-size: 1.25rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 1.75rem;

  font-weight: 700;

  color: var(--primary);
}

.package-price span {
  font-size: 0.875rem;

  font-weight: 500;

  color: var(--text-light);
}

.package-desc {
  font-size: 0.875rem;

  color: var(--text-light);

  margin-bottom: 1.25rem;

  line-height: 1.6;
}

.package-features {
  flex: 1;

  margin-bottom: 1.5rem;
}

.package-features li {
  font-size: 0.8125rem;

  color: var(--text);

  padding: 0.4rem 0 0.4rem 1.25rem;

  position: relative;

  line-height: 1.5;
}

.package-features li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--accent);

  font-weight: 700;

  font-size: 0.75rem;
}

.packages-note {
  text-align: center;

  margin-top: 2rem;

  font-size: 0.9375rem;

  color: var(--text-light);
}

.packages-note a {
  color: var(--primary);

  font-weight: 600;
}

/* ===== Testimonials ===== */

.testimonials-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-alt);

  border-radius: var(--radius-lg);

  padding: 2rem;

  border: 1px solid var(--border);

  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);

  border-color: transparent;
}

.stars {
  color: #f59e0b;

  font-size: 1rem;

  letter-spacing: 2px;

  margin-bottom: 1rem;
}

.testimonial-card > p {
  font-size: 0.9375rem;

  color: var(--text);

  line-height: 1.7;

  margin-bottom: 1.5rem;

  font-style: italic;
}

.testimonial-author {
  display: flex;

  align-items: center;

  gap: 0.875rem;
}

.author-avatar {
  width: 44px;

  height: 44px;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 0.875rem;
}

.testimonial-author strong {
  display: block;

  font-size: 0.9375rem;

  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.75rem;

  color: var(--text-light);
}

/* ===== Projects ===== */

.projects {
  background: var(--bg-alt);
}

.projects-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.25rem;
}

.project-card {
  position: relative;

  border-radius: var(--radius-lg);

  overflow: hidden;

  aspect-ratio: 3/4;

  cursor: pointer;
}

.project-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85) 0%,
    transparent 60%
  );

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 1.5rem;

  color: #fff;
}

.project-overlay h4 {
  font-size: 1rem;

  font-weight: 700;

  margin-bottom: 0.25rem;
}

.project-overlay span {
  font-size: 0.75rem;

  opacity: 0.75;
}

/* ===== How It Works ===== */

.steps-track {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 1rem;

  position: relative;
}

.steps-track::before {
  content: "";

  position: absolute;

  top: 28px;

  left: 8%;

  right: 8%;

  height: 2px;

  background: var(--border);

  z-index: 0;
}

.step {
  text-align: center;

  position: relative;

  z-index: 1;
}

.step-number {
  width: 56px;

  height: 56px;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  font-size: 1.25rem;

  font-weight: 700;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1.25rem;

  box-shadow: 0 4px 16px rgba(232, 93, 42, 0.3);
}

.step h4 {
  font-size: 0.9375rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.8125rem;

  color: var(--text-light);

  line-height: 1.55;

  padding: 0 0.25rem;
}

/* ===== FAQ ===== */

.faq {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 760px;

  margin: 0 auto;
}

.faq-item {
  background: var(--bg);

  border-radius: var(--radius);

  margin-bottom: 0.75rem;

  border: 1px solid var(--border);

  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;

  font-weight: 600;

  font-size: 1rem;

  color: var(--text-dark);

  cursor: pointer;

  list-style: none;

  display: flex;

  align-items: center;

  justify-content: space-between;

  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";

  font-size: 1.25rem;

  color: var(--primary);

  font-weight: 400;

  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;

  font-size: 0.9375rem;

  color: var(--text-light);

  line-height: 1.7;
}

/* ===== Contact ===== */

.contact {
  position: relative;

  overflow: hidden;
}

.contact-bg {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.contact-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.contact-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );
}

.contact-layout {
  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns: 1fr 1.2fr;

  gap: 5rem;

  align-items: center;

  padding: 6rem 0;
}

.contact-content {
  color: #fff;
}

.contact-content .section-tag {
  color: #ffb088;

  margin-bottom: 1rem;
}

.contact-content h2 {
  font-family: var(--font-display);

  font-size: clamp(2.25rem, 4.5vw, 3rem);

  color: #fff;

  margin-bottom: 1.25rem;

  line-height: 1.15;
}

.contact-content > p {
  color: rgba(255, 255, 255, 0.85);

  margin-bottom: 3rem;

  font-size: 1.125rem;

  line-height: 1.75;

  max-width: 480px;
}

.contact-info-cards {
  display: flex;

  flex-direction: column;

  gap: 1rem;
}

.contact-info-card {
  display: flex;

  align-items: center;

  gap: 1.25rem;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  padding: 1.25rem 1.5rem;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: all var(--transition);
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.12);

  transform: translateX(12px);

  border-color: rgba(255, 255, 255, 0.25);
}

.contact-icon {
  width: 52px;

  height: 52px;

  background: linear-gradient(135deg, var(--primary), #ffb088);

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  box-shadow: 0 4px 16px rgba(232, 93, 42, 0.3);
}

.contact-icon svg {
  width: 26px;

  height: 26px;

  stroke: #fff;
}

.contact-info-card h4 {
  font-size: 0.8125rem;

  font-weight: 700;

  color: rgba(255, 255, 255, 0.6);

  margin-bottom: 0.25rem;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.contact-info-card a,
.contact-info-card span {
  font-size: 1.0625rem;

  font-weight: 600;

  color: #fff;

  line-height: 1.4;
}

.contact-info-card a:hover {
  color: #ffb088;
}

/* ===== Legal Docs ===== */

.legal-docs {
  padding: 6rem 0;
}

.legal-docs-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2rem;

  margin-top: 3rem;
}

.legal-doc-card {
  background: var(--bg-alt);

  border-radius: var(--radius-lg);

  padding: 2.5rem;

  border: 1px solid var(--border);

  text-align: center;

  transition: all var(--transition);
}

.legal-doc-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);

  border-color: var(--primary);
}

.doc-icon {
  width: 64px;

  height: 64px;

  background: linear-gradient(135deg, var(--primary), #ffb088);

  border-radius: 16px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1.5rem;

  color: #fff;
}

.doc-icon svg {
  width: 32px;

  height: 32px;
}

.legal-doc-card h3 {
  font-family: var(--font-display);

  font-size: 1.5rem;

  color: var(--text-dark);

  margin-bottom: 0.75rem;
}

.legal-doc-card p {
  color: var(--text-light);

  margin-bottom: 1.5rem;

  line-height: 1.6;
}

.legal-doc-card .btn-outline {
  display: inline-flex;

  align-items: center;

  gap: 0.5rem;
}

.contact-form {
  background: #fff;

  border-radius: 24px;

  padding: 3rem;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

  position: relative;

  overflow: hidden;
}

.contact-form::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 5px;

  background: linear-gradient(90deg, var(--primary), #ffb088);
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;

  position: relative;
}

.form-group label {
  display: block;

  font-size: 0.8125rem;

  font-weight: 600;

  color: var(--text-dark);

  margin-bottom: 0.5rem;

  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 0.875rem 1.125rem;

  border: 2px solid var(--border);

  border-radius: 12px;

  background: var(--bg);

  color: var(--text);

  font-size: 0.9375rem;

  transition: all var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(232, 93, 42, 0.1);

  transform: translateY(-1px);
}

.form-group select {
  cursor: pointer;

  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 1rem center;

  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;

  min-height: 120px;

  line-height: 1.6;
}

.contact-form .btn-primary {
  margin-top: 0.5rem;

  font-size: 1rem;

  padding: 1rem 2rem;

  letter-spacing: 0.3px;
}

.form-note {
  text-align: center;

  font-size: 0.75rem;

  color: var(--text-light);

  margin-top: 1rem;
}

/* ===== Modal ===== */

.modal-overlay {
  position: fixed;

  inset: 0;

  z-index: 2000;

  background: rgba(15, 23, 42, 0.8);

  backdrop-filter: blur(8px);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 1rem;

  opacity: 0;

  visibility: hidden;

  transition: all var(--transition);
}

.modal-overlay.active {
  opacity: 1;

  visibility: visible;
}

.modal-container {
  background: #fff;

  border-radius: 24px;

  padding: 3rem;

  max-width: 600px;

  width: 100%;

  max-height: 90vh;

  overflow-y: auto;

  position: relative;

  transform: scale(0.9) translateY(20px);

  transition: all var(--transition);

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;

  top: 1.5rem;

  right: 1.5rem;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: var(--bg-alt);

  border: none;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--text);

  transition: all var(--transition);

  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);

  color: #fff;

  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;

  height: 20px;
}

.modal-header {
  text-align: center;

  margin-bottom: 2rem;
}

.modal-header h3 {
  font-family: var(--font-display);

  font-size: 1.75rem;

  color: var(--text-dark);

  margin-bottom: 0.5rem;

  line-height: 1.2;
}

.modal-header p {
  color: var(--text-light);

  font-size: 0.9375rem;
}

.modal-form {
  display: flex;

  flex-direction: column;

  gap: 1.25rem;
}

.modal-form .form-row {
  gap: 1rem;
}

.modal-form .form-group {
  margin-bottom: 0;
}

.modal-form .form-group label {
  font-size: 0.8125rem;
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
  padding: 0.75rem 1rem;

  font-size: 0.875rem;
}

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

.modal-form .btn-primary {
  margin-top: 0.5rem;
}

/* ===== Footer ===== */

.footer {
  background: var(--bg-dark);

  color: rgba(255, 255, 255, 0.7);

  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 2.5rem;

  padding-bottom: 3rem;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text,
.footer-brand .logo-mark {
  color: inherit;
}

.footer-brand p {
  font-size: 0.875rem;

  line-height: 1.7;

  max-width: 280px;
}

.footer-col h5 {
  color: #fff;

  font-size: 0.875rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 1.25rem;
}

.footer-col li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  font-size: 0.875rem;

  transition: color var(--transition);
}

.footer-col a:hover {
  color: #ffb088;
}

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 1.5rem 0;

  font-size: 0.8125rem;

  flex-wrap: wrap;

  gap: 1rem;
}

.footer-legal {
  display: flex;

  gap: 1.5rem;
}

.footer-legal a:hover {
  color: #ffb088;
}

/* ===== WhatsApp Float ===== */

.whatsapp-float {
  position: fixed;

  bottom: 1.75rem;

  right: 1.75rem;

  z-index: 1990;

  width: 58px;

  height: 58px;

  background: #25d366;

  color: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);

  transition:
    transform var(--transition),
    box-shadow var(--transition);

  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
  width: 30px;

  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);

  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);

  animation: none;
}

.whatsapp-tooltip {
  position: absolute;

  right: calc(100% + 12px);

  background: var(--secondary);

  color: #fff;

  font-size: 0.8125rem;

  font-weight: 600;

  padding: 0.5rem 0.875rem;

  border-radius: 8px;

  white-space: nowrap;

  opacity: 0;

  visibility: hidden;

  transform: translateX(8px);

  transition: all var(--transition);

  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: "";

  position: absolute;

  right: -6px;

  top: 50%;

  transform: translateY(-50%);

  border: 6px solid transparent;

  border-left-color: var(--secondary);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;

  visibility: visible;

  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow:
      0 4px 20px rgba(37, 211, 102, 0.45),
      0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

/* ===== Toast ===== */

.toast {
  position: fixed;

  bottom: 2rem;

  right: 2rem;

  background: var(--secondary);

  color: #fff;

  padding: 1rem 1.5rem;

  border-radius: var(--radius);

  display: flex;

  align-items: center;

  gap: 0.75rem;

  box-shadow: var(--shadow-lg);

  transform: translateY(120%);

  opacity: 0;

  transition: all 0.4s ease;

  z-index: 2000;

  max-width: 380px;

  font-size: 0.9375rem;
}

.toast.show {
  transform: translateY(0);

  opacity: 1;
}

.toast svg {
  width: 22px;

  height: 22px;

  stroke: #34d399;

  flex-shrink: 0;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

  .steps-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .steps-track::before {
    display: none;
  }

  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-us-visual img {
    height: 360px;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;

    flex-direction: column;

    position: absolute;

    top: var(--header-h);

    left: 0;

    right: 0;

    background: var(--bg);

    padding: 1.5rem 2rem 2rem;

    border-bottom: 1px solid var(--border);

    box-shadow: var(--shadow);

    gap: 1rem;
  }

  .nav-actions.open {
    display: flex;

    flex-direction: column;

    position: absolute;

    top: calc(var(--header-h) + 280px);

    left: 0;

    right: 0;

    background: var(--bg);

    padding: 0 2rem 1.5rem;

    border-bottom: 1px solid var(--border);
  }

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

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

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

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

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

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .steps-track {
    grid-template-columns: 1fr;
  }
}
