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

:root {
  --primary: #0b7a75;
  --primary-dark: #075e5a;
  --accent: #f2a541;
  --dark: #1a1f24;
  --light-bg: #f7f9fa;
  --text: #2c3338;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color .2s;
}

.nav-links a:hover { color: var(--primary); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0b7a75 0%, #094c49 100%);
  color: #fff;
  padding: 90px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text { flex: 1 1 420px; }

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: .95;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image { flex: 1 1 380px; text-align: center; }

.hero-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #1a1f24;
}

.btn-primary:hover { background: #e0913a; }

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* SECTIONS */
.section { padding: 80px 0; }

.alt-bg { background: var(--light-bg); }

.section-title {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #667;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform .25s;
}

.card:hover { transform: translateY(-6px); }

.card-icon { font-size: 2.4rem; margin-bottom: 14px; }

.card h3 { margin-bottom: 10px; color: var(--primary-dark); }

/* ABOUT */
.about-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text { flex: 1 1 420px; }

.about-list { list-style: none; margin-top: 18px; }

.about-list li { margin-bottom: 10px; }

.about-image { flex: 1 1 360px; }

.about-image img { width: 100%; border-radius: 14px; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.testimonial {
  background: #fff;
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.testimonial p { font-style: italic; margin-bottom: 14px; }

.testimonial span { font-weight: 600; color: var(--primary-dark); }

/* CONTACT */
.contact-inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info { flex: 1 1 380px; }

.contact-list { list-style: none; margin: 20px 0; }

.contact-list li { margin-bottom: 12px; }

.contact-list a { color: var(--primary-dark); text-decoration: none; }

.social-links { display: flex; gap: 16px; margin-top: 20px; }

.social-links a {
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s;
}

.social-links a:hover { background: var(--primary-dark); }

.contact-form {
  flex: 1 1 380px;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

.contact-form h3 { margin-bottom: 20px; color: var(--primary-dark); }

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: .9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccd4d6;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-status {
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* POLICY */
.policy-section h1 {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.policy-section h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.policy-section p, .policy-section li { margin-bottom: 8px; }

.policy-section ul { margin-left: 20px; }

/* FOOTER */
.footer {
  background: var(--dark);
  color: #ccd4d6;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links { display: flex; gap: 20px; }

.footer-links a { color: #ccd4d6; text-decoration: none; }

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .burger { display: flex; }
  .hero-text h1 { font-size: 2rem; }
}
