/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.booking-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
  white-space: nowrap;
}

.booking-status .dot {
  width: 8px;
  height: 8px;
  background: #4da219; /* green = available */
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(77, 162, 25, 0.15);
}


/* HEADER */
.site-header {
  background: #003f38;
  position: sticky;
  top: 0;
  z-index: 1000;
    padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* LOGO */
.logo img {
   max-height: 90px;   /* adjust if needed */
  width: auto;
  display: block;
  margin-top: 5px;
}

/* NAV */
.nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  border-top: 1px solid #eee;
}

.nav a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #eee;
}

.nav-cta {
  background: #000;
  color: #fff !important;
  text-align: center;
  font-weight: bold;
}

/* MOBILE MENU */
.menu-toggle {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: white;
}

.nav.open {
  display: block;
}



.btn {
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
}

.primary {
  background: #000;
  color: #fff;
}

.secondary {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

/* DESKTOP */
@media (min-width: 768px) {

  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    width: auto;
    border: none;
    gap: 24px;
    align-items: center;
  }

  .nav a {
    border: none;
    padding: 0;
  }

  .header-inner {
    height: 80px;
  }
  .logo img {
   max-height: 105px;
    margin-top: 10px;
  }
}
:root {
  --brand-green: #7ED957;
}

/* NAV ITEM */
.nav a,
.submenu-toggle {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.03rem;
  text-align: center;
}

/* HOVER COLOR */
.nav a:hover,
.submenu-toggle:hover {
  color: var(--brand-green);
}

/* SUBMENU WRAPPER */
.has-submenu {
  position: relative;
}

/* SUBMENU */
.submenu {
  display: none;
  background: #fff;
  border: 1px solid #eee;
  min-width: 200px;
}

/* SUBMENU LINKS */
.submenu a {
  padding: 12px 16px;
  display: block;
  color: #222;
}

.submenu a:hover {
  background: #f5f5f5;
  color: var(--brand-green);
}

/* DESKTOP: hover opens submenu */
@media (min-width: 768px) {
  .has-submenu:hover .submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }
}

/* MOBILE: submenu open class */
.submenu.open {
  display: block;
}
.btn {
    --green: #4da219;
    --silver: #ded2d2;
     --red: #ff0000;

    position: relative;
    overflow: hidden;
    background: white;
    color: var(--red);
    border: 2px solid var(--silver);
    border-radius: 6px;
    padding: 12px 26px;
    font-weight: 700;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition:
        color 0.35s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* shimmer */
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(55, 193, 13, 0.35),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 0;
}

/* border spread */
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 0;
}

/* content above effects */
.btn > * {
    position: relative;
    z-index: 1;
}

/* icon */
.call-btn .icon svg {
    width: 15px;
    height: 13px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

/* HOVER STATE */
.btn:hover {
    color: #115105;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(46, 125, 50, 0.3);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:hover::after {
    transform: scaleX(1);
}

.btn:hover .icon svg {
    transform: rotate(-10deg) scale(1.1);
}
/* Ring animation */
@keyframes phone-ring {
    0%   { transform: rotate(0deg) scale(1.1); }
    20%  { transform: rotate(-12deg) scale(1.1); }
    40%  { transform: rotate(12deg) scale(1.1); }
    60%  { transform: rotate(-10deg) scale(1.1); }
    80%  { transform: rotate(10deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1.1); }
}

/* Trigger ringing on hover */
.btn:hover .icon svg {
    animation: phone-ring 0.5s ease-in-out 2;
}
/* HERO BACKGROUND */
.hero {
   
    background-image: url("../images/headerbg.png"); /* adjust path if needed */
    background-size: cover;
      background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

/* Optional dark overlay for readability */
.hero-overlay {
    display: flex;
    padding: 90px;
    overflow: hidden;
    /* background: rgba(0, 0, 0, 0.1); */
}

/* LEFT CARD */
.hero-card {
    max-width: 520px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-card h1 {
    font-size: 36px;
    color: #1f2f5c;
    margin-bottom: 12px;
}

.hero-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 14px;
}
.hero-card h4{
  padding-bottom: 10px;
  color: #1f2f5c;
}

/* divider line */
.divider {
    display: block;
    width: 60px;
    height: 3px;
    background: #d26228;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
    }
    .nav {
      background-color: black;
    }
    .hero-overlay {
        padding: 30px;
        justify-content: center;
    }

    .hero-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-card {
        padding: 26px;
        border-radius: 12px;
    }

    .hero-card h1 {
        font-size: 28px;
    }

    .hero-card p {
        font-size: 15px;
    }
}

/* SERVICES SECTION */
.services {
    position: relative;
    padding: 30px 100px;
    z-index: 2;
}
.service-p{
  padding-bottom: 20px;
  text-align: center;
}
.service-card {
  background: #ffffff;
  border: 3px solid #1f2f5c;
  border-radius: 16px;
  padding: 15px 15px;
  text-align: center;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex: 0 0 320px;          /* 👈 wider card */
  max-width: 250px;

}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2f5c;
}

