/* ============================================
   Langston Plumbing & Heating — Custom Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #FDF8F4;
  color: #0A2540;
  overflow-x: hidden;
}

body.dark {
  background-color: #071A2E;
  color: #FDF8F4;
}

::selection {
  background: #7DDFC3;
  color: #0A2540;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .nav {
  background: rgba(7, 26, 46, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav.scrolled {
  background: rgba(253, 248, 244, 0.95);
  box-shadow: 0 4px 30px rgba(10, 37, 64, 0.08);
}

.dark .nav.scrolled {
  background: rgba(7, 26, 46, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  color: #0A2540;
  text-decoration: none;
  transition: opacity 0.3s;
}

.dark .nav-logo {
  color: #FDF8F4;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-icon {
  color: #7DDFC3;
}

.nav-logo-bg {
  fill: #0A2540;
}

.dark .nav-logo-bg {
  fill: #7DDFC3;
}

.nav-logo-accent {
  fill: #7DDFC3;
}

.dark .nav-logo-accent {
  fill: #0A2540;
}

.nav-logo-text {
  color: #0A2540;
}

.dark .nav-logo-text {
  color: #FDF8F4;
}

.nav-link {
  color: #0A2540;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.dark .nav-link {
  color: rgba(253, 248, 244, 0.7);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7DDFC3;
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #0A2540;
}

.dark .nav-link:hover {
  color: #7DDFC3;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0A2540;
  color: #FDF8F4;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.dark .nav-cta {
  background: #7DDFC3;
  color: #0A2540;
}

.nav-cta:hover {
  background: #0D3156;
  transform: translateY(-1px);
}

.dark .nav-cta:hover {
  background: #5BC4A8;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #0A2540;
  border-radius: 0.5rem;
  transition: background 0.3s, color 0.3s;
}

.dark .mobile-menu-btn {
  color: #FDF8F4;
}

.mobile-menu-btn:hover {
  background: rgba(10, 37, 64, 0.06);
}

.dark .mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(253, 248, 244, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .mobile-menu {
  background: rgba(7, 26, 46, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-link {
  color: #0A2540;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  transition: color 0.3s, padding-left 0.3s;
}

.dark .mobile-menu-link {
  color: rgba(253, 248, 244, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-link:hover {
  color: #7DDFC3;
  padding-left: 0.5rem;
}

.dark .mobile-menu-link:hover {
  color: #7DDFC3;
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0A2540;
  color: #FDF8F4;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.3s;
}

.dark .mobile-menu-cta {
  background: #7DDFC3;
  color: #0A2540;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: #FDF8F4;
  position: relative;
}

.dark .hero {
  background: #071A2E;
}

.hero-bg-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 37, 64, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
}

.dark .hero-bg-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(125, 223, 195, 0.1) 1px, transparent 0);
}

.hero-gradient-orb {
  background: radial-gradient(circle, #7DDFC3, transparent 70%);
}

.hero-orb-1 {
  background: radial-gradient(circle, rgba(125, 223, 195, 0.4), transparent 70%);
}

.hero-orb-2 {
  background: radial-gradient(circle, rgba(125, 223, 195, 0.3), transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(125, 223, 195, 0.1);
  border: 1px solid rgba(125, 223, 195, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #7DDFC3;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: #0A2540;
  letter-spacing: -0.02em;
}

.dark .hero-headline {
  color: #FDF8F4;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(10, 37, 64, 0.65);
  line-height: 1.7;
  max-width: 520px;
}

.dark .hero-subtitle {
  color: rgba(253, 248, 244, 0.65);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0A2540;
  color: #FDF8F4;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.2);
}

.dark .btn-primary {
  background: #7DDFC3;
  color: #0A2540;
  box-shadow: 0 4px 20px rgba(125, 223, 195, 0.3);
}

.btn-primary:hover {
  background: #0D3156;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 37, 64, 0.25);
}

.dark .btn-primary:hover {
  background: #5BC4A8;
  transform: translateY(-2px);
}

.btn-primary .btn-arrow {
  transition: transform 0.3s;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #0A2540;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(10, 37, 64, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.dark .btn-secondary {
  color: #FDF8F4;
  border-color: rgba(253, 248, 244, 0.2);
}

.btn-secondary:hover {
  border-color: #7DDFC3;
  color: #7DDFC3;
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0A2540;
  color: #FDF8F4;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.3);
}

.btn-dark:hover {
  background: #0D3156;
  transform: translateY(-2px);
}

.btn-mint-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #0A2540;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(10, 37, 64, 0.25);
  transition: all 0.3s;
}

.btn-mint-outline:hover {
  border-color: #0A2540;
  background: rgba(10, 37, 64, 0.05);
  transform: translateY(-2px);
}

.btn-mint-outline .btn-arrow {
  transition: transform 0.3s;
}

.btn-mint-outline:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero Trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #0A2540;
}

.dark .hero-trust-number {
  color: #7DDFC3;
}

.hero-trust-label {
  font-size: 0.8rem;
  color: rgba(10, 37, 64, 0.55);
}

.dark .hero-trust-label {
  color: rgba(253, 248, 244, 0.45);
}

.hero-trust-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(10, 37, 64, 0.15);
}

.dark .hero-trust-divider {
  background: rgba(253, 248, 244, 0.1);
}

/* Hero Images */
.hero-img-main {
  position: relative;
}

