/* ========== CSS Custom Properties ========== */
:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --accent-pink: #f472b6;
  --accent-amber: #fbbf24;
  --accent-coral: #fb7185;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: #ffffff;
  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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== Geometric Decorations ========== */
.geo-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
}
.geo-circle--1 {
  width: 600px; height: 600px;
  background: var(--teal-600);
  top: -200px; right: -150px;
}
.geo-circle--2 {
  width: 400px; height: 400px;
  background: var(--accent-pink);
  bottom: 20%; left: -100px;
}
.geo-circle--3 {
  width: 200px; height: 200px;
  background: var(--teal-500);
  top: 50%; right: 5%;
  opacity: 0.03;
}
.geo-triangle {
  position: absolute;
  width: 0; height: 0;
  opacity: 0.04;
}
.geo-triangle--1 {
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid var(--accent-amber);
  top: 30%; left: 5%;
  transform: rotate(15deg);
}
.geo-triangle--2 {
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 121px solid var(--accent-coral);
  bottom: 15%; right: 8%;
  transform: rotate(-20deg);
}
.geo-square {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--teal-600);
  border-radius: var(--radius-sm);
  top: 45%; right: 2%;
  transform: rotate(45deg);
  opacity: 0.03;
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--slate-900);
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--teal-600);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-style: italic;
  transition: var(--transition);
}
.logo:hover .logo-mark {
  background: var(--teal-700);
  transform: rotate(-5deg) scale(1.05);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}
.nav-cta {
  background: var(--teal-600);
  color: white !important;
  margin-left: 8px;
  padding: 10px 22px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--teal-700) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}
.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-toggle:hover { background: var(--slate-100); }
.hamburger {
  position: relative;
  width: 20px; height: 14px;
  display: block;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }
.mobile-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg); top: 6px;
}
.mobile-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.mobile-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg); bottom: 0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-family: var(--font-display);
}
.mobile-nav-link:hover { color: var(--teal-700); background: var(--teal-50); }
.mobile-book {
  margin-top: 16px;
  background: var(--teal-600);
  color: white !important;
  border-radius: var(--radius-xl) !important;
  padding: 14px 40px !important;
  font-family: var(--font-body) !important;
  font-size: 1.1rem !important;
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 40%, #f8fafc 100%);
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--teal-100);
  padding: 6px 16px 6px 8px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--slate-900);
  margin-bottom: 24px;
}
.hero-accent {
  color: var(--teal-600);
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 12px;
  background: var(--teal-200);
  opacity: 0.5;
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-8deg);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-600);
  color: white;
  box-shadow: 0 4px 14px rgba(13,148,136,0.25);
}
.btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,0.35);
}
.btn-outline {
  background: white;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-200);
}
.btn-outline:hover {
  border-color: var(--teal-400);
  color: var(--teal-700);
  background: var(--teal-50);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--teal-700);
}
.btn-white:hover {
  background: var(--slate-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid var(--slate-100);
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-700);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--slate-200);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
.hero-image-main img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}
.hero-image-accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  z-index: 3;
}
.hero-image-accent img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.accent-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: white;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
}
.accent-card svg { color: var(--accent-amber); }
.hero-geo {
  position: absolute;
  z-index: 1;
}
.geo-block--1 {
  width: 80px; height: 80px;
  background: var(--teal-400);
  border-radius: var(--radius-sm);
  top: -20px; right: 20px;
  opacity: 0.3;
  transform: rotate(25deg);
}
.geo-block--2 {
  width: 50px; height: 50px;
  background: var(--accent-pink);
  border-radius: 50%;
  bottom: 60px; right: -10px;
  opacity: 0.25;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  color: white;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ========== Section Shared ========== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-600);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.text-teal { color: var(--teal-600); }
.section-desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ========== Services ========== */
.services {
  padding: 100px 0;
  background: white;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--teal-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--teal-600);
  color: white;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}

/* ========== About ========== */
.about {
  padding: 100px 0;
  background: var(--slate-50);
  position: relative;
  overflow: hidden;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid white;
}
.about-img-float img {
  width: 220px;
  height: 270px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--teal-600);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.badge-year {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}
.about-geo {
  position: absolute;
  top: 30px;
  right: -20px;
  opacity: 0.15;
}
.geo-dots {
  width: 80px; height: 80px;
  background-image: radial-gradient(var(--teal-600) 2px, transparent 2px);
  background-size: 12px 12px;
  transform: rotate(15deg);
}
.about-content { position: relative; z-index: 1; }
.about-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate-600);
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
}
.feature-icon {
  width: 28px; height: 28px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  flex-shrink: 0;
}

/* ========== Gallery ========== */
.gallery {
  padding: 100px 0 80px;
  background: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}
.gallery-item--large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 420px;
}
.gallery-item--large img { min-height: 420px; }
.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  min-height: 200px;
}
.gallery-item--wide {
  grid-column: span 5;
  min-height: 200px;
}

/* ========== Testimonials ========== */
.testimonials {
  padding: 100px 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: var(--teal-600);
  border-radius: 50%;
  opacity: 0.08;
}
.testimonials .section-tag {
  background: rgba(13,148,136,0.15);
  border-color: rgba(13,148,136,0.3);
  color: var(--teal-400);
}
.testimonials .section-title { color: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(13,148,136,0.3);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--teal-500);
  opacity: 0.4;
  margin-bottom: -8px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--teal-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.author-name {
  display: block;
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}
.author-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ========== CTA ========== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 50%, var(--teal-500) 100%);
  position: relative;
  overflow: hidden;
}
.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-shape--1 { width: 300px; height: 300px; top: -100px; left: -80px; }
.cta-shape--2 { width: 200px; height: 200px; bottom: -60px; right: 10%; }
.cta-shape--3 { width: 120px; height: 120px; top: 20%; right: 5%; background: rgba(255,255,255,0.04); }

/* ========== Contact ========== */
.contact {
  padding: 100px 0;
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--slate-700);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--teal-700); }
.contact-item span { white-space: pre-line; }

/* Form */
.contact-form-wrap {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--slate-800);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.form-input::placeholder { color: var(--slate-400); }
.form-select { cursor: pointer; 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%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm);
  color: var(--teal-800);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg { color: var(--teal-600); flex-shrink: 0; }

/* ========== Footer ========== */
.footer {
  background: var(--slate-950);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--teal-600); }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--teal-400); }
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-contact a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact a:hover { color: var(--teal-400); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--teal-600);
  color: white;
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ========== Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero-container { gap: 40px; }
  .hero-image-main img { height: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { gap: 50px; }
  .about-img-main img { height: 440px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrapper { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-image-main img { height: 420px; }
  .hero-image-accent { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-container { grid-template-columns: 1fr; gap: 60px; }
  .about-img-float { right: 10px; bottom: -20px; }
  .about-img-float img { width: 160px; height: 200px; }
  .about-badge { top: -10px; left: 10px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; min-height: 280px; }
  .gallery-item--large img { min-height: 280px; }
  .gallery-item--wide { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-headline { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large,
  .gallery-item--wide { grid-column: span 1; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
