
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,62..125,100..900;1,62..125,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    font-variation-settings: 'wdth' 125, 'wght' 400;
}

h1 {
    font-size: 60px;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 26px;
}
h5 {
    font-size: 22px;
}
h6 {
    font-size: 18px;
}

a {
    color: #18A21A;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.green {
    color: #18A21A;
}

/* Header Section */
header {
    width: 100%;
    height: calc(100vh - 40px);
    position: relative;
    margin: 0 auto;
    max-width: 1920px;
    max-height: 1080px;
    background: linear-gradient(135deg, rgba(24, 162, 26, 0.75) 0%, rgba(13, 95, 15, 0.75) 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 30px;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 0;
    border-radius: 30px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 30px;
    overflow: hidden;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1); 
}


/*
.video-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
  pointer-events: none; 
}
*/

.video-background iframe {
  width: 300%;
  height: 100%;
  margin-left: -100%;
  pointer-events: none; /* Disable ALL interaction */
}
.header-inner {
    height: 120px;
}
.video-background-small {
    top: 0;
}



/* Navigation Menu */
nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-radius: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
}

.logo i {
    font-size: 30px;
}

.menu-items {
    display: flex;
    gap: 80px;
    font-size: 16px;
    list-style: none;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.5s;
}

.menu-items a:hover {
    opacity: 0.8;
}

.book-btn-nav {
    display: flex;
    justify-content: center;
    color: white;
    border: 1px solid #FFFFFF;
    padding: 20px 30px;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.5s;
    font-family: 'Poppins', sans-serif;
    background: none;
    text-align: center;
    align-items: center;
}

.book-btn-nav img {
    margin-right: 12px;
}

.book-btn-nav:hover {
    background: #18A21A;
    border-color: #18A21A;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-slogan {
    font-size: 60px;
    margin-bottom: 40px;
    max-width: 750px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #18A21A;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background: #148f16;
    transform: translateY(-2px);
}

.btn-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-bottom: 0px;
    transition: all 0.5s;
}

.btn-link:hover {
    border-bottom: 2px solid white;
    text-decoration: none;
}

.callnow-container {
    width: 100%;
    max-width: 1560px;
    position: relative;
    z-index: 6;
    display: flex;
    gap: 20px;
    flex-direction: column;  /* vertical stacking */
    justify-content: flex-end; /* vertical alignment */
    align-items: flex-end;     /* horizontal alignment to right */
    margin: 0 auto;
    bottom: 60px;
}

.callnow {
    color: white;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    flex: 0 0 auto;
    display: grid;
    display: flex;
    border-radius: 12px;
    border: 1px solid white;
    padding: 30px 50px;
    right: 0;
    bottom: 30px;
    transition: all 0.5s;
    align-items: center;
}

.callnow img {
    margin-right: 20px;
 
}

.callnow .content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.callnow .label{
  font-size: 12px;         /* smaller text */
  margin-bottom: 12px;
}

.callnow .phone{
    font-size: 30px;
    font-family: 'Archivo', sans-serif;
    font-variation-settings: 'wdth' 125, 'wght' 400;
}

