/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: #1a1a2e;
  color: #f0ece2;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── COLOR TOKENS ─── */
:root {
  --charcoal: #1a1a2e;
  --charcoal-light: #232342;
  --charcoal-mid: #2a2a4a;
  --coral: #E8645A;
  --coral-light: #f08078;
  --coral-dark: #c94e44;
  --cream: #f0ece2;
  --cream-soft: #e8e0d4;
  --white: #ffffff;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 700; line-height: 1.15; }
.title-accent { font-family: var(--font-display); font-style: italic; color: var(--cream); }
.title-coral { color: var(--coral); }
.title-coral-light { color: var(--coral-light); }

/* ─── SECTION TAG ─── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(232, 100, 90, 0.12);
  border: 1px solid rgba(232, 100, 90, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag-light {
  background: rgba(240, 128, 120, 0.15);
  border-color: rgba(240, 128, 120, 0.4);
  color: var(--coral-light);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: rgba(240, 236, 226, 0.65);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  padding: 14px 28px;
  transition: all 0.3s ease;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 100, 90, 0.4);
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 100, 90, 0.5);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--coral);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}
.logo:hover .logo-mark { transform: rotate(0deg) scale(1.05); }
.logo-text { color: var(--cream); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240, 236, 226, 0.75);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn-coral { color: var(--white); }
.nav-links .btn-coral::after { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal-light);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 40%, #3d2035 70%, #1a1a2e 100%);
}
.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(1px);
}
.geo-1 {
  width: 600px; height: 600px;
  background: var(--coral);
  top: -200px; right: -100px;
  animation: floatGeo 8s ease-in-out infinite;
}
.geo-2 {
  width: 300px; height: 300px;
  background: #9b5de5;
  bottom: 10%; left: 5%;
  animation: floatGeo 10s ease-in-out infinite reverse;
}
.geo-3 {
  width: 150px; height: 150px;
  background: var(--coral-light);
  top: 30%; left: 15%;
  animation: floatGeo 6s ease-in-out infinite;
}
.geo-4 {
  width: 80px; height: 80px;
  background: #00d4aa;
  border-radius: 20px;
  top: 20%; right: 30%;
  animation: floatGeo 7s ease-in-out infinite reverse;
  transform: rotate(45deg);
}
.geo-5 {
  width: 120px; height: 120px;
  background: #ffd166;
  border-radius: 30px;
  bottom: 20%; right: 10%;
  animation: floatGeo 9s ease-in-out infinite;
  transform: rotate(20deg);
}
@keyframes floatGeo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 236, 226, 0.7);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(240, 236, 226, 0.65);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--coral);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(240, 236, 226, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(240, 236, 226, 0.15);
}
.hero-image {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hero-img-wrap img {
  width: 420px;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero-img-accent {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid rgba(232, 100, 90, 0.3);
  pointer-events: none;
}
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -40px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.float-card-text { display: flex; flex-direction: column; }
.float-card-text strong { font-size: 1.1rem; color: var(--charcoal); }
.float-card-text span { font-size: 0.75rem; color: #888; }

@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 140px; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 60px;
  }
  .hero-img-wrap img { width: 320px; height: 400px; }
  .hero-float-card { left: 50%; transform: translateX(-50%); bottom: -30px; }
}
@media (max-width: 480px) {
  .hero-img-wrap img { width: 260px; height: 340px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ─── SERVICES ─── */
.services {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.services-deco {
  position: absolute;
  top: 60px; right: -60px;
  width: 200px; height: 200px;
}
.deco-circle {
  width: 200px; height: 200px;
  border: 3px solid rgba(232, 100, 90, 0.15);
  border-radius: 50%;
}
.deco-dots {
  position: absolute;
  bottom: -30px; left: 40px;
  width: 60px; height: 60px;
  background-image: radial-gradient(circle, var(--coral) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.4;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(240, 236, 226, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 100, 90, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(232, 100, 90, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.service-card:hover .service-icon {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--cream);
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(240, 236, 226, 0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(232, 100, 90, 0.1);
  color: var(--coral);
}
.service-tag.coral { background: rgba(232, 100, 90, 0.15); color: var(--coral-light); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── ABOUT ─── */
.about {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.about-deco {
  position: absolute;
  bottom: 40px; right: -40px;
  width: 160px; height: 160px;
  border: 3px solid rgba(232, 100, 90, 0.12);
  border-radius: 24px;
  transform: rotate(30deg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-img-main img { width: 400px; height: 480px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.about-img-secondary img { width: 280px; height: 340px; object-fit: cover; }
.about-experience {
  position: absolute;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  background: var(--coral);
  border-radius: 20px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(232, 100, 90, 0.4);
  z-index: 2;
}
.about-experience .exp-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-experience .exp-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.about-content { position: relative; z-index: 1; }
.about-text {
  font-size: 1rem;
  color: rgba(240, 236, 226, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 28px 0 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(240, 236, 226, 0.75);
}
.feature-check {
  width: 22px; height: 22px;
  background: rgba(232, 100, 90, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 420px; width: 100%; max-width: 480px; margin: 0 auto; }
  .about-img-main img { width: 280px; height: 360px; }
  .about-img-secondary img { width: 200px; height: 260px; }
  .about-experience { right: 10px; }
}
@media (max-width: 480px) {
  .about-images { height: 360px; }
  .about-img-main img { width: 220px; height: 300px; }
  .about-img-secondary img { width: 160px; height: 220px; }
  .about-features { grid-template-columns: 1fr; }
}

/* ─── GALLERY ─── */
.gallery {
  padding: 100px 0 80px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; }
.gallery-item:nth-child(3) { grid-row: span 2; }
.gallery-item:nth-child(3) img { height: 100%; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-overlay span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3) { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) img,
  .gallery-item:nth-child(3) img { height: auto; }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--charcoal-light);
}
.testimonials-bg { position: absolute; inset: 0; pointer-events: none; }
.testi-geo-1 {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--coral);
  border-radius: 50%;
  top: -200px; left: -100px;
  opacity: 0.06;
  filter: blur(60px);
}
.testi-geo-2 {
  position: absolute;
  width: 300px; height: 300px;
  background: #9b5de5;
  border-radius: 50%;
  bottom: -100px; right: -50px;
  opacity: 0.06;
  filter: blur(60px);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testi-card {
  background: var(--charcoal);
  border: 1px solid rgba(240, 236, 226, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 100, 90, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-text {
  font-size: 0.95rem;
  color: rgba(240, 236, 226, 0.7);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(232, 100, 90, 0.3);
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
}
.testi-author span {
  font-size: 0.75rem;
  color: rgba(240, 236, 226, 0.45);
}
.section-header-light .section-title-light { color: var(--cream); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ─── CTA ─── */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-circle-1 {
  position: absolute;
  width: 300px; height: 300px;
  border: 2px solid rgba(232, 100, 90, 0.15);
  border-radius: 50%;
  top: -80px; left: -80px;
}
.cta-circle-2 {
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(232, 100, 90, 0.06);
  border-radius: 50%;
  bottom: -60px; right: -40px;
}
.cta-square {
  position: absolute;
  width: 100px; height: 100px;
  border: 2px solid rgba(155, 93, 229, 0.15);
  border-radius: 20px;
  top: 20px; right: 10%;
  transform: rotate(30deg);
}
.cta-content { text-align: center; }
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
  color: var(--cream);
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(240, 236, 226, 0.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  background: var(--charcoal-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: rgba(240, 236, 226, 0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 52px; height: 52px;
  background: rgba(232, 100, 90, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.9rem;
  color: rgba(240, 236, 226, 0.55);
  line-height: 1.6;
}
.contact-item a {
  color: var(--coral);
  transition: color 0.3s ease;
}
.contact-item a:hover { color: var(--coral-light); }
.contact-form-wrap {
  background: var(--charcoal);
  border: 1px solid rgba(240, 236, 226, 0.06);
  border-radius: 24px;
  padding: 40px;
}
.form-title {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--cream);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240, 236, 226, 0.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--charcoal-light);
  border: 1px solid rgba(240, 236, 226, 0.1);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 236, 226, 0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 100, 90, 0.15);
}
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: var(--charcoal-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
  width: 80px; height: 80px;
  background: rgba(232, 100, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--coral);
}
.form-success h4 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.9rem;
  color: rgba(240, 236, 226, 0.55);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

/* ─── FOOTER ─── */
.footer {
  padding: 60px 0 0;
  background: #13132a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(240, 236, 226, 0.06);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(240, 236, 226, 0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-links ul,
.footer-hours ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(240, 236, 226, 0.45);
  transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--coral); }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(240, 236, 226, 0.45);
}
.footer-hours li span:last-child { color: var(--coral); font-weight: 500; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(240, 236, 226, 0.45);
  line-height: 1.6;
}
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--coral); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(240, 236, 226, 0.3);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