.hero-img-main-wrapper {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(10, 37, 64, 0.15);
}

.hero-img-main-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-float-card {
  background: #FDF8F4;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(10, 37, 64, 0.12);
  animation: float 6s ease-in-out infinite;
}

.dark .hero-float-card {
  background: #0D3156;
}

.hero-float-1 {
  animation-delay: 0s;
}

.hero-float-2 {
  animation-delay: -3s;
}

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

.hero-float-title {
  font-weight: 600;
  color: #0A2540;
}

.dark .hero-float-title {
  color: #FDF8F4;
}

.hero-float-desc {
  font-size: 0.75rem;
  color: rgba(10, 37, 64, 0.55);
}

.dark .hero-float-desc {
  color: rgba(253, 248, 244, 0.5);
}

.hero-float-stars {
  display: flex;
  gap: 2px;
}

.hero-float-label {
  font-size: 0.7rem;
  color: rgba(10, 37, 64, 0.5);
}

.dark .hero-float-label {
  color: rgba(253, 248, 244, 0.4);
}

.hero-float-avatars {
  display: flex;
  margin-left: 0.5rem;
}

.hero-float-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #FDF8F4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0A2540;
}

.dark .hero-float-avatar {
  border-color: #0D3156;
}

.hero-deco {
  position: absolute;
  z-index: -1;
}

.hero-deco-2 {
  background: rgba(125, 223, 195, 0.2);
}

/* Hero Scroll */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(10, 37, 64, 0.3), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.services-label, .about-label, .why-us-label, .gallery-label, .contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5BC4A8;
}

.services-label-dot, .about-label-dot, .why-us-label-dot, .gallery-label-dot, .contact-label-dot {
  width: 6px;
  height: 6px;
  background: #7DDFC3;
  border-radius: 50%;
}

.services-title, .about-title, .why-us-title, .gallery-title, .contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #0A2540;
}

.dark .services-title,
.dark .about-title,
.dark .why-us-title,
.dark .gallery-title,
.dark .contact-title {
  color: #FDF8F4;
}

.services-desc, .about-desc-text, .why-us-desc, .gallery-desc, .contact-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(10, 37, 64, 0.55);
}

.dark .services-desc,
.dark .about-desc-text,
.dark .why-us-desc,
.dark .gallery-desc,
.dark .contact-desc {
  color: rgba(253, 248, 244, 0.55);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: #FDF8F4;
}

.dark .services {
  background: #071A2E;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  border-radius: 1.5rem;
  background: #FDF8F4;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(10, 37, 64, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(232, 226, 220, 0.6);
  position: relative;
  overflow: hidden;
}

.dark .service-card {
  background: #0D3156;
  border-color: rgba(255, 255, 255, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7DDFC3, #A8EDE4);
  opacity: 0;
  transition: opacity 0.5s;
}

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

.service-card:hover {
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.1);
  transform: translateY(-4px);
}

.dark .service-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(125, 223, 195, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.5s;
}

.service-card:hover .service-icon {
  background: rgba(125, 223, 195, 0.2);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 0.75rem;
}

.dark .service-title {
  color: #FDF8F4;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(10, 37, 64, 0.6);
  margin-bottom: 1.5rem;
}

.dark .service-desc {
  color: rgba(253, 248, 244, 0.55);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5BC4A8;
  text-decoration: none;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 0.7rem;
}

.service-link-arrow {
  transition: transform 0.3s;
}

.service-card:hover .service-link-arrow {
  transform: translateX(3px);
}

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

.dark .about {
  background: #0A2540;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.1);
}

.about-img-main-img {
  display: block;
  width: 100%;
  height: auto;
}

.about-img-accent {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.12);
  border: 4px solid #FDF8F4;
}

.dark .about-img-accent {
  border-color: #0A2540;
}

.about-img-accent-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp-badge {
  background: #7DDFC3;
  color: #0A2540;
  border-radius: 1.5rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 30px rgba(125, 223, 195, 0.4);
  text-align: center;
}

