/* ============================================
   New Florida Ventures — Custom Styles
   ============================================ */

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

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

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

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

/* --- Decorative Background Shapes --- */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.03;
}

.shape-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: #0d9488;
  top: -200px;
  right: -150px;
}

.shape-circle-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #0d9488;
  bottom: 20%;
  left: -100px;
}

.shape-square-1 {
  width: 200px;
  height: 200px;
  background: #0d9488;
  top: 50%;
  right: 5%;
  transform: rotate(45deg);
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid #0d9488;
  top: 70%;
  left: 3%;
  opacity: 0.02;
}

.shape-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #0d9488 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  top: 40%;
  right: 10%;
  opacity: 0.06;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e293b;
  flex-shrink: 0;
}

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

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: #0d9488;
  background: rgba(13, 148, 136, 0.06);
}

.nav-cta {
  padding: 10px 24px;
  background: #0d9488;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1e293b;
  margin-left: auto;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 2px solid rgba(13, 148, 136, 0.15);
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-link:hover {
  background: rgba(13, 148, 136, 0.06);
  color: #0d9488;
}

.mobile-menu-cta {
  margin-top: 8px;
  padding: 14px 24px;
  background: #0d9488;
  color: white;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f766e;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 47, 46, 0.88) 0%,
    rgba(13, 148, 136, 0.75) 50%,
    rgba(15, 118, 110, 0.65) 100%
  );
}

.hero-geo {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.geo-circle-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}

.geo-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 5%;
  border-color: rgba(255, 255, 255, 0.05);
}

.geo-bar {
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
}

.geo-bar-1 {
  width: 200px;
  height: 3px;
  top: 30%;
  right: 10%;
  transform: rotate(-30deg);
}

.geo-bar-2 {
  width: 150px;
  height: 3px;
  bottom: 35%;
  left: 8%;
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(13, 148, 136, 0.3);
  border: 1px solid rgba(13, 148, 136, 0.5);
  border-radius: 100px;
  color: #5eead4;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 750px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #0d9488;
  color: white;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
}

.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-white {
  background: white;
  color: #0d9488;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #5eead4;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* --- Section Shared --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0d9488;
  margin-bottom: 16px;
}

.label-dot {
  width: 8px;
  height: 8px;
  background: #0d9488;
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 560px;
  line-height: 1.7;
}

/* --- Services Section --- */
.services {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  z-index: 1;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488, #2dd4bf, #0d9488);
}

.services .section-label,
.services .section-title,
.services .section-desc {
  margin-bottom: 16px;
}

.services .section-desc {
  margin-bottom: 56px;
}

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

.service-card {
  position: relative;
  padding: 36px 28px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(13, 148, 136, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 148, 136, 0.12);
  border-color: rgba(13, 148, 136, 0.2);
}

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

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(13, 148, 136, 0.15);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0d9488;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
}

/* --- Why Us Section --- */
.why-us {
  padding: 120px 0;
  background: #0f766e;
  position: relative;
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-geo-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  top: -100px;
  right: -100px;
}

.why-geo-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -50px;
  left: 10%;
}

.why-geo-3 {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(45deg);
  top: 20%;
  left: 5%;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content .section-label {
  color: #5eead4;
}

.why-content .section-label .label-dot {
  background: #5eead4;
}

.why-content .section-title {
  color: white;
}

.why-content .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.why-feature-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(94, 234, 212, 0.4);
  padding-top: 2px;
}

.why-feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.why-feature-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.why-image {
  position: relative;
}

.why-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.why-image-accent {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(94, 234, 212, 0.2);
  border-radius: 20px;
  pointer-events: none;
}

.why-image-stat {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: white;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.why-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0d9488;
  display: block;
}

.why-stat-label {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
}

/* --- About Section --- */
.about {
  padding: 120px 0;
  background: white;
  position: relative;
  z-index: 1;
}

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

.about-img-group {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
}

.about-img-float img {
  width: 260px;
  height: 180px;
  object-fit: cover;
}

.about-dots {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, #0d9488 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.3;
}

.about-content .section-desc {
  margin-bottom: 24px;
}

.about-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #134e4a 0%, #0d9488 50%, #115e59 100%);
  position: relative;
  overflow: hidden;
}

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

.cta-circle-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
  top: -80px;
  left: -80px;
}

.cta-circle-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -50px;
  right: 10%;
}

.cta-stripe {
  position: absolute;
  width: 400px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  top: 50%;
  left: -100px;
  transform: rotate(-20deg);
}

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

.cta-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* --- Contact Section --- */
.contact {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  z-index: 1;
}

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

.contact-info .section-desc {
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 4px;
}

.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.5;
}

.contact-link {
  color: #0d9488;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #0f766e;
}

/* Form */
.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(13, 148, 136, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.form-input {
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1e293b;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f8fafc;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  background: white;
}

.form-input::placeholder {
  color: #94a3b8;
}

.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='%2394a3b8' 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 14px center;
  padding-right: 40px;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.form-success.active {
  display: flex;
}

.success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 50%;
}

.success-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
}

.success-text {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 320px;
  line-height: 1.6;
}

/* --- Map Section --- */
.map-section {
  position: relative;
  height: 350px;
  background: #e2e8f0;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.map-pin svg {
  flex-shrink: 0;
}

.map-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.map-label-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1e293b;
}

.map-label-addr {
  font-size: 0.82rem;
  color: #64748b;
}

/* --- Footer --- */
.footer {
  background: #0f172a;
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 16px;
}

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

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-list a:hover {
  color: #5eead4;
}

.footer-list-indent {
  display: block;
  margin-left: 22px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-image {
    order: -1;
    max-width: 500px;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

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

  .services {
    padding: 80px 0;
  }

  .why-us {
    padding: 80px 0;
  }

  .about {
    padding: 80px 0;
  }

  .about-img-float {
    right: 0;
    bottom: -20px;
  }

  .about-img-float img {
    width: 200px;
    height: 140px;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-form-wrap {
    padding: 28px;
  }

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

  .map-section {
    height: 250px;
  }

  .map-overlay {
    top: auto;
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    flex-direction: row;
    font-size: 0.85rem;
  }

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

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

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

  .footer-legal {
    text-align: center;
  }
}

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

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

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

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

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

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

  .about-values {
    flex-direction: column;
    gap: 16px;
  }
}
