* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  color: #111827;
  background: #ffffff;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* ABOUT SECTION */

.about-section {
  padding: 100px 20px;

  background: linear-gradient(
    to bottom,
    #14532d,
    #f9fafb 260px
  );
}

.about-container {
  max-width: 1250px;

  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 70px;

  align-items: center;
}

/* IMAGES GRID */

.about-images-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.about-images-grid img {
  width: 100%;
  height: 240px;

  object-fit: cover;

  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  transition: 0.3s ease;
}

.about-images-grid img:hover {
  transform: scale(1.03);
}

/* CONTENT */

.about-content {
  background: white;

  padding: 45px;

  border-radius: 28px;

  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.about-subtitle {
  color: #15803d;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 14px;
}

.about-title {
  font-size: 48px;

  font-weight: 800;

  line-height: 1.2;

  color: #111827;

  margin-bottom: 24px;
}

.about-description {
  font-size: 18px;

  line-height: 1.9;

  color: #6b7280;

  margin-bottom: 40px;
}

/* FEATURES */

.about-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-bottom: 40px;
}

.feature-card {
  background: #f3f4f6;

  padding: 18px 20px;

  border-radius: 18px;

  font-weight: 600;

  color: #111827;
}

/* BUTTON */

.about-btn {
  display: inline-block;

  background: #15803d;

  color: white;

  text-decoration: none;

  padding: 16px 30px;

  border-radius: 16px;

  font-weight: 700;

  transition: 0.3s ease;
}

.about-btn:hover {
  background: #166534;

  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 38px;
  }

}

@media (max-width: 768px) {

  .about-section {
    padding: 70px 16px;
  }

  .about-images-grid {
    grid-template-columns: 1fr;
  }

  .about-images-grid img {
    height: 260px;
  }

  .about-content {
    padding: 32px 24px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-btn {
    width: 100%;

    text-align: center;
  }

}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 100px 20px;
  background: #f9fafb;
}

.contact-container {
  max-width: 1300px;
  margin: auto;
}

/* HEADING */

.contact-heading {
  text-align: center;
  margin-bottom: 70px;
}

.contact-subtitle {
  color: #15803d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}

.contact-description {
  max-width: 750px;
  margin: auto;
  color: #6b7280;
  line-height: 1.8;
  font-size: 18px;
}

/* MAIN GRID */

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE */

.contact-info-wrapper {
  display: grid;
  gap: 24px;
}

/* CARD */

.contact-card {
  background: white;
  padding: 28px;
  border-radius: 22px;

  display: flex;
  gap: 18px;
  align-items: flex-start;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.contact-icon {
  font-size: 32px;
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #111827;
}

.contact-card p {
  color: #6b7280;
  line-height: 1.7;
}

/* FORM */

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 24px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;

  border: 1px solid #d1d5db;
  border-radius: 14px;

  font-size: 16px;
  outline: none;

  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #15803d;
}

.contact-form button {
  background: #15803d;
  color: white;

  border: none;

  padding: 16px;

  border-radius: 14px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #166534;
}

/* MAP */

.map-wrapper {
  margin-top: 70px;

  overflow: hidden;
  border-radius: 24px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 38px;
  }

}