.about-exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-exp-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(10, 37, 64, 0.6);
  line-height: 1.75;
  font-size: 1rem;
}

.dark .about-texts {
  color: rgba(253, 248, 244, 0.6);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0A2540;
}

.dark .about-value {
  color: #FDF8F4;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  background: #0A2540;
  overflow: hidden;
}

.dark .why-us {
  background: #071A2E;
}

.why-us-bg-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(125, 223, 195, 0.2) 1px, transparent 0);
  background-size: 32px 32px;
}

.why-us-gradient-orb {
  background: radial-gradient(circle, #7DDFC3, transparent 70%);
}

.why-us-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.why-us-label {
  color: #7DDFC3;
}

.why-us-title {
  color: #FDF8F4;
}

.why-us-desc {
  color: rgba(253, 248, 244, 0.55);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-us-card {
  border-radius: 1.5rem;
  background: rgba(253, 248, 244, 0.04);
  border: 1px solid rgba(253, 248, 244, 0.08);
  padding: 2rem;
  transition: all 0.5s;
}

.why-us-card:hover {
  background: rgba(253, 248, 244, 0.08);
  border-color: rgba(125, 223, 195, 0.3);
  transform: translateY(-4px);
}

.why-us-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(125, 223, 195, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-us-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FDF8F4;
  margin-bottom: 0.75rem;
}

.why-us-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(253, 248, 244, 0.45);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: #FDF8F4;
}

.dark .gallery {
  background: #071A2E;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10, 37, 64, 0.05);
  transition: all 0.5s;
}

.gallery-item:hover {
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.12);
  transform: translateY(-4px);
}

.dark .gallery-item:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-info {
  background: #FDF8F4;
  padding: 1.25rem;
}

.dark .gallery-info {
  background: #0D3156;
}

.gallery-info-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5BC4A8;
  margin-bottom: 0.25rem;
}

.gallery-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A2540;
}

.dark .gallery-info-title {
  color: #FDF8F4;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: #7DDFC3;
  overflow: hidden;
}

.cta-banner-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 37, 64, 0.12) 1px, transparent 0);
  background-size: 24px 24px;
}

.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  color: #0A2540;
  line-height: 1.15;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: rgba(10, 37, 64, 0.6);
  line-height: 1.7;
}

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

.dark .contact {
  background: #0A2540;
}

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

.contact-label {
  color: #5BC4A8;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(125, 223, 195, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 0.2rem;
}

.dark .contact-detail-label {
  color: #FDF8F4;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: rgba(10, 37, 64, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.dark .contact-detail-value {
  color: rgba(253, 248, 244, 0.55);
}

.contact-detail-value:hover {
  color: #5BC4A8;
}

.contact-map {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06);
  aspect-ratio: 2/1;
  background: #F5EDE6;
}

.dark .contact-map {
  background: #0D3156;
}

/* Contact Form */
.contact-form-wrapper {
  width: 100%;
}

.contact-form-card {
  border-radius: 2rem;
  background: #FDF8F4;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.06);
}

.dark .contact-form-card {
  background: #0D3156;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 0.5rem;
}

.dark .contact-form-title {
  color: #FDF8F4;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: rgba(10, 37, 64, 0.5);
  margin-bottom: 2rem;
}

.dark .contact-form-subtitle {
  color: rgba(253, 248, 244, 0.45);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A2540;
}

.dark .form-label {
  color: #FDF8F4;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(10, 37, 64, 0.12);
  border-radius: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #0A2540;
  background: #FDF8F4;
  transition: all 0.3s;
  outline: none;
}

.dark .form-input,
.dark .form-select,
.dark .form-textarea {
  border-color: rgba(253, 248, 244, 0.12);
  color: #FDF8F4;
  background: rgba(253, 248, 244, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(10, 37, 64, 0.3);
}

.dark .form-input::placeholder,
.dark .form-textarea::placeholder {
  color: rgba(253, 248, 244, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #7DDFC3;
  box-shadow: 0 0 0 4px rgba(125, 223, 195, 0.12);
}

.dark .form-input:focus,
.dark .form-select:focus,
.dark .form-textarea:focus {
  border-color: #7DDFC3;
  box-shadow: 0 0 0 4px rgba(125, 223, 195, 0.15);
}

.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='%230A2540' stroke-width='2.5' 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;
}

.dark .form-select {
  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='%23FDF8F4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

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

/* Form Success */
.form-success {
  animation: fadeInUp 0.5s ease-out;
}

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

.form-success-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(125, 223, 195, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 0.5rem;
}

.dark .form-success-title {
  color: #FDF8F4;

