/*---Base & Reset---*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html, body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  width: 100%;
  background: #f8f9fa;
  color: #222;
}

/*---Colors---*/
:root {
    --color-1: #39614a; /* Green */
    --color-2: #2ecc71; /* Lighter Green */
    --color-3: #ebe46c; /* Yellow */
    --color-4: #f8f9fa; /*Off white */
    --color-5: #ece9a9; /* Light Background */
    --color-6: rgb(0, 89, 255); /* blue */
}

/*---Scroll to top Button---*/

#scrollTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-1);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(44,204,113,0.13);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    transition: background 0.2s, transform 0.2s;
    opacity: 0.92;
    animation: beacon-glow 1.2s infinite alternate;
    display: none; /* Hide by default */
}


#scrollTopBtn:hover {
    background: var(--color-2);
    transform: translateY(-4px) scale(1.08);
    opacity: 1;
    animation: beacon-glow 0.6s infinite alternate;
}

/*---Button Glow Effect---*/

@keyframes beacon-glow {
    0% {
        box-shadow: 0 0 12px 4px var(--color-1), 0 2px 12px rgba(44,204,113,0.13);
    }
    100% {
        box-shadow: 0 0 32px 12px var(--color-2), 0 2px 12px rgba(44,204,113,0.13);
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Navigation*/
/* NAVIGATION (DESKTOP) */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 6px 24px -4px rgba(44, 204, 113, 0.18), 0 2px 12px rgba(0, 0, 0, 0.10);
  padding: 16px 40px;
  height: 140px;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 120px;
  width: auto;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-1);
}

.nav-company {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-1);
}

.nav-links-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: orange;
}

.nav a.book-now {
  background: var(--color-1);
  color: #fff;
  padding: 10px 22px;
  border: 2px solid var(--color-1);
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.1);
  transition: background 0.2s;
}

.nav a.book-now:hover {
  background: var(--color-3);
  color: #000;
  border: 2px solid #000;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  height: 4px;
  width: 28px;
  background: #222;
  border-radius: 2px;
}

/* CLOSE BUTTON */
.nav-close {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 974px) {
  .nav {
    height: 75px;
    padding: 0 16px;
  }

  .nav-logo {
    height: 60px;
  }

  .nav-company {
    font-size: 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links-group {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75vw;
    max-width: 320px;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.1);
    padding: 60px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1200;
  }

  .nav-links-group.open {
    transform: translateX(0);
  }

  .nav-links-group a {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    text-align: left;
  }

  .nav a.book-now {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 12px 0;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #222;
    cursor: pointer;
  }

  .nav.open .nav-hamburger {
    display: none !important;
  }
}

.price-intro-hero {
    position: relative;
    margin: 40px 0 48px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.price-intro-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #e6d36a 0%, #fffbe6 100%);
    opacity: 0.25;
    filter: blur(8px);
    z-index: 1;
    border-radius: 32px;
}

.price-intro-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(44,204,113,0.09);
    padding: 38px 48px 32px 48px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-intro-icons {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-bottom: 18px;
}

.price-intro-icons i {
    font-size: 2.2rem;
    color: #27ae60;
    background: #f8f9fa;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(44,204,113,0.10);
}

.price-intro-content h3 {
    font-size: 1.5rem;
    color: #18462b;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.price-intro-content blockquote {
    font-size: 1.13rem;
    color: #444;
    font-style: italic;
    margin: 0 0 18px 0;
    line-height: 1.7;
    position: relative;
    padding: 0 18px;
}

.price-intro-content .quote-mark {
    color: #e6d36a;
    font-size: 2.2rem;
    vertical-align: middle;
    font-family: serif;
    font-weight: bold;
}

.price-intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-intro-list li {
    font-size: 1.05rem;
    color: #18462b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-intro-list i {
    color: #27ae60;
    font-size: 1.1em;
}

.price-list {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.price-list h1 {
    font-size: 1.2rem;
    color: rgb(21, 59, 21);
    margin-bottom: 0;
}

.price-list h2 {
    font-size: 2.2rem;
    margin-top: 0;
}

.price-list p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-top: 18px;
    margin-bottom: 0;
    background: #f8f9fa;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(44,204,113,0.06);
    letter-spacing: 0.01em;
}

.price-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px; /* space between the cards */
    margin-top: 32px;
    flex-wrap: wrap;
}

.price-card {
    width: 350px;
    min-height: 480px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background-color: #fff;
    padding: 28px 24px 24px 24px;
    box-shadow: 0 4px 24px rgba(44,204,113,0.13);
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid grey;
}

@media (max-width: 974px) {
  .price-card {
    width: 90%;
    min-height: auto;
    padding: 20px 16px;
    gap: 12px;
  }
}


.price-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44,204,113,0.18);
    border: 2px solid #18462b;
    z-index: 2;
}

