/* style.css */
/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: #1a2c3e;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0b5e5e;
  background: rgba(11, 94, 94, 0.08);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2e3a;
  margin-bottom: 1rem;
}

.section-header p {
  color: #4a6272;
  font-size: 1.1rem;
}

/* ========== TOP BAR ========== */
.top-bar {
  background-color: #0a2e3a;  /* deep blue-green */
  color: #ffffff;
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  z-index: 102;
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-left, .top-center, .top-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-bar i {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ========== HEADER / STICKY NAV ========== */
.site-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 101;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03), 0 1px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(0px);
  padding: 12px 0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0a2e3a;
}

.logo i {
  color: #0f7b6e;
  font-size: 1.8rem;
}

.logo .accent {
  color: #0f7b6e;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #2c4b5c;
  transition: 0.2s;
}

.main-nav a:hover {
  color: #0f7b6e;
}

.cta-phone {
  text-align: right;
}

.need-help-txt {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: #5e7b8c;
  letter-spacing: 0.3px;
}

.phone-number {
  font-weight: 800;
  font-size: 1.2rem;
  color: #0f7b6e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-number i {
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #0a2e3a;
}

.mobile-menu-close {
  display: none;
}

/* ========== RESPONSIVE MODE ONLY ========== */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 30px rgba(0, 0, 0, 0.15);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px 0;
  }

  .main-nav.active {
    left: 0;
  }

  .mobile-menu-close {
    display: block;
    text-align: right;
    padding: 16px 24px;
    font-size: 1.6rem;
    cursor: pointer;
    color: #0a2e3a;
    border-bottom: 1px solid #eef2f5;
    margin-bottom: 20px;
  }

  .mobile-menu-close i {
    font-size: 1.6rem;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  .main-nav ul li {
    border-bottom: 1px solid #f0f4f7;
  }

  .main-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
  }

  .cta-phone {
    margin-left: auto;
  }
}

/* Overlay for mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95deg, rgba(10, 46, 58, 0.85) 0%, rgba(10, 46, 58, 0.7) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-content {
  max-width: 700px;
  color: white;
}

.hero-badge {
  font-size: 0.8rem;
  letter-spacing: 2px;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 90%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border-radius: 48px;
  font-weight: 700;
  transition: 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: #0f7b6e;
  color: white;
  border: none;
  box-shadow: 0 8px 16px -6px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background-color: #0a5f55;
  transform: translateY(-2px);
}

.hero-buttons {
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  font-weight: 500;
}

.hero-features span i {
  margin-right: 8px;
  color: #5fc1b0;
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
  padding: 70px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 0;
}

.feature-card {
  background: #fafefd;
  padding: 36px 28px;
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: left;
  border: 1px solid #e2f0ed;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #bcd9d3;
  box-shadow: 0 20px 32px -12px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.feature-icon {
  font-size: 2.4rem;
  color: #1e7e6c;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e3b44;
  letter-spacing: -0.2px;
}

.feature-card p {
  color: #567a8a;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .why-choose {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 28px 22px;
    text-align: center;
  }
  .feature-icon {
    font-size: 2.2rem;
  }
  .feature-card h3 {
    font-size: 1.25rem;
  }
  .why-choose {
    padding: 48px 0;
  }
}
/*=============Contact Heading Section=======*/
.cta-contact-heading {
  background: #0a2e3a;
  padding: 70px 20px;
  text-align: center;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-contact-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 32px;
}

.cta-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0f7b6e;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-contact-btn i {
  font-size: 1.3rem;
}

.cta-contact-btn:hover {
  background: #0a5f55;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-contact-heading {
    padding: 50px 16px;
  }
  
  .cta-contact-heading h2 {
    font-size: 1.6rem;
  }
  
  .cta-contact-btn {
    font-size: 1.1rem;
    padding: 14px 32px;
  }
}

@media (max-width: 480px) {
  .cta-contact-heading h2 {
    font-size: 1.4rem;
  }
  
  .cta-contact-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

/* ========== ABOUT US ========== */
.about-us {
  padding: 90px 0;
  background: #fefefe;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-side img {
  width: 100%;
  border-radius: 36px;
  object-fit: cover;
  height: 420px;
  box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-image-side img:hover {
  transform: scale(1.01);
}

.about-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1e7e6c;
  background: #e6f4f1;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 1.2rem;
}

.about-content-side h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0e3b44;
  margin-bottom: 1.2rem;
}

