/* System Fonts - No external downloads */

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

body {
  font-family: Verdana, Arial, sans-serif;
  background: #ffffff;
  min-height: 100vh;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

/* Top Bar - Static (not sticky) */
.top-bar {
  background: #0f172a;
  color: white;
  padding: 0.625rem 1rem;
}

.top-bar a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.top-bar a:hover {
  color: #10b981;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  background: #10b981;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.logo p {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #10b981;
}

.btn-primary {
  background: #10b981;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #059669;
  color: white !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
  color: white;
  padding: 5rem 0;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero .text-green {
  color: #10b981;
}

.hero p {
  color: #d1d5db;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-divider {
  height: 4rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-image {
  background: linear-gradient(135deg, #475569, #334155);
  border-radius: 1rem;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.offer-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #10b981;
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.satisfaction-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #0f172a;
}

/* Stats Hero Section */
.stats-hero {
  width: 100%;
}

.stats-hero .grid {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  padding: 2rem;
  margin-top: 4rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-header p {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
}

.service-card:hover {
  border-color: #10b981;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: #d1fae5;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #6b7280;
  line-height: 1.75;
}

/* Convenience Section */
.convenience {
  padding: 5rem 0;
  background: white;
}

.convenience h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.convenience-list {
  margin: 2.5rem 0;
}

.convenience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #10b981;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Excellence Section */
.excellence {
  padding: 5rem 0;
  background: #0f172a;
  color: white;
}

.stat-box {
  text-align: center;
}

.stat-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #10b981;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.commitment-box {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1rem;
  padding: 3rem;
  border: 1px solid #334155;
  margin-top: 4rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: #f9fafb;
}

.testimonial-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  background: #10b981;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

/* Schedule Section */
.schedule {
  padding: 5rem 0;
  background: white;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #10b981;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.map-container {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.map-container iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 4rem 0;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #10b981;
}


.social-links {
  display: flex;            /* make children sit in a row */
  gap: 0.75rem;             /* space between icons */
  margin-top: 1.5rem;
}

.social-links .social-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #0F172A;       /* black background */
  border-radius: 0.5rem;
  display: flex;             /* centers SVG inside */
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
  flex-shrink: 0;            /* prevent shrinking in flex row */
}

.social-links .social-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: #10B981;             /* normal: green icon */
  transition: fill 0.25s ease;
}

/* hover state */
.social-links .social-icon:hover {
  background: #10B981;       /* green background */
  transform: translateY(-2px);
}

.social-links .social-icon:hover svg {
  fill: #9CA3AF;             /* black icon on hover */
}



.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* Responsive - Only for mobile devices */
@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }
}
