* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #32CD32;
    --primary-dark: #28a428;
    --primary-light: #5ef75e;
    --text-dark: #2c3e50;
    --text-goldenbrown: #DAA520;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --black: #000000;
}

body {
    /* font-family: 'Merriweather'; */
    font-family: 'Trebuchet MS' !important;
    line-height: 1.5;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 15px 0;
    border-bottom: 2px solid #32CD32;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}
.logo a {
    text-decoration: none;
    color: var(--primary-color); 
}


/* Nav menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    text-transform: uppercase;
}

/* menu items and icon set up */
.nav-menu li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-weight: 500;
    color: #000000; /* default black */
    transition: color 0.3s ease;
    position: relative;
}

/* underline base */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: transparent;
    opacity: 0;
    transition:
        width 0.3s ease,
        background-color 0.3s ease,
        opacity 0.3s ease;
}

/* nav icons */
.nav-menu a i {
    font-size: 20px;
    color: #DAA520; /* golden brown */
    transition: color 0.3s ease;
}

/* hover effect */
.nav-menu a:hover {
    color: #32CD32; /* lime green text */
}

.nav-menu a:hover i {
    color: #32CD32; /* lime green icon */
}

.nav-menu a:hover::after {
    width: 100%;
    background-color: #32CD32;
    opacity: 1; /* smooth fade in */
}

/* active state i.e Home */
.nav-menu a.active {
    color: #DAA520; /* golden brown text */
}

.nav-menu a.active i {
    color: #DAA520; /* golden brown icon */
}

.nav-menu a.active::after {
    width: 100%;
    background-color: #DAA520; /* golden brown underline */
    opacity: 1;
}

/* Active item on hover turns lime green  */
.nav-menu a.active:hover {
    color: #32CD32; /* lime green text on hover */
}

.nav-menu a.active:hover i {
    color: #32CD32; /* lime green icon on hover */
}

.nav-menu a.active:hover::after {
    background-color: #32CD32;
    opacity: 1;
}

/* reduces gap slightly between nav items */
.nav-menu {
    gap: 35px;
}

/* Toggle button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-menu li {
        flex-direction: row;
        gap: 10px;
    }

    .nav-menu a {
        flex-direction: row;
        justify-content: flex-start;
    }

    .nav-menu a i {
        font-size: 18px;
        margin-right: 10px;
    }
}

/* hero section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--nav-height, 0px);
}

/* background video */
.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;     
    z-index: 0;            
    filter: brightness(60%); 
}
/* hero content */
.hero-content {
    position: relative;
    z-index: 2;             /* Above the video */
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
}

/* icons */
.icon-left, .icon-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.icon-left { left: 20px; }
.icon-right { right: 20px; }

/* fade in animation */
.fade-in {
    animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Keeps content above backgrounds */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

/* ================= Buttons ================= */
.btn {
    display: inline-block;
    padding: clamp(12px, 1.5vw, 15px) clamp(30px, 3vw, 40px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================= Icons ================= */
.icon-left,
.icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1; /* above background overlay, below hero text */
  animation: spin 10s linear infinite; /* smooth, endless rotation */
  opacity: 0.9;
}

.icon-left {
  left: clamp(10px, 5vw, 70px);
}

.icon-right {
  right: clamp(10px, 5vw, 70px);
  animation-direction: reverse; /* counterclockwise for balance */
}

/* Icon appearance and effects */
.icon-left img,
.icon-right img,
.icon-left i,
.icon-right i {
  width: clamp(53px, 5vw, 88px);
  height: clamp(53px, 5vw, 88px);
  object-fit: contain;
  transition: transform 0.3s ease;
  backface-visibility: visible;
  filter: brightness(0) saturate(100%) invert(46%) sepia(87%) 
          saturate(579%) hue-rotate(75deg) brightness(95%) contrast(95%)
          drop-shadow(0 0 8px rgba(0,0,0,0.3)); /* makes it visible on any background */
}
.icon-left:hover img,
.icon-right:hover img,
.icon-left:hover i,
.icon-right:hover i {
  transform: scale(1.1);
}
@keyframes spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .hero {
        position: relative;
        width: 100%;
        height: 60vh; 
        min-height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: #ffffff;
        padding-top: var(--nav-height, 0px);
    }

    .icon-left { left: 5vw; }
    .icon-right { right: 5vw; }

    .icon-left img,
    .icon-right img,
    .icon-left i,
    .icon-right i {
        width: 30px;
        height: 30px;
    }

    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.95rem; }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .icon-left {
        left: 5%;      
        top: 60%;      
    }

    .icon-right {
        right: 5%;     
        top: 60%;      
    }
}

