:root {
    --deep-teal:#00555A;
    --charcoal:#4A4A4A;
    --warm-white:#FAF9F6;
    --soft-sage:#B9E7C5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: 0;
}

body {
    background-color: var(--warm-white);
    color: var(--charcoal);
    font-family: Arial, sans-serif;
}

.site-header {
    padding: 32px 24px 0;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.logo {
    background-color: var(--soft-sage);
    color: var(--charcoal);
    text-decoration: none;
    padding: 14px 42px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 20px;
}

.nav-links {
    list-style: none;
    background-color: var(--soft-sage);
    padding: 14px 42px;
    border-radius: 999px;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.nav-links a:hover,
.logo:hover {
    color: var(--deep-teal);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-quote {
    max-width: 700px;
    margin: 40px auto 0;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    color: var(--charcoal);

    opacity: 0;
    transform: translate(40px);
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-subquote {
     max-width: 700px;
    margin: 40px auto 0;
    font-size: 30px;
    line-height: 1.6;
    text-align: center;
    color: var(--charcoal);

    opacity: 0;
    transform: translate(40px);
    animation: slideUp 1s ease-out forwards;
}

.home-buttons {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.whatsapp-btn {
    display: inline-block;
    background-color: var(--deep-teal);
    color: var(--warm-white);
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700px;
    transition: all 0.25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background-color: #00474b;
}

.about-section {
    max-width: 1050px;
    margin: 80px auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-content {
    flex: 1.5;
    animation: slideUp 1s ease-outforwards;
}

.about-content h1 {
    font-family: "playfair Display", serif;
    font-size: 56px;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 680px;
}

.about-content h2 {
    font-family: "playfair Display", serif;
    font-size: 32px;
    color: var(--deep-teal);
    margin: 36px 0 18px;
}

.qualification-list {
    list-style: none;
    margin-bottom: 36px;
}

.qualification-list li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.qualification-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--deep-teal);
    font-weight: bold;
}

/* Services Page*/

.services-hero {
    max-width: 850px;
    margin: 80px auto 50px;
    padding: 0 24px;
    text-align: center;
    animation: slideUp 1s ease-out forwards;
}

.services-hero h1 {
    font-family: "playfair Display", serif;
    font-size: 56px;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.services-section {
  display: grid;
}

.services-section p {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.services-card {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 85, 90, 0.08);
}

.services-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    color: var(--deep-teal);
    margin-bottom: 14px;
}

.services-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.services-card ul {
    list-style: none;
}

.services-card li {
    font-size: 17px;
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
}

.services-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--deep-teal);
    font-weight: bold;
}

.conditions-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 50px 32px;
  background-color: var(--soft-sage);
  border-radius: 32px;
  text-align: center;
}

.conditions-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--deep-teal);
  margin-bottom: 16px;
}

.conditions-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.conditions-grid span {
  background-color: var(--warm-white);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
}

.services-cta {
  max-width: 850px;
  margin: 0 auto 90px;
  padding: 0 24px;
  text-align: center;
}

.services-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.services-cta p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .services-hero {
    margin: 50px auto 36px;
  }

  .services-hero h1 {
    font-size: 42px;
  }

  .services-section {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 60px;
  }

  .service-card {
    padding: 28px;
  }

  .service-card h2 {
    font-size: 26px;
  }

  .conditions-section {
    margin: 0 24px 60px;
    padding: 36px 24px;
  }

  .conditions-section h2 {
    font-size: 34px;
  }

  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .services-cta h2 {
    font-size: 32px;
  }
}

/* Areas Covered Section */

.areas-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.areas-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--deep-teal);
  margin-bottom: 16px;
}

.areas-section > p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 36px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 85, 90, 0.08);
}

.area-card h3 {
  font-size: 22px;
  color: var(--deep-teal);
  margin-bottom: 8px;
}

.area-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--charcoal);
}

.areas-note {
  margin-top: 34px !important;
  font-weight: 700;
  color: var(--deep-teal);
}

/* Contact Page */

.contact-hero {
  max-width: 850px;
  margin: 80px auto 70px;
  padding: 0 24px;
  text-align: center;
  animation: slideUp 1s ease-out forwards;
}

.contact-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.why-choose-section {
  max-width: 1050px;
  margin: 0 auto 80px;
  padding: 0 24px;
  text-align: center;
}

.why-choose-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--deep-teal);
  margin-bottom: 34px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 22px 20px;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 85, 90, 0.08);
}

.why-card::before {
  content: "✓ ";
  color: var(--deep-teal);
  font-weight: bold;
}

/* Mobile Responsive Styles */

@media (max-width: 768px) {
  .site-header {
    padding: 24px 16px 0;
  }

  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .logo {
    font-size: 18px;
    padding: 12px 32px;
  }

  .nav-links {
    padding: 12px 28px;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 16px;
  }

  .intro-quote,
  .hero-content,
  .contact-hero,
  .services-hero {
    padding: 0 20px;
    text-align: center;
  }

  .intro-quote {
    font-size: 18px;
    margin-top: 32px;
  }

  .home-buttons {
    padding: 0 20px;
  }

  .whatsapp-btn {
    width: 100%;
    max-width: 330px;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
  }

  .about-section {
    flex-direction: column;
    margin: 50px auto;
    gap: 36px;
  }

  .about-content h1,
  .services-hero h1,
  .contact-hero h1 {
    font-size: 42px;
    text-align: center;
  }

  .about-content p,
  .services-hero p,
  .contact-hero p {
    font-size: 18px;
    text-align: center;
  }

  .about-content h2 {
    text-align: center;
  }

  .qualification-list {
    max-width: 420px;
    margin: 0 auto 32px;
  }

  .credentials-card {
    width: 100%;
    max-width: 420px;
  }

  .services-section {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 60px;
  }

  .service-card {
    padding: 28px;
  }

  .service-card h2 {
    font-size: 26px;
  }

  .conditions-section {
    margin: 0 20px 60px;
    padding: 36px 22px;
  }

  .conditions-section h2 {
    font-size: 34px;
  }

  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .services-cta h2,
  .why-choose-section h2,
  .areas-section h2 {
    font-size: 32px;
  }
}