.price-card .icon-circle {
    width: 70px;
    height: 70px;
    background: #18462b;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(44,204,113,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: transform 0.2s;
}

.price-card:hover .icon-circle {
    transform: translateY(-8px);
}

.price-card .icon-circle img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.price-card .title {
    font-size: 1.3rem;
    color: #18462b;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
}

.price-card .price {
    font-size: 2rem;
    color: #27ae60;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.price-card .per {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.price-card .desc {
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.5;
}

.price-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.price-card .features li {
    font-size: 1.05rem;
    color: #18462b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.price-card .features i {
    color: #27ae60;
    margin-right: 8px;
    font-size: 1.1em;
}

.price-btn {
    background-color: rgb(216, 216, 135);
    text-decoration: none;
    color: #000;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.price-card:hover .price-btn,
.price-btn:hover {
    background-color: #18462b;
    color: #fff;
}

/* ===========================
   Footer
   =========================== */
footer{
    color:azure;
    font-family: Arial, Helvetica, sans-serif;
}

.foot {
    margin-top: 0;
    width: 100%;
    padding: 0 5%; /* Less padding for more width */
    background: rgb(18, 39, 18);
    color: #efefef;
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding-bottom: 0;
    padding-top: 0;
    justify-content: center;
}

.col-1 {
    background-color: var(--color-3);
    flex: 1 1 0;
    min-width: 350px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
    padding: 50px 30px;
    gap: 18px;
}

.col-1 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
    letter-spacing: 1px;
}


.col-1 .contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.col-1 .contact-row i {
    font-size: 1.8rem;
    color: #000;
    border-radius: 50%;
    padding: 1px;
    box-shadow: 0 2px 8px rgba(44,204,113,0.10);
    margin-right: 6px;
}

.col-1 .contact-row span,
.col-1 .contact-row a {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.col-1 .contact-row a:hover {
    color: var(--color-2);
    text-decoration: underline;
}

  footer i{
    font-size: 2.5rem;
  }

  .foot div h3 {
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  .col-1 a {
    display: block;
    text-decoration: none;
    color: #000;
    margin-bottom: 10px;
  }
  
.col-2, .col-3 {
    flex: 1 1 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 18px;
    gap: 10px;
}

.col-2 h3, .col-3 h3 {
    font-size: 1.50rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.col-2 .links span,
.col-3 .links span {
    font-size: 0.98rem;
    color: var(--color-3);
    font-weight: 400;
}
.col-2 .links a,
.col-3 .links a {
    font-size: 0.98rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 7px;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
    padding-left: 0;
    padding-bottom: 10px;
}

.col-2 .links a:hover,
.col-3 .links a:hover {
    color: var(--color-3);
    cursor: pointer;
}

.col-4 {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 18px;
    gap: 18px;
}

.col-4 h3 {
    font-size: 1.50rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-align: center;
}

/* Newsletter input group */
.col-4 .newsletter-group {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 260px;
    position: relative;
    margin-bottom: 18px;
}

.col-4 input[type="email"] {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: none;
    padding: 0 56px 0 18px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #222;
    box-shadow: 0 2px 8px rgba(44,204,113,0.07);
}

.col-4 button[type="submit"] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(44,204,113,0.10);
}

.col-4 button[type="submit"] i {
    font-size: 1.1rem; /* Set the icon size here */
}

.col-4 button[type="submit"]:hover {
    background: var(--color-2);
    color: #fff;
}

/* Social icons */
.col-4 .socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    justify-content: center;
}

.col-4 .socials i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid #fff;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}

.col-4 .socials i:hover {
    border: 1px solid var(--color-3);
    color: var(--color-3);
    transform: translateY(-5px);
}


  .dev {
    background-color: rgb(23, 49, 23);
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
    margin-top: 0;
  }

  .dev a {
    color: #fff;
    text-decoration: none;
    font-weight: bolder;
  }

  .dev a:hover {
    color: var(--color-3);
  }

  @media (max-width: 974px) {
  .foot {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 0 2vw;
  }
  .col-1, .col-2, .col-3, .col-4 {
    min-width: 0;
    width: 100%;
    padding: 24px 10px;
    align-items: flex-start;
  }
  .col-4 {
    align-items: center;
  }
  .col-1 h3, .col-2 h3, .col-3 h3, .col-4 h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  .col-1, .col-2, .col-3, .col-4 {
    font-size: 0.98rem;
  }
  .newsletter-group {
    width: 100%;
    max-width: 100%;
  }
  .col-4 input[type="email"] {
    font-size: 0.98rem;
    padding: 0 44px 0 10px;
    height: 36px;
  }
  .col-4 button[type="submit"] {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    right: 3px;
  }
  .col-4 .socials {
    gap: 10px;
    margin-top: 8px;
    justify-content: flex-start;
  }
  .col-4 .socials i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .dev {
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
  }
}