/* ============================================
   NYACK SERVICE CENTER — Custom Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---- Section Utility ---- */
.section {
  padding: 6rem 0;
}

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

/* ---- Section Header ---- */
.section-header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-tag--light {
  background: rgba(128, 0, 32, 0.12);
  color: #800020;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-title--light {
  color: #1a1a1a;
}

.section-desc {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
}

.section-desc--light {
  color: #4b5563;
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(128, 0, 32, 0.08), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-link {
  position: relative;
}

/* Mobile Menu */
.mobile-menu {
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-link {
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #4f0014 0%, #800020 25%, #b71d41 50%, #d4355c 75%, #ec617f 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Hero Background Image Overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/8985611/pexels-photo-8985611.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 0, 20, 0.92) 0%,
    rgba(128, 0, 32, 0.85) 40%,
    rgba(183, 29, 65, 0.80) 70%,
    rgba(212, 53, 92, 0.75) 100%
  );
}

/* Geometric Shapes */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.geo-circle--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ffd4d9 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.geo-circle--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fad0d9 0%, transparent 70%);
  bottom: 10%;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.geo-circle--3 {
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  top: 30%;
  right: 10%;
  animation: spin 20s linear infinite;
}

.geo-circle--4 {
  width: 200px;
  height: 200px;
  border: 2px solid rgba(128, 0, 32, 0.15);
  background: transparent;
  bottom: -50px;
  right: 5%;
  animation: spin 15s linear infinite reverse;
}

.geo-circle--5 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  top: -80px;
  left: 10%;
  animation: float 7s ease-in-out infinite;
}

.geo-circle--6 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  right: -50px;
  animation: float 9s ease-in-out infinite reverse;
}

.geo-square {
  position: absolute;
  opacity: 0.08;
  background: white;
  transform: rotate(45deg);
}

.geo-square--1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 8%;
  animation: spin 25s linear infinite;
}

.geo-square--2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  background: rgba(128, 0, 32, 0.3);
  animation: spin 18s linear infinite reverse;
}

.geo-square--3 {
  width: 50px;
  height: 50px;
  top: 25%;
  right: 5%;
  background: rgba(255, 255, 255, 0.15);
  animation: spin 22s linear infinite;
}

.geo-square--4 {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 5%;
  background: rgba(255, 255, 255, 0.08);
  animation: spin 20s linear infinite reverse;
}

.geo-triangle {
  position: absolute;
  opacity: 0.08;
  width: 0;
  height: 0;
}

.geo-triangle--1 {
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid white;
  top: 40%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.geo-triangle--2 {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(128, 0, 32, 0.4);
  bottom: 30%;
  right: 8%;
  animation: float 8s ease-in-out infinite reverse;
}

.geo-dots {
  position: absolute;
  opacity: 0.15;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 16px 16px;
}

.geo-dots--1 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 20%;
}

.geo-dots--2 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 12%;
  background-image: radial-gradient(circle, #800020 1px, transparent 1px);
}

/* Hero Content */
.hero-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-badge {
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title-accent {
  background: linear-gradient(135deg, #ffd4d9 0%, #ffb4c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent-2 {
  background: linear-gradient(135deg, #ffffff 0%, #ffd4d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stats {
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

/* CTA Buttons */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #800020;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-primary--light {
  background: white;
  color: #800020;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cta-secondary--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Hero Stats */
.hero-stat-number {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stat-label {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(6px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: #FFF8F0;
  position: relative;
}

.services-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.services-blob--1 {
  width: 400px;
  height: 400px;
  background: rgba(128, 0, 32, 0.05);
  top: -100px;
  left: -100px;
}

.services-blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 77, 125, 0.06);
  bottom: -50px;
  right: -50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(128, 0, 32, 0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(128, 0, 32, 0.12);
  border-color: rgba(128, 0, 32, 0.15);
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #800020, #d4355c);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card-bg {
  opacity: 1;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf2f4 0%, #fad0d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800020;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  color: white;
  transform: scale(1.05);
}

.service-card-icon--blush {
  background: linear-gradient(135deg, #fff5f6 0%, #ffd4d9 100%);
}

.service-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.925rem;
  color: #6b7280;
  line-height: 1.65;
}

.service-card-number {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(128, 0, 32, 0.04);
  line-height: 1;
  transition: color 0.4s ease;
}

.service-card:hover .service-card-number {
  color: rgba(128, 0, 32, 0.08);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: white;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(128, 0, 32, 0.15);
}

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

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
}

.about-image-accent img {
  width: 200px;
  height: 160px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -15px;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  color: white;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3);
  z-index: 2;
}

.about-exp-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

.about-exp-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.about-dots {
  position: absolute;
  top: -15px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, #ffd4d9 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.6;
  z-index: -1;
}

.about-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  gap: 1rem !important;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFF8F0;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-value:hover {
  background: #fce7eb;
  transform: translateX(4px);
}

.about-value-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.about-value-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #1a1a1a;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  background: linear-gradient(135deg, #fdf2f4 0%, #ffeaec 50%, #fff5f6 100%);
  position: relative;
}

.why-us-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/8478223/pexels-photo-8478223.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center/cover no-repeat;
  opacity: 0.04;
}

.why-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(128, 0, 32, 0.06);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(128, 0, 32, 0.1);
}

.why-card-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  color: rgba(128, 0, 32, 0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.why-card:hover .why-card-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 8px 20px rgba(128, 0, 32, 0.3);
}

.why-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.why-card-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  background: #FFF8F0;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(128, 0, 32, 0.08);
  border-color: rgba(128, 0, 32, 0.1);
  background: white;
}

.testimonial-card-bg {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.06) 0%, rgba(212, 53, 92, 0.04) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-card-bg {
  width: 160px;
  height: 160px;
}

.testimonial-quote-icon {
  margin-bottom: 1rem;
  color: #800020;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.testimonial-author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.testimonial-author-location {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #4f0014 0%, #800020 40%, #b71d41 100%);
  position: relative;
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/8985667/pexels-photo-8985667.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=600') center/cover no-repeat;
  opacity: 0.08;
}

.cta-banner-title {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner-desc {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: #FFF8F0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.08);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(128, 0, 32, 0.06);
  border: 1px solid rgba(128, 0, 32, 0.06);
}

.contact-form-title {
  margin-bottom: 0.25rem;
}

.contact-form-subtitle {
  margin-bottom: 0 !important;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #f9fafb;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #800020;
  background: white;
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(128, 0, 32, 0.25);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.35);
}

.form-submit:active {
  transform: translateY(0);
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 0.5s ease forwards;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1rem;
}

.form-success-title {
  margin-bottom: 0.5rem;
}

.form-success-text {
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a0a10;
  color: white;
  position: relative;
  padding-top: 2rem;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  color: #1a0a10;
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 1.25rem !important;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: white;
  transform: translateX(4px);
}

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

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #800020 0%, #b71d41 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(128, 0, 32, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 40;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(128, 0, 32, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .about-image-accent {
    right: -10px;
    bottom: -20px;
  }

  .about-image-accent img {
    width: 150px;
    height: 120px;
  }

  .about-experience-badge {
    left: -5px;
    top: -10px;
    padding: 0.75rem 1rem;
  }

  .about-exp-number {
    font-size: 1.5rem;
  }

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .geo-circle--1 {
    width: 300px;
    height: 300px;
  }

  .geo-circle--2 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1
