@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-teal: #007a78;
  --primary-hover: #006361;
  --accent-cyan: #14b8a6;
  --light-bg: #e6f7f7;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-color: #e2e8f0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: #f8fafc;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- HEADER & NAVIGATION --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.logo-text h2 {
  color: var(--primary-teal);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.logo-text span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.menu-button {
  background: var(--primary-teal);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- SIDE DRAWER MENU --- */
#sideMenu {
  position: fixed;
  top: 0;
  right: -380px;
  width: 340px;
  height: 100%;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#sideMenu.open {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-dark);
}

#sideMenu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 25px 0;
}

#sideMenu nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

#sideMenu nav a:hover, #sideMenu nav a.active {
  background: var(--light-bg);
  color: var(--primary-teal);
}

.drawer-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.drawer-contact h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

#overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  z-index: 999;
}

#overlay.show {
  display: block;
}

/* --- HERO & SECTIONS --- */
.hero-section {
  background: linear-gradient(135deg, #e6f7f7 0%, #f0fdfa 100%);
  padding: 60px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary-teal);
  display: block;
}

.hero-content p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary-teal);
  color: white;
  border: 2px solid var(--primary-teal);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
  background: var(--primary-teal);
  color: white;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 45px;
  text-align: center;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 8px;
}

/* --- CAPSULE FEATURED SERVICES (HOMEPAGE) --- */
.capsule-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 6vw 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-capsule {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-dark);
}

.service-capsule:hover {
  border-color: var(--primary-teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--light-bg);
}

.capsule-icon {
  width: 42px;
  height: 42px;
  background: var(--light-bg);
  color: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.service-capsule:hover .capsule-icon {
  background: var(--primary-teal);
  color: white;
}

.capsule-text h4 {
  font-size: 16px;
  font-weight: 700;
}

.capsule-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- STANDARD GRIDS & CARDS --- */
.dept-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 6vw 60px;
}

.dept-card, .service-card {
  background: white;
  padding: 35px 25px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dept-card:hover, .service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 65px;
  height: 65px;
  background: var(--light-bg);
  color: var(--primary-teal);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.dept-card h3, .service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dept-card p, .service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* --- FOOTER --- */
footer {
  background: #0f172a;
  color: white;
  padding: 60px 6vw 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

footer p, footer a {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 8px;
  text-decoration: none;
}

footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 992px) {
  .hero-section { grid-template-columns: 1fr; text-align: center; }
  .dept-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .dept-grid, .services-grid { grid-template-columns: 1fr; }
  .capsule-container { flex-direction: column; align-items: stretch; }
}