:root {
  --primary: #2D3748;
  --secondary: #4A5568;
  --accent-1: #3182CE;
  --accent-2: #38A169;
  --accent-3: #D69E2E;
  --light-bg: #F7FAFC;
  --light: #EDF2F7;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--secondary);
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-1);
  color: white;
}

.btn-primary:hover {
  background-color: #2C6CB0;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--accent-2);
  color: white;
}

.btn-secondary:hover {
  background-color: #2F855A;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

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

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-1);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-1);
}

.nav-links a:hover::after {
  width: 100%;
}

.separator {
  color: var(--border);
  margin: 0 5px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: var(--light-bg);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-content h1 span {
  color: var(--accent-1);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  background-color: #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.hero-image i {
  font-size: 5rem;
  color: var(--accent-1);
}

.cta-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin-top: 30px;
  border-top: 5px solid var(--accent-1);
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-box .phone {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-1);
  margin: 20px 0;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 400px;
  background-color: var(--light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.about-image i {
  font-size: 5rem;
  color: var(--accent-2);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

/* Stats Section */
.stats {
  background-color: var(--light-bg);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-box {
  padding: 30px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-1);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.2rem;
  color: var(--secondary);
}

/* Services Section */
.services {
  background-color: var(--white);
}

.service-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  height: 300px;
  background-color: var(--light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.service-image i {
  font-size: 4rem;
  color: var(--accent-3);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-content p {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

/* Service Areas Section */
.areas {
  background-color: var(--light-bg);
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.area-item {
  padding: 12px 15px;
  background-color: var(--white);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-1);
}

.area-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Detailed Services */
.detailed-services {
  background-color: var(--white);
}

.service-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-block {
  background-color: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-block-image {
  height: 200px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-block-image i {
  font-size: 3.5rem;
  color: var(--accent-2);
}

.service-block-content {
  padding: 25px;
}

.service-block-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.benefits-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid var(--accent-1);
}

/* Additional Services */
.additional-services {
  background-color: var(--light-bg);
}

.additional-service {
  margin-bottom: 60px;
}

.additional-service:last-child {
  margin-bottom: 0;
}

.additional-service h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--light-bg);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  color: var(--accent-1);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-detail i {
  color: var(--accent-1);
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info {
  flex: 1;
}

.footer-copyright {
  text-align: right;
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {

  .hero-container,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-row {
    flex-direction: column;
  }

  .service-row:nth-child(even) {
    flex-direction: column;
  }

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

  .service-blocks {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li {
    margin: 0 0 15px 0;
    text-align: center;
  }

  .separator {
    display: none;
  }

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

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .cta-box .phone {
    font-size: 1.5rem;
  }
}
