/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary: #ae8625;
  --primary-dark: #d94e1f;
  --primary-light: #ff8c5f;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --gray: #e0e0e0;
  --text-dark: #2c2c2c;
  --text-gray: #666666;
  --text-light: #999999;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:90px;
	right:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.logo-subtext {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 25px;
}

.nav-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* Intro Section */
.intro {
  background-color: var(--off-white);
}

.intro-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
  padding: 140px 0 var(--section-padding);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* Section Styles */
section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-description {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Section */
.about {
  background-color: var(--off-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

.service-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

/* Why Us Section */
.why-us {
  background-color: var(--off-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary);
}

.why-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 107, 53, 0.1);
  position: absolute;
  top: 20px;
  right: 30px;
}

.why-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.why-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  position: relative;
  z-index: 1;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background-color: var(--off-white);
  transform: translateY(-2px);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-quick {
  background-color: var(--off-white);
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.map-container {
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.contact-cta {
  text-align: center;
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.info-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.info-text p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.info-text a {
  color: var(--primary);
  font-weight: 600;
}

.info-text a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background-color: var(--off-white);
  padding: 40px;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-primary);
  border: 2px solid var(--gray);
  border-radius: 8px;
  background-color: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo .logo-text {
  color: var(--primary);
}

.footer-logo .logo-subtext {
  color: var(--white);
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 968px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .intro-content {
    grid-template-columns: 1fr;
  }

  .intro-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 32px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }
}

/* Page Hero */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  text-align: center;
}

.page-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Detail Page */
.about-detail {
  padding: var(--section-padding) 0;
}

.about-detail .about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-detail .about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
  background-color: var(--off-white);
  padding: var(--section-padding) 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}

.mv-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.mv-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Values Section */
.values {
  padding: var(--section-padding) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background-color: var(--off-white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Team Section */
.team {
  background-color: var(--off-white);
  padding: var(--section-padding) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 30px;
}

.team-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.team-title {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-box {
  text-align: center;
  color: var(--white);
}

.stat-box .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.stat-box .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  letter-spacing: 0;
}

/* Service Detail Pages */
.service-detail {
  padding: var(--section-padding) 0;
}

.service-detail.alt {
  background-color: var(--off-white);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-detail-content.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.service-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 16px;
}

.service-list {
  list-style: none;
  margin: 20px 0;
}

.service-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.service-detail-image {
  position: sticky;
  top: 100px;
}

.service-detail-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.service-info-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-detail.alt .service-info-box {
  background-color: var(--off-white);
}

.service-info-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-info-box ul {
  list-style: none;
}

.service-info-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray);
  font-size: 14px;
  color: var(--text-gray);
}

.service-info-box ul li:last-child {
  border-bottom: none;
}

.service-info-box ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* All Services Section */
.all-services {
  background-color: var(--off-white);
  padding: var(--section-padding) 0;
}

/* Contact Page */
.contact-page {
  padding: var(--section-padding) 0;
}

.contact-page .contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-section .section-title {
  text-align: left;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-intro,
.form-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.info-cards {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.info-cards .info-card {
  background-color: var(--off-white);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
}

.info-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.emergency-info {
  background-color: rgba(255, 107, 53, 0.1);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.emergency-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.emergency-info p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

.contact-form-section .section-title {
  text-align: left;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-form {
  background-color: var(--off-white);
  padding: 40px;
  border-radius: 16px;
}

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Map Section */
.map-section {
  padding: var(--section-padding) 0;
  background-color: var(--off-white);
}

.directions-info {
  margin-top: 40px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 16px;
}

.directions-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.directions-info ul {
  list-style: none;
}

.directions-info ul li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

.directions-info ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background-color: var(--off-white);
  padding: 30px;
  border-radius: 16px;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Responsive Design Updates */
@media (max-width: 968px) {
  .page-title {
    font-size: 36px;
  }

  .about-detail .about-content {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-content,
  .service-detail-content.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-image {
    position: static;
  }

  .contact-page .contact-content {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 28px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box .stat-number {
    font-size: 42px;
  }

  .contact-form {
    padding: 30px 20px;
  }
}