.callnow:hover {
    border: 1px solid #18A21A;
    background-color: #18A21A;
}
.google-reviews-btn {
  display: inline-flex;           /* inline-flex for logo + text */
  align-items: center;            /* vertically align */
  padding: 10px 20px;
  background: linear-gradient(90deg, #fff, #f0f0f0);
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  white-space: normal;            /* allow text wrap */
  text-align: left;
  gap: 10px;                      /* space between logo and text */
}
.google-reviews-btn:hover {
  background: linear-gradient(90deg, #f0f0f0, #e0e0e0);
}
.google-logo svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
/* Hero Container */
.hero-container {
    width: 100%;
    max-width: 1560px;
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    padding: 0 20px;
    margin: 0 auto;
}

@media (max-width: 1560px) {
    .hero-container {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    .callnow-container {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    .hero-container {
        width: 100%;
        margin: 0;
    }
}

.hero-container .hero-slogan {
    text-align: left;
}

.hero-container .hero-buttons {
    justify-content: flex-start;
}

/* Main Container for Sections */
.container {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease-out;
}

.container.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1560px) {
    .container {
        width: calc(100% - 20px);
    }
}

/* Packages Section */
#packages {
    padding: 80px 0;
}

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

.section-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 60px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid #D6D6D6;
    transition: all 0.5s;
    position: relative;

}

.package-recommended {
    border: 2px solid rgba(24, 162, 26, 1);
}

.package-card:hover {
    border: 1px solid #18A21A;
    box-shadow: inset 0 0 0 3px rgba(24, 162, 26, 1); 
}

.package-card:hover .package-name {
    color: rgba(24, 162, 26, 1);
}

.package-card button {
    margin: 0 auto;
 
}

.recommended-badge {
    position: absolute;
    display: flex;
    gap: 12px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #18A21A;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    justify-content: center;
    align-items: center;

}

.package-name {
    margin-bottom: 10px;
    transition: all 0.5s;
}

.package-duration {
    font-size: 28px;
    font-weight: bold;
    color: #18A21A;
    font-family: 'Archivo', sans-serif;
}

.package-price {
    color: #666;
    margin-bottom: 30px;
}

.package-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 160px;
}

.btn-secondary {
    display: flex;
    justify-content: center;
    color: black;
    border: 1px solid #D6D6D6;
    padding: 20px 30px;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.5s;
    font-family: 'Poppins', sans-serif;
    background: none;
    text-align: center;
    align-items: center;
}

.btn-secondary svg {
    margin-right: 12px;
    fill: black;
}

.btn-secondary:hover {
    background: #18A21A;
    border-color: #18A21A;
    color: white;
}

.btn-secondary:hover svg {
    fill: #18A21A;
    
}


/* About Section */
#about {
    padding: 80px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-image: url('images/about-image.jpg');
    background-size: cover;  
    background-position: center; 
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1); 
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul {
      list-style: disc;              /* standard bullet style */
      list-style-position: outside;  /* keeps bullet outside the text box */
      margin: 10px 0 10px 20px;      /* spacing between bullets and text */
      padding: 0;
}

.about-content li {
      position: relative;
      margin-bottom: 6px;            /* spacing between list items */
      line-height: 1.6;
      padding-left: 10px;            /* slight indentation for neat text alignment */
}

.about-content li::marker {
     color: #18A21A;                /* green bullet color */
}

.why-list {
    margin-top: 60px;
    padding: 30px;
    background-color: #F8F8F8;
    border-radius: 20px;

}

.why-list h3 {
    margin-bottom: 40px;
}

.why-list ul {
    list-style: none;
    padding-left: 0;
    column-count: 2;
}

.why-list li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 35px;
    position: relative;
}

.why-list li::before {
    content: url('images/icons/check.svg');
    position: absolute;
    left: 0;
    color: #18A21A;
    font-weight: bold;
    font-size: 18px;
}

/* Advantages Section */
#advantages {
    padding: 80px 0;

}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 30px;
    background: #18A21A;
    color: white;
    border-radius: 20px;
}


.advantage-card {
    text-align: left;
    max-width: 240px;
}

.advantage-text {
    padding-top: 24px;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

/* Services Section */
#services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: #F8F8F8;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: left;
}

.service-card img {
    margin-bottom: 30px;
}

.service-card h3 {
    margin-bottom: 40px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Booking Section */
#booking {
    padding: 80px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative; 
    width: 100%;
}

.datetime {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}

