/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #374151;
  background: #F5F0EB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; color: #1E293B; line-height: 1.2; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D9488;
  background: rgba(13,148,136,0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-desc { color: #6B7280; font-size: 1.05rem; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #0D9488;
  color: #fff;
  border-color: #0D9488;
}
.btn-primary:hover { background: #0F766E; border-color: #0F766E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-secondary {
  background: transparent;
  color: #1E293B;
  border-color: #1E293B;
}
.btn-secondary:hover { background: #1E293B; color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: #0D9488;
  border-color: #fff;
}
.btn-white:hover { background: #F0FDFA; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245,240,235,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,148,136,0.08);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: #1E293B; }
.logo-accent { color: #0D9488; }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.2s ease;
}
.nav-list a:hover { color: #0D9488; background: rgba(13,148,136,0.06); }
.nav-cta {
  background: #0D9488 !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #0F766E !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: #1E293B;
  position: relative;
  transition: all 0.3s ease;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: #1E293B;
  transition: all 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245,240,235,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(13,148,136,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list a { width: 100%; text-align: center; padding: 12px 16px; }
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 120px 0 0;
  background: linear-gradient(135deg, #F5F0EB 0%, #E8F4F2 50%, #F5F0EB 100%);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 30L30 55L5 30L30 5Z' fill='none' stroke='%230D9488' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0D9488;
  background: rgba(13,148,136,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 20px;
  color: #1E293B;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem;
  color: #6B7280;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

/* Hero Cards */
.hero-visual { position: relative; height: 560px; }
.hero-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card-1 { width: 240px; height: 300px; top: 0; right: 40px; z-index: 3; }
.hero-card-2 { width: 200px; height: 160px; top: 180px; right: 0; z-index: 2; }
.hero-card-3 { width: 200px; height: 160px; bottom: 0; right: 100px; z-index: 1; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .hero { padding-top: 100px; }
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #F5F0EB;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); border-color: rgba(13,148,136,0.15); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(13,148,136,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: #0D9488; }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #1E293B; }
.service-card p { font-size: 0.925rem; color: #6B7280; line-height: 1.7; }

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

/* ── About ── */
.about {
  padding: 100px 0;
  background: #fff;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border: 4px solid #fff;
}
.about-stat {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #0D9488;
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(13,148,136,0.3);
}
.stat-number { display: block; font-family: 'DM Serif Display', serif; font-size: 1.5rem; }
.stat-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.about-content .section-tag { margin-bottom: 16px; }
.about-text { color: #6B7280; font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-features { margin-top: 28px; display: grid; gap: 12px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; }
  .about-img-float { right: -10px; bottom: -20px; }
  .about-stat { left: -10px; top: -10px; }
}

/* ── Gallery ── */
.gallery { padding: 100px 0; background: #F5F0EB; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item:nth-child(2), .gallery-item:nth-child(4), .gallery-item:nth-child(6) { aspect-ratio: 3/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,148,136,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-family: 'DM Serif Display', serif; font-size: 1.15rem; }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 50%, #115E59 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='3' fill='white'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text { flex: 1; }
.cta-title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #fff; margin-bottom: 16px; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 480px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ── Contact ── */
.contact { padding: 100px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { color: #6B7280; font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: grid; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(13,148,136,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #1E293B; margin-bottom: 4px; }
.contact-item p { font-size: 0.925rem; color: #6B7280; line-height: 1.6; }
.contact-item a { color: #0D9488; font-weight: 500; transition: color 0.2s; }
.contact-item a:hover { color: #0F766E; }

/* Form */
.contact-form-wrap {
  background: #F5F0EB;
  border-radius: 24px;
  padding: 36px;
}
.contact-form { display: grid; gap: 20px; }
.form-group { display: grid; gap: 6px; }
.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1E293B;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0D9488;
  box-shadow: 0 0 0 4px rgba(13,148,136,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(13,148,136,0.08);
  border-radius: 12px;
  color: #0D9488;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success.show { display: flex; }

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

/* ── Map Section ── */
.map-section { padding: 0 0 0; background: #F5F0EB; }
.map-placeholder {
  background: linear-gradient(135deg, #E8F4F2 0%, #D1FAE5 100%);
  padding: 60px 24px;
  text-align: center;
}
.map-content { max-width: 480px; margin: 0 auto; }
.map-content svg { margin: 0 auto 16px; }
.map-content h3 { font-size: 1.5rem; margin-bottom: 8px; }
.map-content p { color: #6B7280; margin-bottom: 20px; }

/* ── Footer ── */
.footer { background: #1E293B; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #fff; }
.footer-desc { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0D9488;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
