@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #111 url('/bg1.jpg') center center / cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  line-height: 1.6;
}

a { color: #00738D; text-decoration: none; transition: color 0.2s; }
a:hover { color: #005a6e; }

.wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 30px auto;
  background: rgba(238, 238, 238, 0.97);
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  overflow: hidden;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid #ddd;
  background: rgba(255,255,255,0.5);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #333;
}

.logo svg { width: 52px; height: 52px; }

.logo-text {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #222;
}

.logo-text span { color: #00738D; }

.logo-sub {
  font-size: 11px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00738D;
  border-bottom-color: #00738D;
}

/* Page Header */
.page-header {
  padding: 50px 40px 30px;
  text-align: center;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 16px;
  color: #666;
}

/* Services Grid (Homepage) */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 40px 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #ddd;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card svg {
  width: 52px;
  height: 52px;
  color: #00738D;
  margin-bottom: 18px;
}

.service-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px dashed #bbb;
  margin: 0 40px;
}

/* Info Sections */
.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 36px 40px;
}

.info-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #00738D;
  display: inline-block;
}

.info-section ul { list-style: none; padding: 0; }

.info-section li {
  padding: 6px 0;
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-section li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #00738D;
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA Button */
.cta-area { text-align: center; padding: 10px 40px 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: #00738D;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover { background: #005a6e; color: #fff; }

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

.btn-outline:hover { background: #00738D; color: #fff; }

/* Tables */
.content-area { padding: 10px 40px 40px; }

.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.modern-table thead th {
  background: #00738D;
  color: #fff;
  font-weight: 500;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
}

.modern-table thead th:first-child {
  background: #f5f5f5;
  color: #333;
}

.modern-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.modern-table tbody tr:hover { background: #f8fafb; }

.modern-table tbody td:first-child {
  font-weight: 500;
  color: #333;
}

.modern-table tbody tr:last-child td { border-bottom: none; }

.table-note {
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: #666;
  font-style: italic;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 40px 0 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 36px 0 16px;
  text-align: center;
}

/* Features List */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  padding: 20px 0 10px;
  text-align: left;
}

.features-grid li {
  list-style: none;
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-grid li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00738D;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 20px 40px 40px;
  text-align: left;
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  border: 1px solid #ddd;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #00738D;
  display: inline-block;
}

.contact-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Map */
.map-container {
  margin: 0 40px 30px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

/* Footer */
.footer {
  background: #1a1a1a;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-text {
  font-size: 13px;
  color: #999;
}

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

.footer-links a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .nav { flex-direction: column; gap: 16px; }
  .nav-links { gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wrapper { margin: 10px; }
  .services { grid-template-columns: 1fr; padding: 20px; }
  .info { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
  .content-area { padding: 10px 20px 30px; }
  .nav { padding: 16px 20px; }
  .footer { padding: 14px 20px; flex-direction: column; text-align: center; }
  .logo-text { font-size: 30px; }
  .page-header { padding: 30px 20px 20px; }
  .page-header h1 { font-size: 24px; }
  .modern-table { font-size: 12px; }
  .modern-table thead th, .modern-table tbody td { padding: 8px 10px; }
}
