/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --plum-50: #faf5ff;
  --plum-100: #f3e8ff;
  --plum-200: #e9d5ff;
  --plum-300: #d8b4fe;
  --plum-400: #c084fc;
  --plum-500: #a855f7;
  --plum-600: #7B3F8E;
  --plum-700: #5B2C6F;
  --plum-800: #3d1f4d;
  --plum-900: #2a1638;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #F59E0B;
  --amber-500: #D97706;
  --amber-600: #B45309;
  --amber-700: #92400e;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
}

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

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

ul {
  list-style: none;
}

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

/* ===== BACKGROUND PATTERN ===== */
.bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(91,44,111,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245,158,11,0.03) 0%, transparent 50%);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91,44,111,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--plum-700);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--plum-700);
  background: var(--plum-50);
}

.nav-cta {
  background: var(--plum-700) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 20px !important;
}

.nav-cta:hover {
  background: var(--plum-600) !important;
  color: var(--white) !important;
}

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

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--plum-700);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--plum-50) 0%, var(--white) 40%, var(--amber-50) 100%);
  overflow: hidden;
}

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--plum-400);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--amber-400);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--plum-300);
  top: 30%;
  left: 45%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-4 {
  width: 120px;
  height: 120px;
  background: var(--amber-300);
  top: 20%;
  left: 15%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  animation: spin-slow 20s linear infinite;
  opacity: 0.15;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.02); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--plum-200);
  color: var(--plum-700);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: normal;
  color: var(--plum-700);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--amber-300);
  border-radius: 3px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--plum-700);
  color: var(--white);
  border-color: var(--plum-700);
  box-shadow: 0 4px 14px rgba(91,44,111,0.3);
}

.btn-primary:hover {
  background: var(--plum-600);
  border-color: var(--plum-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,44,111,0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--plum-700);
  border-color: var(--plum-200);
}

.btn-secondary:hover {
  background: var(--plum-50);
  border-color: var(--plum-400);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--plum-700);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.063rem;
}

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

/* ===== HERO CARDS ===== */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 480px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero-card--main {
  grid-column: 1 / -1;
  padding: 32px;
  background: var(--plum-700);
  color: var(--white);
}

.hero-card--main .hero-card-label {
  color: var(--amber-300);
}

.hero-card--main .hero-card-desc {
  color: rgba(255,255,255,0.8);
}

.hero-card--main .hero-card-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(245,158,11,0.2);
  border-radius: 50%;
}

.hero-card-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(168,85,247,0.1);
  border-radius: 50%;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.hero-card-icon svg {
  width: 100%;
  height: 100%;
}

.hero-card-stat {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-card-label {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--plum-700);
  margin-bottom: 8px;
}

.hero-card-desc {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.hero-card--stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 130px;
}

.hero-card--stat .stat-number {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--plum-700);
}

.hero-card--stat .stat-label {
  font-size: 0.813rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-card--stat .stat-deco {
  position: absolute;
  bottom: 12px;
  right: 12px;
  opacity: 0.15;
}

.hero-card--stat .stat-deco svg {
  width: 24px;
  height: 24px;
}

.hero-card--amber {
  background: var(--amber-400);
  color: var(--gray-900);
}

.hero-card--amber .stat-number {
  color: var(--gray-900);
}

.hero-card--amber .stat-label {
  color: rgba(0,0,0,0.6);
}

.hero-card--image {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  min-height: 200px;
}

.hero-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.hero-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(91,44,111,0.7) 0%, transparent 60%);
}

.hero-card-image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.938rem;
}

.hero-card-image-caption svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== SECTION STYLES ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--plum-600);
  background: var(--plum-100);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.063rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-card-color {
  height: 6px;
  width: 100%;
}

.service-card-body {
  padding: 32px;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.service-desc {
  font-size: 0.938rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.938rem;
  color: var(--gray-700);
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber-400);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 220px;
  height: 260px;
  object-fit: cover;
}

.about-floating-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--amber-400);
  color: var(--gray-900);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-floating-badge svg {
  width: 18px;
  height: 18px;
}

.about-content {
  max-width: 500px;
}

.about-text {
  font-size: 1.063rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-dot {
  width: 10px;
  height: 10px;
  background: var(--amber-400);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.about-feature strong {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.938rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-step-number {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--plum-100);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.process-step-content p {
  font-size: 0.938rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.process-step-connector {
  display: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-800) 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(245,158,11,0.08);
  border-radius: 50%;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(168,85,247,0.15);
  border-radius: 50%;
}

.testimonials .section-tag {
  background: rgba(245,158,11,0.2);
  color: var(--amber-300);
}

.testimonials .section-title {
  color: var(--white);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.testimonial-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber-400), var(--amber-300));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-quote {
  width: 36px;
  height: 36px;
  color: var(--amber-400);
  margin-bottom: 16px;
  opacity: 0.7;
}

.testimonial-quote svg {
  width: 100%;
  height: 100%;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  background: var(--amber-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-avatar svg {
  width: 20px;
  height: 20px;
  color: var(--plum-700);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--white);
}

.testimonial-author-location {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.5);
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-400) 50%, var(--amber-300) 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: var(--white);
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: 10%;
}

.cta-shape-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 5%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
  z-index: 1;
}

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

.contact-info {
  max-width: 480px;
}

.contact-desc {
  font-size: 1.063rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--plum-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--plum-700);
}

.contact-detail strong {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.938rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.938rem;
  color: var(--gray-500);
}

.contact-detail a:hover {
  color: var(--plum-700);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  max-width: 500px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.contact-form-title {
  font-size: 1.375rem;
  margin-bottom: 24px;
  color: var(--gray-900);
}

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

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

.form-group label {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.938rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-400);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
}

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

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

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--amber-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--amber-600);
}

.form-success h4 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.938rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.063rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
}

.footer-desc {
  font-size: 0.938rem;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.938rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--amber-400);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .nav-logo-text {
    display: block;
  }
}

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

  .hero-cards {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card--main {
    grid-column: span 2;
  }

  .hero-card--image {
    grid-column: span 1;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    max-width: 500px;
  }

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

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

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card--main {
    grid-column: span 2;
  }

  .hero-card--image {
    grid-column: span 2;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step-connector {
    display: none;
  }

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

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

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

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

  .hero-card--main {
    grid-column: span 1;
  }

  .hero-card--image {
    grid-column: span 1;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .about-img-secondary {
    right: 0;
  }

  .about-img-secondary img {
    width: 180px;
    height: 220px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav-overlay.show {
  display: block;
}