.input-icon {
    position: absolute;
    left: 15px;           
    top: 50%;
    transform: translateY(-50%);
    width: 24px;          
    height: 24px;
    pointer-events: none; 
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group input, select {
  width: 100%;
  padding: 25px 15px 25px 50px; 

  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  color: #000;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* label starts in placeholder position */
.form-group label {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: #CCC;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* slide label up when input has class "filled" or is focused */
.form-group input:focus + label,
.form-group input.filled + label {
  top: 12px;
  font-size: 12px;
  color: #18A21A;
}

/* focus styles */
.form-group input:focus {
  outline: none;
  border-color: #18A21A;
  box-shadow: 0 0 5px rgba(24, 162, 26, 0.3);
}

/* icon inside input */
.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.select-group::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('images/icons/chevron-down.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.small-note {
    color: #AEAEAE;
    font-size: 12px;
    font-style: italic;
}


.booking-notes {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
}

.booking-notes h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #18A21A;
    font-family: 'Archivo', sans-serif;
}

.booking-notes ul {
  list-style: none;   
  padding-left: 0;
  margin: 0;
}

.booking-notes ul li {
  position: relative;
  padding-left: 22px; 
  line-height: 1.5;
  margin-bottom: 10px;
}

.booking-notes ul li::before {
  content: '•'; 
  position: absolute;
  left: 0;
  top: 0.2em;            
  font-size: 16px;       
  line-height: 1;
}

.success-message {
    display: none;
    background: white;
    color: black;
    border: 1px solid #D6D6D6;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

/* Footer Section */
footer {
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    margin: 0 auto;
    max-width: 1560px;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    gap: 20px;
}

.footer-logo p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.footer-callnow-container {
    width: 100%;
    max-width: 1560px;
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}

.footer-callnow-container a {
    text-decoration: none;
}

.footer-callnow {
    color: black;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    flex: 0 0 auto;
    display: grid;
    display: flex;
    border-radius: 12px;
    border: 1px solid white;
    right: 0;
    bottom: 30px;
    transition: all 0.5s;
}

.footer-callnow img {
    margin-right: 20px;
 
}

.footer-callnow .content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.footer-callnow .label{
  font-size: 12px;      
}

.footer-callnow .phone{
    font-size: 30px;
    font-family: 'Archivo', sans-serif;
    font-variation-settings: 'wdth' 125, 'wght' 400;
}

.footer-bottom {
    display: grid;
    margin: 0 auto;
    max-width: 1560px;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-top: 10px;
    font-size: 16px;
}

.footer-callnow:hover {
    color: #18A21A;
}

.footer-bottom-right {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom-right a {
    text-decoration: none;
    transition: color 0.5s;
}

.footer-bottom-right a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container,
    .booking-container,
    .footer-bottom
     {
        grid-template-columns: 1fr;
    }

    .menu-items {
        display: none;
    }
    nav .book-btn-nav {
        display: none;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo p {
        text-align: center;
    }
    .footer-callnow-container {
        justify-content: center;
    }

    nav {
        padding: 15px 30px;
    }

    .footer-bottom-right {
        justify-content: center;
    }
    .footer-bottom-left {
        text-align: center;
    }

}

@media (max-width: 768px) {
    .video-background iframe {
        width: 400%;        /* increase width to cover container */
        height: 100%;
        margin-left: -180%;  /* center it horizontally */
        pointer-events: none;
        
    }
    body {
        margin: 10px;
    }

    nav {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }

    

    .hero-slogan {
        font-size: 35px;
    }

    .packages-grid,
    .advantages-grid,
    .services-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .booking-container {
        gap: 30px;
    }

    .footer-top,
    .footer-bottom {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 20px;
    }

    .logo {
    width: 100%;
    align-items: center;        
    }

    .menu-items {
        display: none;
    }

    .hero-slogan {
        margin-bottom: 20px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons a {
        display: none;
    }
    .hero-buttons span {
        display: none;
    }

    .btn-primary {
        width: 100%;
    }

    #packages,
    #about,
    #advantages,
    #services,
    #booking,
    footer {
        padding: 40px 0;
    }


    .package-price {
        font-size: 24px;
    }
    .why-list ul {
        column-count: 1;
    }
    .callnow-container {
        margin: 0 auto;
    }
    .callnow {
        padding: 20px 30px;
        width: 100%;
        justify-content: center;
    }
    .callnow .phone {
        font-size: 20px;
    }

}