@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary: #006D77;
  --primary-dark: #004D56;
  --primary-light: #83C5BE;
  --accent: #E07A5F;
  --accent-hover: #C96A4F;
  --light: #F4F9F9;
  --white: #FFFFFF;
  --text: #2D3436;
  --text-light: #636E72;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 16px auto 0;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,0.1); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--primary); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }
.nav-cta::after { display: none; }
.nav-cta.active { background: var(--accent-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  padding: 150px 0 90px;
  background: linear-gradient(135deg, #F4F9F9 0%, #E8F4F4 50%, #D4ECEC 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,109,119,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container { display: flex; align-items: center; gap: 50px; position: relative; z-index: 1; }

.hero-content { flex: 1; }

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

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

.hero p {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 6px 25px rgba(224,122,95,0.35); }

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--primary); }

.hero-image { flex: 1; text-align: center; animation: fadeInRight 0.8s ease; }

.hero-image .placeholder-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,109,119,0.2);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat h3 { font-size: 1.8rem; color: var(--primary); font-weight: 700; }
.hero-stat p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ===== ABOUT SECTION (Home) ===== */
.about-home { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.about-image .placeholder-img {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-hover);
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.about-text h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.about-text p { color: var(--text-light); margin-bottom: 16px; }

.feature-list { margin-top: 20px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.feature-list li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  cursor: default;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }

.service-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover { color: var(--accent-hover); gap: 8px; }

/* ===== WHY CHOOSE US ===== */
.why-choose { background: var(--white); }
.choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.choose-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--light);
  transition: var(--transition);
}

.choose-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.choose-card .icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.choose-card h4 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 8px; }
.choose-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-section .cta-phone {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer h3, .footer h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 18px;
}

.footer h4 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; }

.footer-brand p { font-size: 0.92rem; margin-bottom: 16px; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.92rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-contact li i { color: var(--accent); margin-top: 4px; flex-shrink: 0; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.05rem;
  opacity: 0.9;
}

.breadcrumb { margin-top: 12px; font-size: 0.9rem; }
.breadcrumb a { opacity: 0.75; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ===== ABOUT PAGE ===== */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.mission-box, .vision-box {
  background: var(--light);
  padding: 35px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.vision-box { border-left-color: var(--accent); }
.mission-box h3, .vision-box h3 { color: var(--primary-dark); margin-bottom: 10px; }
.mission-box p, .vision-box p { color: var(--text-light); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.team-img {
  height: 260px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
}

.team-info { padding: 20px; }
.team-info h4 { color: var(--primary-dark); }
.team-info span { color: var(--accent); font-size: 0.88rem; font-weight: 500; }
.team-info p { color: var(--text-light); font-size: 0.88rem; margin-top: 6px; }

/* ===== SERVICES PAGE DETAILED ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-detail-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.service-detail-card .icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.service-detail-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.service-detail-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }

.contact-info-card {
  background: var(--light);
  padding: 35px;
  border-radius: var(--radius);
}

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

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-item h4 { font-size: 1rem; color: var(--primary-dark); }
.contact-item p { font-size: 0.92rem; color: var(--text-light); }

.contact-form-wrap {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== PRIVACY PAGE ===== */
.privacy-content { max-width: 850px; margin: 0 auto; }

.privacy-content h2 {
  color: var(--primary-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.privacy-content h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-content p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.privacy-content ul li {
  color: var(--text-light);
  margin-bottom: 6px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease;
}

.animate-left.visible { opacity: 1; transform: translateX(0); }

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}

.animate-right.visible { opacity: 1; transform: translateX(0); }

.animate-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.6s ease;
}

.animate-scale.visible { opacity: 1; transform: scale(1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero p { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 24px;
    transition: var(--transition);
  }
  .nav-menu.active { left: 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 130px 0 60px; }
  .section-title h2 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .choose-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .section-padding { padding: 60px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
