@import url("base.css");
@import url("layout.css");
@import url("components.css");
@import url("about.css");
@import url("gallery.css");

/* ================================
   TESTIMONIALS SLIDER (PREMIUM)
================================ */
.testimonials {
  text-align: center;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 100%;
  margin-top: 50px;
}

/* sliding track */
.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: testimonial-scroll 45s linear infinite;
}

/* pause on hover */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* card */
.testimonial-card {
  width: 320px;
  flex-shrink: 0;
  background: #ffffff;
  padding: 40px 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
}

/* quote icon */
.quote-icon {
  font-size: 26px;
  color: var(--accent);
  position: absolute;
  top: 18px;
  left: 20px;
  opacity: 0.9;
}

/* image */
.testimonial-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px auto 18px;
  border: 3px solid rgba(0,0,0,0.05);
}

/* text */
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}

/* name */
.testimonial-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

/* role */
.testimonial-card span {
  font-size: 13px;
  color: #6b7280;
}

/* animation */
@keyframes testimonial-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* mobile */
@media (max-width: 600px) {
  .testimonial-card {
    width: 280px;
  }
}









/* ================================
   SECTION BACKGROUND SHADING
================================ */

/* Base light section */
.section-light {
  background: #ffffff;
}

/* Soft neutral */
.section-soft {
  background: #f8fafc;
}

/* Brand-tinted */
.section-brand {
  background: rgba(11, 28, 45, 0.03);
}

section {
  position: relative;
  padding: 90px 5%;
}


/* ================================
   WHATSAPP FLOATING BUTTON
================================ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  background: #25d366;
  color: #ffffff;

  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 9999;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float i {
  font-size: 22px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}


/* ================================
   SCROLL REVEAL (FIXED)
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* 👇 THIS IS THE IMPORTANT FIX */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ================================
   CONTACT PAGE
================================ */

/* HERO */
.contact-hero {
  padding: 120px 5% 90px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255,165,0,0.08),
    rgba(11,28,45,0.05)
  );
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 18px;
  color: #4b5563;
  max-width: 680px;
  margin: auto;
}

/* CONTACT INFO */
.contact-cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.contact-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
}

.contact-card p {
  font-size: 15px;
  color: #4b5563;
}

/* FORM */
.contact-form-section {
  padding: 100px 5%;
}

.contact-form-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-text h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-text p {
  color: #4b5563;
  font-size: 16px;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
  font-size: 14px;
}

.contact-form button {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form small {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #6b7280;
}

/* MAP */
.contact-map {
  text-align: center;
}

.map-placeholder {
  margin-top: 30px;
  background: #ffffff;
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.map-placeholder p {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}

.map-placeholder span {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}

/* ================================
   GOOGLE MAP (CLEAN & RESPONSIVE)
================================ */

.map-container {
  max-width: 1100px;
  margin: 40px auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  background: #ffffff;
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .map-container iframe {
    height: 300px;
  }
}

/* ================================
   SEO CONTENT BLOCK
================================ */
.seo-content {
  text-align: left;
}

.seo-container {
  max-width: 1000px;
  margin: auto;
}

.seo-content h2 {
  margin-bottom: 20px;
}

.seo-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.seo-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 16px;
}

.seo-list {
  padding-left: 18px;
  margin-bottom: 20px;
}

.seo-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #374151;
}