@media (max-width: 480px) {
    .icon-left {
        left: 8%;     
        top: 65%;      
    }

    .icon-right {
        right: 8%;     
        top: 65%;
    }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Continuous spin for both icons */
.hero .icon-left img,
.hero .icon-right img {
  animation: spin 3s linear infinite;
  transform-origin: center;
  transition: animation-duration 0.3s ease, transform 0.3s ease;
}
.hero .icon-right img {
  animation-direction: reverse;
}
.hero .icon-left img:hover,
.hero .icon-right img:hover {
  animation-duration: 20s;
  transform: scale(1.1);   
}
.intro-section {
  display: flex;
  flex-direction: row-reverse; 
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  background: #222; 
}

.intro-heading {
  font-weight: 700;
  color: var(--white) !important;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 24px;
}

.intro-heading::after {
  content: "";
  display: block;          
  width: 80px;              
  height: 4px;
  background: var(--lime-green);     
  border-radius: 2px;   
}

.intro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
}

.intro-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--white);
}

.video-content {
  flex: 1;
  padding-left: 1.5rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; 
  max-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.fade-in-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   Responsive styling
   ================================ */
@media (max-width: 992px) {
  .intro-section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .intro-section {
    flex-direction: column;
    text-align: center;
  }

  .intro-heading {
    font-weight: 700;
    color: var(--white) !important;
    display: inline-block;   
    margin-bottom: 16px;     
    font-size: 32px;
    text-align: center;      
}

  .intro-heading::after {
    content: "";
    display: block;
    width: 50%;               
    max-width: 120px;         
    height: 4px;
    margin: 8px auto 0;      
    background: var(--lime-green);
    border-radius: 2px;
    }


  .intro-content {
    padding-right: 0;
    justify-content: flex-start;
  }

  .video-content {
    padding-left: 1rem;
    width: 100%;
  }

  .intro-content h2 {
    font-size: 1.5rem;
  }

  .intro-content p {
    font-size: 0.95rem;
  }
}

.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 50px;
  color: var(--white) !important;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--lime-green);
  margin: 15px auto 0;
  border-radius: 2px;
}


.services-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
}
:root {
  --lime-green: #b4d334;
  --text-dark: #222;
  --text-light: #555;
}

/* testimonial section */
.testimonials {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #f9fdf4;
}

.section-title-testimonials {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 50px;
  color: var(--black) !important;
  position: relative;
}

.section-title-testimonials::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--lime-green);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* --- Slider Layout --- */
.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 33.3333%; /* 3 per slide */
  box-sizing: border-box;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--lime-green);
  margin: 0 10px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--lime-green);
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-author span {
  display: block;
  font-size: 0.9rem;
  color: #777;
}

/* --- Navigation Buttons --- */
.testimonial-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 30px;
  pointer-events: none;
}

.testimonial-controls button {
  pointer-events: all;
  background: var(--lime-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-controls button:hover {
  background: #a4cc1b;
  transform: scale(1.1);
}

/* --- Dots or Indicators --- */
.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--lime-green);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots button.active {
  background: var(--lime-green);
  transform: scale(1.2);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 50%; /* 2 per slide */
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%; /* 1 per slide */
  }
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 15px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 9999;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    z-index: 1 !important;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}
.footer-bottom .credits{
    color: #32CD32;
    font-weight: bolder;
}
.about-content {
    background-image: url('../images/background.JPG');
    background-size: cover;       
    background-position: center;   
    background-repeat: no-repeat;  
    padding: 80px 0;              
    position: relative;
    min-height: 300px;
    z-index: 1;
}
.about-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-intro h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.about-intro p {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 30px var(--shadow);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-hover);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
}

