*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #2c686a;
  --teal-dark: #1f4d4f;
  --teal-light: #e8f2f2;
  --warm: #8b5e3c;
  --light: #f7f5f2;
  --white: #ffffff;
  --dark: #1a2c2d;
  --text: #1a1a1a;
  --muted: #555;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.7px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--teal) !important; color: #fff !important;
  padding: 0.45rem 1.1rem; border-radius: 4px;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* HERO */
.hero {
  min-height: 600px;
  background: url('images/hero.jpg') center center / cover no-repeat var(--dark);
  position: relative;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,44,45,0.88) 0%, rgba(26,44,45,0.6) 60%, rgba(26,44,45,0.25) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 5rem 5%; max-width: 680px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(44,104,106,0.25); border: 1px solid rgba(44,104,106,0.55);
  color: #a8d4d5; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 20px; margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 1rem; }
.hero h1 em { color: #7ec8ca; font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.82); margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: #fff;
  padding: 0.85rem 2rem; border-radius: 5px;
  font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  display: inline-block; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  padding: 0.85rem 2rem; border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  display: inline-block; transition: border-color 0.2s;
}
.btn-outline:hover { border-color: #fff; }

/* TRUST BAR */
.trust-bar {
  background: var(--teal);
  padding: 1rem 5%;
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.88); font-size: 0.85rem; font-weight: 600;
}
.trust-item svg { flex-shrink: 0; }

/* STATS */
.stats-bar {
  background: var(--dark); padding: 2.5rem 5%;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem; text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4vw,3.2rem); color: #fff; line-height: 1; }
.stat-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* SECTIONS */
section { padding: 5rem 5%; }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.section-title { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 1.2rem; color: var(--dark); }
.section-intro { font-size: 1.05rem; color: var(--muted); max-width: 640px; line-height: 1.75; margin-bottom: 2.5rem; }
.centered { text-align: center; }
.centered .section-intro { margin-left: auto; margin-right: auto; }

/* ABOUT GRID */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-img { border-radius: 10px; overflow: hidden; }
.about-img img { width: 100%; height: 360px; object-fit: cover; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.feat { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.75rem; background: var(--teal-light); border-radius: 8px; font-size: 0.85rem; font-weight: 600; }
.feat svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.service-card { background: var(--white); border-radius: 10px; padding: 1.8rem; border: 1px solid #e5e0d8; transition: box-shadow 0.2s, transform 0.15s; }
.service-card:hover { box-shadow: 0 8px 28px rgba(44,104,106,0.12); transform: translateY(-2px); }
.svc-icon { width: 48px; height: 48px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.svc-icon svg { color: var(--teal); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; background: var(--teal-light); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,44,45,0.8));
  color: #fff; padding: 1.5rem 1rem 0.75rem;
  font-size: 0.82rem; font-weight: 600;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.t-card { background: var(--white); border-radius: 10px; padding: 1.8rem; border-left: 4px solid var(--teal); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.stars { color: #f59e0b; margin-bottom: 0.8rem; }
.t-card blockquote { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar { width: 42px; height: 42px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.88rem; flex-shrink: 0; }
.t-name { font-weight: 700; font-size: 0.88rem; }
.t-source { font-size: 0.78rem; color: var(--muted); }

/* CTA SECTION */
.cta-section { background: var(--teal); padding: 5rem 5%; text-align: center; }
.cta-section h2 { font-size: clamp(1.6rem,3vw,2.4rem); color: #fff; margin-bottom: 0.8rem; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-white { background: #fff; color: var(--teal); padding: 0.9rem 2.2rem; border-radius: 5px; font-weight: 700; font-size: 1rem; display: inline-block; margin: 0.4rem; transition: transform 0.15s; }
.btn-white:hover { transform: translateY(-1px); }
.btn-white-outline { background: transparent; color: #fff; padding: 0.9rem 2.2rem; border-radius: 5px; border: 2px solid rgba(255,255,255,0.55); font-weight: 700; font-size: 1rem; display: inline-block; margin: 0.4rem; transition: border-color 0.15s; }
.btn-white-outline:hover { border-color: #fff; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.c-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { color: var(--teal); }
.c-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 0.2rem; }
.c-value { font-size: 1rem; font-weight: 600; }
.c-value a { color: var(--dark); }
.c-value a:hover { color: var(--teal); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 0.85rem 1rem; border: 1px solid #ddd; border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: 0.95rem; background: var(--white);
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { background: var(--teal); color: #fff; border: none; padding: 0.9rem 2rem; border-radius: 5px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: background 0.2s; }
.contact-form button:hover { background: var(--teal-dark); }

/* BADGE ROW */
.badge-row { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; margin-top: 2rem; }
.badge-row img { height: 56px; width: auto; object-fit: contain; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 2.5rem 5%; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; }
.footer-brand span { color: #7ec8ca; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--dark); padding: 4rem 5%; }
.page-hero h1 { font-size: clamp(1.8rem,4vw,3rem); color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; }
.breadcrumb a { color: #7ec8ca; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 1.5rem 5%; gap: 1.2rem; }
  .hero { min-height: 480px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-feats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
