/* =========================
   GLOBAL BASE
========================= */

body {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #374151;
}

/* =========================
   NAV LINKS (DESKTOP)
========================= */

 
/* subtle underline indicator */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* =========================
   MOBILE NAV LINKS
========================= */

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.2;
}
 

/* =========================
  faq
========================= */
 .faq-section {
  padding: 80px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 1.8rem;
  color: #0c2d5a;
  margin-bottom: 32px;
}

/* Item */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question span:first-child {
  font-size: 1rem;
  color: #111827;
}

.faq-question .icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
  padding-bottom: 18px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 500px; /* safe height for long answers */
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 640px) {
  .faq-title {
    font-size: 1.5rem;
  }
}




 
/* =========================
   DESKTOP CONTACT BUTTONS
========================= */

.contact-btn {
  padding: 0.7rem 1.5rem;        /* larger feel on PC */
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.email-btn {
  border: 1px solid #ffffff;
  color: #cccfce;
  padding: 0.7rem 1.5rem;        /* larger feel on PC */
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
}

.email-btn:hover {
   background: #fbbf24;
  color: #0c2d5a;
}

.whatsapp-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid; 
  padding: 0.5rem 1.4rem;        /* larger feel on PC */
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600; 
  transition: all 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #25D366;
   transform: scale(1.08);
}

/* =========================
   MOBILE ICON BUTTONS
========================= */

.icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 125, 100, 0.1);
  font-size: 0.95rem;
  color: #e9e9e9; 
}

.icon-btn:hover {
  background: rgba(47, 125, 100, 0.18);
}

/* =========================
   DESKTOP-SPECIFIC TUNING
========================= */

@media (min-width: 1024px) {
  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}
/* =========================
   SHINE / SILVER HOVER EFFECT
========================= */

.shine-card {
  position: relative;
  overflow: hidden;
}

.shine-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(104, 225, 255, 0.4) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.shine-card:hover::before {
  left: 120%;
}
/* =========================
   CONTACT SECTION
========================= */

.contact-info {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
} 
.contact-info:hover{
  background-color: #1c398e;
  
}
.contact-info:hover h4{
    color: white;
  }

.contact-info p {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.4;
}
.contact-info:hover p {
  color: white;
}

.contact-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* Inputs */
.contact-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
  outline: none;
  border-color: #2F7D64;
  box-shadow: 0 0 0 2px rgba(47, 125, 100, 0.12);
}
/* carousel*/
/* Carousel */
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Service Card */
.service-card {
  min-width: 260px;
  max-width: 260px;
  background: #ffffff;
  border-radius: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.service-card h3 {
  margin-top: 1rem;
  font-weight: 600;
  color: #350f7a;
}

.service-card p {
  font-size: 0.85rem;
  color: #6b7280;
  padding: 0 1rem;
}

/* Silver Shimmer Effect */
.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: all 0.6s ease;
}

.shimmer:hover::after {
  left: 120%;
}

/* Pause on hover (desktop UX) */
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

/*hero carousel*/
.collection-carousel {
  width: 100%;
  height: 30vh;
  min-height: 280px;
  overflow: hidden;
  position: relative;
  background: #eef6f4;
}

.collection-track {
  display: flex;
  height: 100%;
  transition: transform 0.9s ease-in-out;
}

.collection-slide {
  min-width: 100%;
  height: 100%;
}

.collection-slide img {
  width: 100%; 
  object-fit: cover;
}  