/* ═══════════════════════════════════════════════════════════════
   Leal Finish Carpentry — Static Site Styles
   Design: Modern Precision — Navy Blue, Light Gray, White, Black + Gold accents
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --navy: #1a1f3a;
  --navy-dark: #12162b;
  --navy-light: #252b4a;
  --gold: #c9a84c;
  --gold-light: rgba(201, 168, 76, 0.15);
  --gold-muted: rgba(201, 168, 76, 0.4);
  --gray-light: #f3f4f6;
  --gray-text: #5a5e6e;
  --gray-dark: #2d3142;
  --white: #ffffff;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ═══════════════ NAVIGATION ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 0;
}

.nav.scrolled {
  background: rgba(18, 22, 43, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy-light);
  border: 1px solid var(--gold-muted);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: #2f3555;
  border-color: var(--gold);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  color: #fff;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  background: rgba(18, 22, 43, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
}

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

.mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.85rem;
}

@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 22, 43, 0.95) 0%, rgba(22, 27, 48, 0.80) 45%, rgba(26, 31, 58, 0.40) 100%);
}

.hero-bottom-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  padding: 7rem 0 8rem;
  max-width: 720px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-tag-line {
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.hero-tag span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hero-area {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.hero-area strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--navy);
  border: 2px solid var(--gold-muted);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--gold);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary svg {
  color: var(--gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-secondary:hover {
  color: #fff;
}

.btn-secondary svg {
  transition: transform 0.2s;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* ═══════════════ SECTION COMMON ═══════════════ */
.section {
  padding: 6rem 0;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-tag span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--navy-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-title.white {
  color: #fff;
}

/* ═══════════════ INTRO ═══════════════ */
.intro {
  padding: 6rem 0 7rem;
  background: var(--white);
}

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

@media (min-width: 1024px) {
  .intro-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.intro-text {
  color: var(--gray-text);
  font-size: 1.1rem;
  line-height: 1.8;
  border-left: 2px solid var(--gold-muted);
  padding-left: 2rem;
}

/* ═══════════════ SERVICES ═══════════════ */
.services {
  position: relative;
  padding: 6rem 0;
  background: var(--gray-light);
}

.services-top-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

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

@media (min-width: 768px) {
  .services-featured {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid #e5e7eb;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  transition: border-color 0.3s;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--gold-muted);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-muted);
  transition: background 0.3s;
}

.service-card:hover::before {
  background: var(--gold);
}

.service-card .num {
  color: var(--gold-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin-top: 0.5rem;
}

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

@media (min-width: 640px) {
  .services-list {
    grid-template-columns: 1fr 1fr;
  }
}

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

.services-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  transition: background 0.2s;
}

.services-list-item:hover {
  background: rgba(255, 255, 255, 0.8);
}

.services-list-item .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.services-list-item span {
  color: var(--gray-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ═══════════════ WHY CHOOSE US ═══════════════ */
.why-choose {
  position: relative;
  padding: 6rem 0;
  background: var(--navy);
}

.why-choose-top-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--gray-light);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(201, 168, 76, 0.15);
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-card {
  padding: 2.5rem;
  background: var(--navy);
  transition: background 0.3s;
}

.why-card:hover {
  background: var(--navy-light);
}

.why-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.why-card .num {
  font-family: var(--font-heading);
  color: var(--gold-muted);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
}

.why-card .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-card .icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.why-card h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ═══════════════ GALLERY ═══════════════ */
.gallery {
  position: relative;
  padding: 6rem 0;
  background: var(--white);
}

.gallery-top-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
}

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 22, 43, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item p {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.gallery-item:hover p {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 21/6;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

@media (min-width: 1024px) {
  .gallery-item.wide {
    grid-column: span 4;
  }
}

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials {
  position: relative;
  padding: 6rem 0;
  background: var(--navy);
}

.testimonials-top-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}

.testimonials .section-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.333%;
  }
}

.testimonial-card {
  background: var(--navy-light);
  border: 1px solid #3a3f5a;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 64px;
  background: var(--gold-muted);
}

.testimonial-card .quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(201, 168, 76, 0.2);
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonial-card .review-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-card .author {
  border-top: 1px solid #3a3f5a;
  padding-top: 1.25rem;
  margin-top: auto;
}

.testimonial-card .author-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-card .author-info {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid #3a3f5a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: #2f3555;
  border-color: var(--gold-muted);
  color: var(--gold);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
  padding: 6rem 0;
  background: var(--gray-light);
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

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

.about-image {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .about-image img {
    height: 520px;
  }
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--navy-light);
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gold-muted);
}

@media (min-width: 768px) {
  .about-badge {
    right: -2rem;
  }
}

.about-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.about-badge .label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.about-accent-line {
  position: absolute;
  top: 1.5rem;
  left: -0.75rem;
  width: 1px;
  height: 96px;
  background: var(--gold-muted);
}

.about-text p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--navy-dark);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.about-badges .badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-badges .badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.about-badges .badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
}

/* ═══════════════ CTA ═══════════════ */
.cta {
  position: relative;
  padding: 7rem 0 8rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 43, 0.90);
}

.cta-content {
  position: relative;
  max-width: 720px;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  color: var(--navy-dark);
  padding: 1rem 2rem;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-white:hover {
  background: var(--gray-light);
}

.btn-white:active {
  transform: scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--gold-muted);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
}

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

/* ═══════════════ CONTACT FORM ═══════════════ */
.contact {
  position: relative;
  padding: 6rem 0;
  background: var(--white);
}

.contact-top-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--navy-dark);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--gray-light);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-box svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.contact-info-item .label {
  font-size: 0.7rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info-item .value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.contact-form {
  background: var(--gray-light);
  border: 1px solid #e5e7eb;
  padding: 2rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2.5rem;
  }
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.form-group .input-wrapper {
  position: relative;
}

.form-group .input-wrapper svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gray-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--navy-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group textarea {
  padding-left: 1rem;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--navy);
  border: 1px solid var(--gold-muted);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

@media (min-width: 768px) {
  .form-submit {
    width: auto;
  }
}

.form-submit:hover {
  background: var(--navy-light);
  border-color: var(--gold);
}

.form-submit:active {
  transform: scale(0.97);
}

.form-submit svg {
  color: var(--gold);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--gray-text);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  min-height: 400px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

.form-success .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.form-success .icon-circle svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--gray-text);
  max-width: 400px;
}

/* ═══════════════ MAP ═══════════════ */
.map-section {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.map-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-text);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--navy-dark);
  padding: 4rem 0 2rem;
}

.footer-top-rule {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, var(--gold-muted), rgba(201, 168, 76, 0.2), transparent);
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand img {
  height: 80px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-style: italic;
  font-family: var(--font-heading);
}

.footer h4 {
  color: #fff;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a,
.footer-links span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-services {
  list-style: none;
}

.footer-services li {
  margin-bottom: 0.75rem;
}

.footer-services a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-services a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--navy-light);
  border: 1px solid #3a3f5a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-link.facebook:hover {
  border-color: #1877F2;
  background: rgba(24, 119, 242, 0.1);
}

.social-link.instagram:hover {
  border-color: #E4405F;
  background: rgba(228, 64, 95, 0.1);
}

.social-link svg {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* ═══════════════ WHATSAPP BUTTON ═══════════════ */
.whatsapp-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-btn.visible {
  display: flex;
}

@media (min-width: 768px) {
  .whatsapp-btn.visible {
    display: none;
  }
}

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

/* ═══════════════ ANIMATIONS ═══════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