.about-content-side p {
  color: #3f6b7c;
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.about-location {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2f8f6;
  padding: 12px 18px;
  border-radius: 60px;
  margin: 28px 0 20px 0;
  font-weight: 500;
  color: #1a5c6e;
  width: fit-content;
}

.about-location i {
  font-size: 1.2rem;
  color: #1e7e6c;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid #1e7e6c;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  color: #1e7e6c;
  transition: all 0.25s ease;
  margin-top: 8px;
}

.about-btn:hover {
  background: #1e7e6c;
  color: white;
  gap: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    gap: 48px;
  }
  .about-content-side h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-side img {
    height: 320px;
  }
  .about-content-side h2 {
    font-size: 1.7rem;
  }
  .about-us {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 20px;
  }
  .about-content-side h2 {
    font-size: 1.5rem;
  }
  .about-location {
    font-size: 0.9rem;
    padding: 10px 14px;
  }
  .about-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* ========== SERVICES SECTION ========== */
.services-enhanced {
  background: linear-gradient(135deg, #f9fdfc 0%, #f2f8f5 100%);
  padding: 90px 24px;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 58px;
}

.header-badge {
  display: inline-block;
  background: #1e7e6c;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.services-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0a3b44;
  margin-bottom: 14px;
}

.services-header p {
  font-size: 1.05rem;
  color: #5f8796;
  max-width: 560px;
  margin: 0 auto;
}

.services-enhanced-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.enhanced-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 24px 32px 24px;
  transition: all 0.3s ease;
  border: 1px solid #e0ede9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.enhanced-card:hover {
  transform: translateY(-8px);
  border-color: #c2dfd7;
  box-shadow: 0 25px 35px -16px rgba(0, 0, 0, 0.1);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  border-bottom: 2px solid #eef3f1;
  padding-bottom: 18px;
}

.card-icon-large {
  width: 54px;
  height: 54px;
  background: #e2f3ef;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-large i {
  font-size: 1.8rem;
  color: #1e7e6c;
}

.enhanced-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b4e5c;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #3f6e7e;
  line-height: 1.4;
}

.feature-list li i {
  color: #1e7e6c;
  font-size: 0.9rem;
  width: 18px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1000px) {
  .services-enhanced-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .services-header h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 700px) {
  .services-enhanced {
    padding: 60px 20px;
  }
  .services-enhanced-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .services-header h2 {
    font-size: 1.6rem;
  }
  .card-top {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .enhanced-card h3 {
    text-align: center;
  }
  .feature-list li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-header h2 {
    font-size: 1.4rem;
  }
  .enhanced-card {
    padding: 22px 18px;
  }
  .feature-list li {
    font-size: 0.8rem;
  }
}

/* ========== FAQ SECTION (ACCORDION) ========== */
.faqs {
  padding: 80px 0;
  background: white;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2edf2;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.2s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  cursor: pointer;
  background: #fefefe;
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #153e4d;
  margin: 0;
}

.faq-question i {
  color: #0f7b6e;
  font-size: 1rem;
  transition: 0.2s;
}

.faq-answer {
  padding: 0 28px 24px 28px;
  color: #3f687c;
  border-top: 1px solid #eef5f8;
  background: #fdfdfd;
  display: none;
}

/* ========== CONTACT SECTION (NO FORMS/MAPS) ========== */
.contact-section {
  padding: 80px 0;
  background: #0a2e3a;
  color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.contact-info-card {
  background: white;
  color: #1e2f3a;
  padding: 48px 40px;
  border-radius: 40px;
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}

.contact-icon-head {
  font-size: 2.2rem;
  color: #0f7b6e;
  margin-bottom: 20px;
}

.contact-info-card h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.contact-details {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}

.contact-line i {
  width: 28px;
  color: #0f7b6e;
  font-size: 1.3rem;
}

.contact-line a {
  color: #0a5f55;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #cfe4e0;
  color: #1a5b55;
  font-weight: 600;
}

.btn-outline:hover {
  background: #eef7f5;
  border-color: #0f7b6e;
}

.contact-visual {
  background: rgba(255,255,255,0.05);
  border-radius: 48px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.visual-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #9ad8ce;
}

.visual-placeholder p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
  background: #051f28;
  color: #cbdbe0;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-col p {
  margin-bottom: 18px;
  color: #b0c4d0;
}

.social-icons a {
  background: #1f4e5c;
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: 0.2s;
}

.social-icons a:hover {
  background: #0f7b6e;
}

.footer-col h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a:hover {
  color: #9ad8ce;
}

.contact-list-footer li {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #2a545f;
  padding-top: 28px;
  font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
    gap: 20px;
    text-align: center;
    border-top: 1px solid #eef2f5;
  }
  .main-nav ul.show-mobile {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-phone {
    margin-left: auto;
  }
  .top-bar-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-description {
    max-width: 100%;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .container, .header-container, .top-bar-container {
    padding: 0 20px;
  }
  .hero-features {
    flex-direction: column;
    gap: 12px;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .btn {
    padding: 10px 24px;
  }
  .contact-info-card {
    padding: 32px 24px;
  }
  .faq-question {
    padding: 16px 20px;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
}