


/* ================= BASE STYLES ================= */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.7;
  background: #fff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
.header {
  width: 100%;
  background: #fff;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo img {
  height: 50px; /* adjust based on your logo */
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2b2b2b;
}

.btn-header {
  background: #2b2b2b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-header:hover {
  background: #444;
}

/* ================= MOBILE NAV ================= */
@media (max-width: 768px) {
  .nav {
    display: none; /* hide for mobile */
  }
}


/* ================= HERO ================= */
.hero {
  padding: 100px 20px;
  text-align: center;
  background: #f5f5f4;
}

.hero h1 {
  font-size: 36px;
}

.hero p {
  font-size: 17px;
  margin-top: 16px;
}

.hero .btn-dark {
  background: #2b2b2b;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 4px;
}

/* ================= SERVICES ================= */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  padding: 40px 20px;
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ================= PROMO VIDEO ================= */
.promo-video {
  padding: 60px 20px;
}

.video-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
  padding: 20px;
}

.video-overlay h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.video-overlay p {
  font-size: 16px;
  max-width: 700px;
}

/* ================= GALLERY ================= */
.gallery {
  padding: 60px 20px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* ================= LIGHTBOX ================= */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* ================= QUOTE FORM ================= */
.quote {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

.quote h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 30px;
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.quote-form button {
  background: #2b2b2b;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #444;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ================= MOBILE CTA ================= */
.mobile-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 30px;
  z-index: 1000;
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= FADE-IN ANIMATIONS ================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Floating Contact Buttons ===== */

.floating-contact {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.contact-btn {
  padding: 14px 18px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Phone Button */
.phone-btn {
  background: #2b2b2b;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25D366;
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 140px;
  }
}
/* ================= REVIEWS ================= */

.reviews {
  padding: 80px 20px;
  background: #f7f7f7;
  text-align: center;
}

.reviews h2 {
  margin-bottom: 40px;
}

.reviews-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.review {
  display: none;
  font-size: 16px;
  line-height: 1.6;
}

.review.active {
  display: block;
}

.review-text {
  font-style: italic;
  margin-bottom: 16px;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
}
.seo {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.seo h2 {
  text-align: center;
  margin-bottom: 24px;
}
/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  height: 500px; /* adjust for desktop */
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5); /* readability */
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button styling */
.hero .btn-dark {
  padding: 12px 22px;
  font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero {
    height: 420px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn-dark {
    padding: 11px 20px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 350px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
    margin: 12px auto;
    max-width: 90%;
  }

  .hero .btn-dark {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 13px;
  }

  .hero .btn-dark {
    padding: 9px 16px;
    font-size: 12px;
  }
}