.about-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.owner-profile {
    padding: 100px 0;
    background: var(--bg-light);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.profile-text h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.profile-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.profile-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(50, 205, 50, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px var(--shadow);
}

.image-placeholder svg {
    width: 100px;
    height: 100px;
    stroke: var(--primary-color);
}
/* why choose us section */
.why-choose {
  padding: 100px 0;
  text-align: center;
  background: #fff;
}

.section-title-choice {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 60px;
}
.features-grid {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    gap: 60px;                     
    flex-wrap: wrap;               
    padding: 20px 0;
}

.feature-item {
    display: flex;
    flex-direction: column;       
    flex: 1 1 calc(25% - 60px);  
    max-width: 280px;             
    text-align: left;
    margin-bottom: 20px;          
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tick {
    color: #4CAF50;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    color: #444;
    line-height: 1.5;
}
@media (max-width: 991px) {
    .feature-item {
        flex: 1 1 calc(50% - 30px); 
        max-width: none;
    }
}

@media (max-width: 599px) {
    .feature-item {
        flex: 1 1 100%; 
    }
}
.services-detailed {
  padding: 80px 0;
}
.services-detailed .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.service-detail {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.service-detail:hover {
  transform: translateY(-5px);
}
/* Icon box */
.service-detail-icon {
  width: 100px;
  height: 100px;
  background: rgba(50, 205, 50, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-detail-icon:hover {
  background: var(--primary-color);
}

.service-detail-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--primary-color);
}
.service-detail-icon svg:hover{
    stroke: var(--white);
}
/* Content styles */
.service-detail-content h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-intro {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.5;
}
.service-features {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0;
}
.service-features li {
  position: relative;
  font-size: 15px;
  color: #DAA520;        
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 30px;    
  text-align: left;
}
.service-features li::before {
  content: "→";          
  color: #32CD32;         
  font-weight: 900;      
  font-size: 1.3rem;     
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .service-detail {
    flex: 1 1 100%;
    max-width: none;
  }
}
.inquiry-section {
    padding: 100px 0;
    background: var(--bg-light);
}
.inquiry-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}
.inquiry-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.inquiry-card > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.inquiry-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper h2 {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(50, 205, 50, 0.1);
    color: var(--primary-dark);
    border: 1px solid var(--primary-color);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.map-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.map-container {
    margin-top: 40px;
}
.section-title-visit {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 50px;
  font-size: 20px;
  color: var(--black) !important;
  position: relative;
}
.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 30px var(--shadow);
}

.map-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-color);
    margin-bottom: 15px;
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 15px;
}
.map-placeholder iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 0 20px var(--shadow);
        transition: right 0.3s ease;
        gap: 20px;
        height: calc(100vh - 70px);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-card {
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .page-hero h1 {
        font-size: 20px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .intro-content h2,
    .about-intro h2,
    .cta-content h2 {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* thank-you section */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 100px;
    box-sizing: border-box;
    animation: fadeIn 0.8s ease-out;
}

/* main card */
.thank-you .card {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    padding: 70px 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(50, 180, 180, 0.25);
    border: 2px solid #32b432;

    /* Card entrance animation */
    animation: slideUp 0.7s ease-out;
}

/* Responsive text scaling */
.thank-you h1,
.thank-you h2,
.thank-you p {
    margin: 0 0 20px;
    line-height: 1.4;
}

/* Fluid text sizes */
.thank-you h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.thank-you h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.thank-you p {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
}

/* checkmark circle */
.checkmark {
    width: 100px;
    height: 100px;
    background: #32b432;
    color: white;
    font-size: 56px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    box-shadow: 0 10px 30px rgba(50, 180, 50, 0.4);

    /* bounce animation */
    animation: popBounce 1s ease-out;
}

/* --------------------------------
   MOBILE RESPONSIVE ADJUSTMENTS
--------------------------------- */

/* tablets + large phones */
@media (max-width: 768px) {
    .thank-you .card {
        padding: 55px 40px;
        max-width: 480px;
    }

    .checkmark {
        width: 90px;
        height: 90px;
        font-size: 50px;
        margin-bottom: 30px;
    }
}

/* standard mobile phones */
@media (max-width: 480px) {
    .thank-you-container {
        padding: 100px 15px 80px;
    }

    .thank-you .card {
        padding: 45px 28px;
        border-radius: 18px;
    }

    .checkmark {
        width: 80px;
        height: 80px;
        font-size: 44px;
        margin-bottom: 25px;
    }
}

/* extra small phones */
@media (max-width: 360px) {
    .thank-you .card {
        padding: 35px 22px;
    }

    .checkmark {
        width: 70px;
        height: 70px;
        font-size: 38px;
    }
}

/* short-height screens */
@media (max-height: 600px) {
    .thank-you-container {
        padding: 70px 20px 60px;
    }
}

/* --------------------------------
     ANIMATIONS
--------------------------------- */

@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes popBounce {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    60% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}
