
:root {
  --primary: #2a6e78;
  /* Teal - main brand color */
  --secondary: #8a6d3b;
  /* Gold accent color */
  --dark: #333333;
  /* Dark text color */
  --light: #f8f9fa;
  /* Light background */
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.btn:hover {
  background-color: #1f565e;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(42, 110, 120, 0.2);
}

.highlight {
  color: var(--secondary);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

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

.nav-links li {
  margin-left: 30px;
  position: relative;
}

.nav-links li a {
  font-weight: 500;
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--primary);
}

.nav-links li:not(:last-child):after {
  content: '|';
  position: absolute;
  right: -18px;
  color: #ddd;
  font-weight: 300;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  padding: 100px 30px 30px;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-links li a {
  font-size: 1.2rem;
  font-weight: 500;
  transition: var(--transition);
  display: block;
}

.mobile-nav-links li a:hover {
  color: var(--primary);
  padding-left: 10px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Hero Section ===== */


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

.hero-content {
  flex: 1;
  padding-right: 40px;
  animation: slideInLeft 1s ease-out;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease-out;
}

.circle-img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Why Choose Us ===== */
.why-choose-us {
  background-color: var(--light);
}

.why-container {
  display: flex;
  align-items: center;
}

.why-image {
  flex: 1;
  height: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.why-image:hover img {
  transform: scale(1.03);
}

.why-content {
  flex: 1;
  padding-left: 60px;
}

.why-content h2 {
  text-align: left;
}

.why-content h2:after {
  left: 0;
  transform: none;
}

.benefits {
  list-style: none;
}

.benefits li {
  margin-bottom: 25px;
  padding-left: 40px;
  position: relative;
}

.benefits li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-size: 1.2rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
}

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

.services-split {
  display: flex;
}

.services-left {
  flex: 0 0 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.services-right {
  flex: 0 0 30%;
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.support-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.support-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.support-img:hover img {
  transform: scale(1.05);
}

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

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

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

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #f9f9f9;
}

.faq-item.active .faq-question {
  background-color: #f0f7f9;
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

/* ===== Pricing Section ===== */
.pricing {
  background-color: var(--light);
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  flex: 1;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  max-width: 350px;
  position: relative;
  border: 1px solid #eee;
}

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

.pricing-card.recommended {
  border: 2px solid var(--secondary);
  transform: scale(1.05);
}

.pricing-card.recommended:hover {
  transform: scale(1.05) translateY(-10px);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--primary);
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* ===== Service Areas ===== */
.areas-container {
  max-width: 1000px;
  margin: 0 auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.area-item {
  background-color: var(--white);
  padding: 15px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
}

.area-item:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

/* ===== Comprehensive Services ===== */
.comprehensive-services {
  background-color: var(--light);
}

.service-detail {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  border: 1px solid #eee;
}

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

.service-detail h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* ===== Contact Section ===== */
.contact-container {
  display: flex;
  gap: 40px;
}

.contact-map {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 500px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  flex: 1;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-detail i {
  width: 50px;
  height: 50px;
  background-color: #f0f7f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 15px;
}

/* ===== Footer ===== */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

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

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-info {
  margin-bottom: 20px;
  line-height: 1.8;
}

.copyright {
  color: #aaa;
  font-size: 0.9rem;
}

/* ===== Animations ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-container,
  .why-container,
  .contact-container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }

  .why-image {
    height: 400px;
    margin-bottom: 40px;
  }

  .why-content {
    padding-left: 0;
  }

  .why-content h2 {
    text-align: center;
  }

  .why-content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .services-split {
    flex-direction: column;
  }

  .services-right {
    padding-left: 0;
    margin-top: 40px;
  }

  .support-img {
    height: 300px;
  }

  .contact-map,
  .contact-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .circle-img {
    width: 250px;
    height: 250px;
  }

  .services-left,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
  }

  .pricing-card.recommended {
    transform: none;
  }

  .pricing-card.recommended:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  section {
    padding: 60px 0;
  }

  .service-detail,
  .contact-info {
    padding: 25px;
  }

  .circle-img {
    width: 200px;
    height: 200px;
  }
}
