/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #1a6fb5;
  --accent-orange: #e67e22;
  --dark-charcoal: #2c3e50;
  --medium-gray: #7f8c8d;
  --light-gray: #f5f7fa;
  --soft-gray: #ecf0f1;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark-charcoal);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}



h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--dark-charcoal);
}

section {
  padding: 4rem 1.5rem;
}

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

.gray-bg {
  background-color: var(--soft-gray);
}

.light-gray-bg {
  background-color: var(--light-gray);
}

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

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

.btn-primary:hover {
  background-color: #155a93;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

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

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 15px var(--shadow);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
}

.logo p {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--dark-charcoal);
  text-decoration: none;
  font-size: 1.1rem;
}

.header-phone i {
  color: var(--primary-blue);
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Hero Section */


.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero .tagline {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.faq-answer p {
  padding-top: 1rem;
  color: var(--medium-gray);
}

.faq-icon {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Service Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.area-item {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow);
}

/* Premium Services */
.premium-container {
  background-color: var(--white);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 10px 30px var(--shadow);
  margin-top: 3rem;
  border-top: 5px solid var(--accent-orange);
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.premium-item {
  text-align: center;
  padding: 1.5rem;
}

.premium-item i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
}

.contact-info {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px var(--shadow);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-detail i {
  width: 40px;
  height: 40px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary-blue);
}

/* Footer */
footer {
  background-color: var(--dark-charcoal);
  color: white;
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {

  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

@media (max-width: 768px) {
  section {
    padding: 3rem 1.5rem;
  }

  .hero {
    padding: 8rem 1.5rem 5rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .premium-container {
    padding: 2rem 1.5rem;
  }

  .contact-info {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .header-phone {
    justify-content: center;
  }

  .hero {
    padding: 9rem 1.5rem 4rem;
  }
}