.service-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.service-card .icon {
  font-size: 24px;
  color: #00a6d6;
}
.services-center {
  display: flex;
  justify-content: center;
  width: 100%;
}
.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* centers items inside */
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}
@media (min-width: 1200px) {
  .services-wrapper {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
  .service-bullet{
    text-align: left;
    padding: 0px 10px;
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .services-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services {
    padding: 40px 20px;
  }

  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
   padding: 15px 15px;
  }
  .service-bullet{
        text-align: left;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.service-text{
  text-align: center;
  font-size: 1.6rem;
  columns: #003a00;
}
.underlay-section {
    position: relative;
    z-index: 1;
    margin-top: -100px;     /* 👈 small overlap only */
    padding-top: 100px;    /* 👈 protects content */
    padding-bottom: 80px;
    background: linear-gradient(49deg, #081f17, #35ae8b);
    color: #ffffff;
}
.underlay-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.underlay-inner h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.underlay-inner p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

@media (max-width: 768px) {
  .service-p{
  font-size: 14px;
}
    .underlay-section {
        margin-top: -80px;   /* less overlap on small screens */
        padding-top: 60px;
    }
    .underlay-inner h2{
          font-size: 24px;
    }
    .underlay-inner p{
      padding: 0px 10px;
    }
}

.info-contact {
  padding: 80px 80px;
  background: #ffffff;
}

.info-contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

/* LEFT GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.info-card {
  background: #eaeaeac2;
  padding: 34px 30px;
  border-radius: 12px;
}

.info-card h3 {
  font-size: 22px;
  color: #0c3a02;
  margin-bottom: 8px;
}

.info-card .line {
  display: block;
  width: 48px;
  height: 3px;
  background: #d26228;
  margin-bottom: 16px;
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #071803;
}

/* RIGHT FORM */
.contact-form h2 {
  font-size: 40px;
  color: #0c3a02;
  margin-bottom: 5px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1.5px solid #0a2c02;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-end;
  padding: 12px 28px;
  background: #0c3a02;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background: #23820e;
}
@media (max-width: 992px) {
  .info-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form h2 {
    font-size: 32px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .info-contact {
    padding: 40px 20px;
  }
}
.site-footer {
  background: #051804;
  color: #ffffff;
}

/* MAIN FOOTER */
.footer-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 80px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 0.8fr;
  gap: 60px;
}

.footer-col h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

/* CONTACT LIST */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  line-height: 1.5;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* SERVICES LIST */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links li {
  font-size: 16px;
}

/* ABOUT */
.footer-about p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}

/* BADGE */
.footer-badge img {
  max-width: 140px;
  height: auto;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #003f38;
  color: #ffffff;
  text-align: center;
  padding: 20px 16px;
}

.footer-bottom p {
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-main {
    padding: 60px 20px;
    grid-template-columns: 1fr;
  }

  .footer-col h3 {
    font-size: 22px;
  }
}
.why-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-left{
 text-align: left;
  padding: 3px 35px;

}
.why-left h2 {
  margin-bottom: 16px;
}

.why-left p {
  max-width: 620px;
  line-height: 1.6;
  opacity: 0.95;
}

.why-list {
  list-style: none;
  padding-top: 25px;
  margin: 0;
}

.why-list li {
  position: relative;
  margin-bottom: 18px;
  font-size: 1rem;
}

.why-list li::before {
  content: "✓";
  
  padding-left: 28px;
  position: absolute;
  left: 0;
  color: #4fd1c5; /* adjust to your accent color */
  font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
  .why-split {
    grid-template-columns: 1fr;
     padding-top: 0px;
    gap: 32px;
  }
  .why-list {
  padding-top: 0px;
  }
}
.why-right{
  padding: 10px;
}
/* Large desktop – 5 cards */
@media (min-width: 1400px) {
  .services-wrapper {
    max-width: 1400px;
  }
  .service-card {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .service-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.pricing {
  padding: 40px 20px;
  background: #f7f9f8;
}

.pricing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-title {
  text-align: center;
  font-size: 1.8rem;
  color: #1f2f5c;
  margin-bottom: 10px;
}

.pricing-sub {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.pricing-list {
  border-top: 2px solid #1f2f5c;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.service-name {
  font-size: 16px;
  color: #222;
}

.service-price {
  font-size: 16px;
  font-weight: 600;
  color: #0c3a02;
}

.pricing-note {
  margin-top: 28px;
  font-size: 15px;
  color: #333;
  text-align: center;
}
@media (max-width: 576px) {
  .pricing {
    padding: 30px 16px;
  }
  .pricing-list{
    padding: 0 20px;
  }

  .pricing-title {
    font-size: 1.5rem;
  }

  .pricing-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .pricing-row {
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0;
  }

  .service-name {
    font-size: 15px;
  }

  .service-price {
    font-size: 15px;
    font-weight: 600;
  }

  .pricing-note {
    font-size: 14px;
    margin-top: 22px;
  }
}
.contact-direct {
  display: flex;
  justify-content: left;
  gap: 28px;
  margin: 5px 0 20px;
  flex-wrap: wrap;
  background: aliceblue;
}
.email{
  text-decoration: none;
  color: white;
  font-weight: 600;
  }
  .contact-item2 .icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-item2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #ead23b;
  font-weight: 500;
  text-decoration: none;
}

.contact-item2:hover {
  text-decoration: underline;
}

.contact-item .icon {
  font-size: 18px;
}

  .contact-item .icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #121421;
  font-weight: 500;
  text-decoration: none;
}

.contact-item:hover {
  text-decoration: underline;
}

.contact-item .icon {
  font-size: 18px;
}