@media (max-width: 768px) {

  .contact-section {
    padding: 70px 16px;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-description {
    font-size: 16px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

}

/* QUOTE SECTION */

.quote-section {
  padding: 80px 20px;
  background: #ffffff;
}

.quote-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* LEFT CONTENT */

.quote-subtitle {
  color: #15803d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-title {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0 25px;
  color: #111827;
  line-height: 1.2;
}

.quote-description {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* POLICY */

.policy-box{
  background: #fef3c7;
  border-left: 6px solid #d97706;

  padding: 24px;
  border-radius: 18px;

  margin-bottom: 40px;
}

.policy-box strong{
  display: block;
  font-size: 22px;
  margin-bottom: 10px;

  color: #92400e;
}

.policy-box p{
  color: #78350f;
  font-size: 18px;
  line-height: 1.7;
}

/* FORM */

.quote-form {
  background: #f9fafb;

  padding: 35px;
  border-radius: 28px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* GRID */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* INPUTS */

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;

  padding: 15px 18px;

  border: 1px solid #d1d5db;
  border-radius: 16px;

  font-size: 16px;

  outline: none;

  transition: 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #15803d;
}

/* BUTTON */

.quote-form button {
  width: 100%;

  background: #15803d;
  color: white;

  padding: 16px;

  border: none;
  border-radius: 18px;

  font-size: 18px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.quote-form button:hover {
  background: #166534;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .quote-container {
    grid-template-columns: 1fr;
  }

  .quote-title {
    font-size: 38px;
  }

}

@media (max-width: 768px) {

  .quote-section {
    padding: 60px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 25px;
  }

  .quote-title {
    font-size: 32px;
  }

}


/* =========================
   NAVBAR
========================= */

.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255,255,255,0.97);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid #e5e7eb;
}

.navbar-container{
  max-width: 1280px;

  margin: auto;

  padding: 2px 4px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* LOGO */

.logo-wrapper{
  display: flex;

  align-items: center;

  gap: 2px;
}

.logo{
  width: 100px;

  height: 100px;

  object-fit: contain;

  
  margin-right: -12px;
}

.logo-title{
  font-size: 24px;

  font-weight: 800;

  color: #15803d;

  line-height: 1.1;

  margin: 0;
}

.logo-subtitle{
  font-size: 14px;

  color: #6b7280;

  margin-top: 2px;
}

/* DESKTOP NAV */

.desktop-nav{
  display: flex;

  align-items: center;

  gap: 38px;
}

.desktop-nav a{
  text-decoration: none;

  color: #111827;

  font-size: 17px;

  font-weight: 500;

  transition: 0.3s ease;
}

.desktop-nav a:hover{
  color: #15803d;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
  display: inline-flex;

  align-items: center;
  justify-content: center;

  background: #15803d;

  color: white;

  padding: 14px 24px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;

  white-space: nowrap;
}

.whatsapp-btn:hover{
  background: #166534;

  transform: translateY(-2px);
}

/* MENU BUTTON */

.menu-btn{
  display: none;

  background: none;
  border: none;

  font-size: 34px;

  cursor: pointer;

  color: #111827;
}

/* MOBILE MENU */

.mobile-menu{
  display: none;

  background: white;

  padding: 20px;

  border-top: 1px solid #e5e7eb;
}

.mobile-menu.show{
  display: block;
}

.mobile-menu nav{
  display: flex;
  flex-direction: column;

  gap: 18px;
}

.mobile-menu a{
  text-decoration: none;

  color: #111827;

  font-size: 17px;

  font-weight: 500;
}

/* MOBILE WHATSAPP */

.mobile-whatsapp{
  background: #15803d;

  color: white !important;

  padding: 14px;

  border-radius: 12px;

  text-align: center;

  margin-top: 10px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px){

  .navbar-container{
    padding: 14px 18px;
  }

  .desktop-nav{
    gap: 20px;
  }

  .logo{
    width: 60px;
    height: 60px;
  }

  .logo-title{
    font-size: 28px;
  }

  .whatsapp-btn{
    padding: 12px 18px;

    font-size: 15px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px){

  .desktop-nav{
    display: none;
  }

  .whatsapp-btn{
    display: none;
  }

  .menu-btn{
    display: block;
  }

  .navbar-container{
    padding: 12px 16px;

    gap: 10px;
  }

  .logo-wrapper{
    flex: 1;

    min-width: 0;
  }

  .logo{
    width: 46px;
    height: 46px;
  }

  .logo-title{
    font-size: 20px;
  }

  .logo-subtitle{
    font-size: 11px;
  }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px){

  .logo-title{
    font-size: 17px;
  }

  .logo-subtitle{
    font-size: 10px;
  }

  .menu-btn{
    font-size: 30px;
  }

}

  

/* FOOTER */

.footer {
  background: #030712;
  color: #d1d5db;

  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;

  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* COLUMN */

.footer-column {
  display: flex;
  flex-direction: column;
}

/* LOGO */

.footer-logo {
  color: white;

  font-size: 32px;
  font-weight: 700;

  margin-bottom: 20px;
}

/* DESCRIPTION */

.footer-description {
  color: #9ca3af;

  line-height: 1.8;
}

/* TITLES */

.footer-title {
  color: white;

  font-size: 24px;
  font-weight: 600;

  margin-bottom: 20px;
}

/* LINKS */

.footer-links {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #d1d5db;

  text-decoration: none;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #4ade80;
}

/* CONTACT */

.footer-contact {
  margin-bottom: 12px;
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid #1f2937;

  margin-top: 50px;
  padding: 20px;

  text-align: center;

  font-size: 14px;
  color: #6b7280;
}

.footer-copy {
  color: #9ca3af;

  font-size: 15px;

  margin-bottom: 8px;
}

.footer-credit {
  color: #6b7280;

  font-size: 14px;
}

.footer-link {
  color: #22c55e;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;
}

.footer-link:hover {
  color: #4ade80;
}



/* RESPONSIVE */

@media (max-width: 992px) {

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-title {
    font-size: 22px;
  }

}

/* HERO VIDEO SECTION */

.hero-video-section{
  position: relative;

  height: 100vh;
  min-height: 720px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO */

.hero-bg-video{
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 1;
}

/* DARK OVERLAY */

.hero-overlay{
  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to right,
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.45)
  );

  z-index: 2;
}

/* CONTENT */

.hero-video-content{
  position: relative;

  z-index: 3;

  max-width: 1250px;
  width: 100%;

  padding: 0 20px;

  color: white;
}

/* SUBTITLE */

.hero-video-subtitle{
  color: #4ade80;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 20px;
}

/* TITLE */

.hero-video-title{
  max-width: 780px;

  font-size: 78px;
  font-weight: 800;

  line-height: 1.05;

  margin-bottom: 28px;
}

/* DESCRIPTION */

.hero-video-description{
  max-width: 700px;

  font-size: 20px;

  line-height: 1.9;

  color: rgba(255,255,255,0.88);

  margin-bottom: 45px;
}

/* BUTTONS */

.hero-video-buttons{
  display: flex;
  gap: 18px;
}

/* BUTTON */

.hero-video-btn-primary,
.hero-video-btn-secondary{
  padding: 18px 34px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: 700;

  transition: 0.3s ease;
}

/* PRIMARY */

.hero-video-btn-primary{
  background: #16a34a;
  color: white;
}

.hero-video-btn-primary:hover{
  background: #15803d;

  transform: translateY(-3px);
}

/* SECONDARY */

.hero-video-btn-secondary{
  border: 1px solid rgba(255,255,255,0.4);

  color: white;

  backdrop-filter: blur(6px);

  background: rgba(255,255,255,0.08);
}

.hero-video-btn-secondary:hover{
  background: rgba(255,255,255,0.18);

  transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 992px){

  .hero-video-title{
    font-size: 58px;
  }

}

@media (max-width: 768px){

  .hero-video-section{
    min-height: 650px;
  }

  .hero-video-title{
    font-size: 42px;
  }

  .hero-video-description{
    font-size: 17px;
  }

  .hero-video-buttons{
    flex-direction: column;
  }

  .hero-video-btn-primary,
  .hero-video-btn-secondary{
    width: 100%;
    text-align: center;
  }

}

/* RECENT WORK */

.recent-work-section{
  padding: 100px 20px;
  background: #ffffff;
}

.recent-work-container{
  max-width: 1250px;
  margin: auto;
}

.recent-work-heading{
  text-align: center;
  margin-bottom: 60px;
}

.recent-work-subtitle{
  color: #15803d;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.recent-work-title{
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
}

.recent-work-description{
  max-width: 750px;
  margin: auto;
  color: #6b7280;
  line-height: 1.8;
  font-size: 18px;
}

.recent-work-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.recent-work-card{
  overflow: hidden;
  border-radius: 24px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.08);
}

.recent-work-card video{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */

@media(max-width:992px){

  .recent-work-grid{
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .recent-work-grid{
    grid-template-columns:1fr;
  }

  .recent-work-title{
    font-size:36px;
  }

}

/* =========================
   REVIEWS SECTION
========================= */

.reviews-section{
  padding: 100px 20px;
  background: #f9fafb;
}

.reviews-heading{
  text-align: center;
  margin-bottom: 60px;
}

.reviews-subtitle{
  color: #15803d;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.reviews-title{
  font-size: 64px;
  font-weight: 800;

  line-height: 1.1;

  margin-bottom: 18px;

  color: #111827;
}

.reviews-description{
  max-width: 700px;
  margin: auto;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
}

/* GRID */

.reviews-grid{
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  align-items: stretch;
}

/* IMAGE CARD */

.review-image-card{
  background: white;

  border-radius: 22px;

  overflow: hidden;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.08);

  transition: 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 250px;
}

.review-image-card:hover{
  transform: translateY(-5px);

  box-shadow:
  0 18px 40px rgba(0,0,0,0.14);
}

/* IMAGE */

.review-image-card img{
  width: 92%;

  height: auto;

  display: block;

  border-radius: 18px;
}

/* BUTTON */

.reviews-btn-wrapper{
  text-align: center;
  margin-top: 50px;
}

.reviews-btn{
  display: inline-block;

  background: #15803d;
  color: white;

  padding: 18px 34px;

  border-radius: 18px;

  text-decoration: none;

  font-size: 18px;
  font-weight: 600;

  transition: 0.3s ease;
}

.reviews-btn:hover{
  background: #166534;
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 992px){

  .reviews-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-title{
    font-size: 40px;
  }

}

@media (max-width: 768px){

  .reviews-section{
    padding: 70px 16px;
  }

  .reviews-grid{
    grid-template-columns: 1fr;
  }

  .reviews-title{
    font-size: 32px;
  }

  .review-image-card img{
    height: auto;
  }

}

/* LOYALTY */

.loyalty-section {
  padding: 100px 20px;

  background: #f0fdf4;

  text-align: center;
}

.loyalty-container {
  max-width: 900px;
  margin: auto;
}

.loyalty-container h2 {
  font-size: 48px;
  color: #15803d;

  margin-bottom: 30px;
}

.loyalty-container p {
  font-size: 20px;

  line-height: 1.8;

  color: #374151;

  margin-bottom: 40px;
}

.loyalty-btn {
  background: #15803d;
  color: white;

  padding: 18px 35px;

  border-radius: 18px;

  text-decoration: none;

  font-weight: 600;
}

/* FAQ */

.faq-section {
  padding: 70px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 1100px;
  margin: auto;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  color: #111827;

  margin-bottom: 40px;
}

/* GRID */

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */

.faq-card {
  background: #f9fafb;

  padding: 32px;

  border-radius: 24px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
}

.faq-card h3 {
  font-size: 30px;

  margin-bottom: 16px;

  color: #111827;

  line-height: 1.4;
}

.faq-card p {
  color: #6b7280;

  line-height: 1.8;

  font-size: 18px;

  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .faq-section {
    padding: 60px 16px;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-card {
    padding: 24px;
  }

  .faq-card h3 {
    font-size: 24px;
  }

  .faq-card p {
    font-size: 16px;
  }

}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  padding: 90px 20px;
  background: #f9fafb;
}

.services-container {
  max-width: 1350px;
  margin: auto;
}

/* =========================
   HEADING
========================= */

.services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.services-subtitle {
  color: #15803d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.services-title {
  font-size: 46px;
  font-weight: 700;
  color: #111827;
  margin-top: 12px;
}

.services-description {
  max-width: 760px;
  margin: 18px auto 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: 17px;
}

/* =========================
   GRID
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* =========================
   CARD
========================= */

.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* =========================
   IMAGE
========================= */

.service-image-wrapper {
  overflow: hidden;
  background: #f3f4f6;
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 10;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.washing-image {
  object-position: center top;
}



.service-card:hover .service-image {
  transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 32px;
  font-weight: 700;

  color: #111827;

  margin-bottom: 14px;

  line-height: 1.3;
}

.service-content p {
  color: #6b7280;

  line-height: 1.7;

  font-size: 16px;

  margin-bottom: 22px;
}

/* =========================
   REMOVE BIG LIST LOOK
========================= */

.service-content ul {
  list-style: none;

  padding: 0;

  margin: 0 0 24px;

  display: flex;
  flex-direction: column;

  gap: 10px;
}

.service-content ul li {
  color: #374151;

  font-size: 15px;

  line-height: 1.5;
}

/* =========================
   BUTTON
========================= */

.service-content a {
  display: inline-block;

  background: #15803d;
  color: white;

  padding: 12px 22px;

  border-radius: 12px;

  text-decoration: none;

  font-weight: 600;

  font-size: 14px;

  transition: all 0.3s ease;
}

.service-content a:hover {
  background: #166534;

  transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-title {
    font-size: 38px;
  }

  .service-content h3 {
    font-size: 28px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .services-section {
    padding: 70px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-title {
    font-size: 32px;
  }

  .services-description {
    font-size: 15px;
  }

  .service-image {
    height: 210px;
  }

  .service-content {
    padding: 22px;
  }

  .service-content h3 {
    font-size: 26px;
  }

  .service-content p {
    font-size: 15px;
  }
}

/* TERMS */

.terms-section{
  padding: 100px 20px;
  background: #f9fafb;
}

.terms-container{
  max-width: 1000px;
  margin: auto;
}

.terms-title{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111827;
}

.terms-policy{
  background: #fef3c7;
  border-left: 6px solid #d97706;

  padding: 30px;
  border-radius: 20px;

  margin-bottom: 50px;
}

.terms-policy h2{
  font-size: 28px;
  margin-bottom: 15px;
  color: #92400e;
}

.terms-policy p{
  font-size: 18px;
  line-height: 1.8;
  color: #78350f;
}

.terms-content{
  background: white;

  padding: 40px;
  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.terms-content h3{
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #111827;
}

.terms-content p{
  color: #6b7280;
  line-height: 1.8;
  font-size: 17px;
}

@media(max-width:768px){

  .terms-title{
    font-size: 36px;
  }

  .terms-content{
    padding: 30px 20px;
  }

}

/* =========================================
   GLOBAL MOBILE FIXES
========================================= */

@media (max-width: 768px){

  html,
  body{
    overflow-x: hidden;
  }

  section{
    overflow: hidden;
  }

  h1,h2,h3,h4{
    word-break: break-word;
  }

}

/* =========================================
   NAVBAR MOBILE
========================================= */

@media (max-width: 768px){

  .navbar-container{
    padding: 12px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
  }

  .logo-wrapper{
    flex: 1;

    min-width: 0;
  }

  .logo{
    width: 50px;
    height: 50px;

    margin-right: -6px;
  }

  .logo-title{
    font-size: 16px;
    line-height: 1.1;
  }

  .logo-subtitle{
    font-size: 10px;
  }

  .desktop-nav{
    display: none;
  }

  .whatsapp-btn{
    display: none;
  }

  .menu-btn{
    display: block;

    font-size: 28px;
  }

  .mobile-menu{
    padding: 18px;
  }

}

/* =========================================
   HERO MOBILE
========================================= */

@media (max-width: 768px){

  .hero-video-section{
    min-height: 90vh;

    align-items: flex-end;
  }

  .hero-video-content{
    padding: 0 18px 50px;
  }

  .hero-video-subtitle{
    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 14px;
  }

  .hero-video-title{
    font-size: 42px;

    line-height: 1.05;

    margin-bottom: 18px;
  }

  .hero-video-description{
    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 28px;
  }

  .hero-video-buttons{
    flex-direction: column;

    gap: 14px;
  }

  .hero-video-btn-primary,
  .hero-video-btn-secondary{
    width: 100%;

    text-align: center;

    padding: 15px 20px;

    font-size: 15px;
  }

}

/* =========================================
   SERVICES MOBILE
========================================= */

@media (max-width: 768px){

  .services-section{
    padding: 60px 16px;
  }

  .services-heading{
    margin-bottom: 40px;
  }

  .services-title{
    font-size: 32px;

    line-height: 1.2;
  }

  .services-description{
    font-size: 15px;
  }

  .services-grid{
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .service-content{
    padding: 20px;
  }

  .service-content h3{
    font-size: 24px;
  }

  .service-content p{
    font-size: 15px;
  }

}

/* =========================================
   ABOUT MOBILE
========================================= */

@media (max-width: 768px){

  .about-section{
    padding: 60px 16px;
  }

  .about-container{
    gap: 30px;
  }

  .about-images-grid{
    grid-template-columns: 1fr;
  }

  .about-images-grid img{
    height: 220px;
  }

  .about-content{
    padding: 26px 20px;
  }

  .about-title{
    font-size: 30px;
  }

  .about-description{
    font-size: 15px;
  }

  .feature-card{
    padding: 16px;
  }

}

/* =========================================
   RECENT WORK MOBILE
========================================= */

@media (max-width: 768px){

  .recent-work-section{
    padding: 60px 16px;
  }

  .recent-work-title{
    font-size: 32px;
  }

  .recent-work-description{
    font-size: 15px;
  }

  .recent-work-grid{
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .recent-work-card video{
    height: 240px;
  }

}

/* =========================================
   REVIEWS MOBILE
========================================= */

@media (max-width: 768px){

  .reviews-section{
    padding: 60px 16px;
  }

  .reviews-title{
    font-size: 30px;
  }

  .reviews-description{
    font-size: 15px;
  }

  .reviews-grid{
    grid-template-columns: 1fr;
  }

}

/* =========================================
   FAQ MOBILE
========================================= */

@media (max-width: 768px){

  .faq-section{
    padding: 60px 16px;
  }

  .faq-title{
    font-size: 30px;

    margin-bottom: 28px;
  }

  .faq-card{
    padding: 22px;
  }

  .faq-card h3{
    font-size: 22px;

    line-height: 1.4;
  }

  .faq-card p{
    font-size: 15px;
  }

}

/* =========================================
   CONTACT MOBILE
========================================= */

@media (max-width: 768px){

  .contact-section{
    padding: 60px 16px;
  }

  .contact-title{
    font-size: 30px;
  }

  .contact-description{
    font-size: 15px;
  }

  .contact-main-grid{
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .contact-card{
    padding: 22px;
  }

  .contact-form-wrapper{
    padding: 24px 20px;
  }

  .map-wrapper iframe{
    height: 300px;
  }

}

/* =========================================
   QUOTE MOBILE
========================================= */

@media (max-width: 768px){

  .quote-section{
    padding: 60px 16px;
  }

  .quote-container{
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .quote-title{
    font-size: 30px;
  }

  .quote-description{
    font-size: 15px;
  }

  .quote-form{
    padding: 22px;
  }

  .form-grid{
    grid-template-columns: 1fr;
  }

  .policy-box{
    padding: 20px;
  }

  .policy-box strong{
    font-size: 20px;
  }

  .policy-box p{
    font-size: 15px;
  }

}

/* =========================================
   FOOTER MOBILE
========================================= */

@media (max-width: 768px){

  .footer{
    padding-top: 50px;
  }

  .footer-container{
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .footer-logo{
    font-size: 26px;
  }

  .footer-title{
    font-size: 20px;
  }

  .footer-description,
  .footer-contact,
  .footer-links a{
    font-size: 15px;
  }

  .footer-bottom{
    padding: 18px 16px;
  }

}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 480px){

  .hero-video-title{
    font-size: 34px;
  }

  .services-title,
  .about-title,
  .reviews-title,
  .faq-title,
  .contact-title,
  .quote-title,
  .terms-title{
    font-size: 28px;
  }

}