
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-nav{
  background: rgba(39, 108, 121, 0.95); 

}
.hero-section-about {
    position: relative;
    height: 100vh; /* reduced height */
    width: 100%;
    background: url("../images/about-page.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    overflow: hidden;
}
/* ===============================
   TABLET
================================ */
@media (max-width: 1024px) {
  .hero-section-about {
    height: 80vh; /* reduce height */
    background-attachment: scroll; /* fixed breaks on tablet */
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .hero-section-about {
    height: auto; /* allow content to define height */
    min-height: 70vh;
    width: 100vw;
    padding: 80px 20px; /* prevent cropping */
    background-position: center top;
    background-attachment: scroll;
  }
}

/* ===============================
   SMALL PHONES
================================ */
@media (max-width: 480px) {
  .hero-section-about {
    min-height: 60vh;
    padding: 60px 16px;
  }
}
.team {
  background: #fff;
  color: #000;
  padding: 4rem 2rem;
  font-family: 'Roboto', sans-serif;
}

.team-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.team-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.team-text {
  flex: 1;
  min-width: 280px;
}
 .our-story {
    color: #27aaaa;
    margin-bottom: 0.6rem;
  }

.team-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.team-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #0F172A;
  margin-top: 8px;
  border-radius: 2px;
}

.team-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 1024px) { /* tablets */
  .team-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-image {
    width: 100%;
    margin-bottom: 2rem;
  }

  .team-text {
    width: 100%;
  }
}

@media (max-width: 768px) { /* mobile */
  .team {
    padding: 3rem 1.5rem;
  }

  .team-text h2 {
    font-size: 1.75rem;
    text-align: center; /* center heading */
  }

  .team-text h2::after {
    margin: 8px auto; /* center underline */
  }

  .team-text p {
    font-size: 0.95rem;
    text-align: left; /* keep paragraph left-aligned */
  }
  .our-story {
    display: block;           /* makes it behave like a block element */
    text-align: center;    
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }
  
}
.our-journey {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.journey-header {
  margin-bottom: 4rem;
}

.journey-eyebrow {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #27aaaa;
  margin-bottom: 0.6rem;
}

.journey-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #111;
}

.journey-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 60px; /* space for year & line */
  gap: 3rem;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 30px; /* aligns with years */
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #90dfdf 0%, #d8dbdb 95%, transparent 100%);
  border-radius: 2px;
}

.journey-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.journey-item .year {
  flex-shrink: 0;
  width: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: #27aaaa;
  text-align: center;
}

.year-content {
  text-align: left;
}

.year-content h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  color: #111;
  position: relative;
}

/* small underline below h3 */
.year-content h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #29ab87;
  margin-top: 4px;
}

.year-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


@media (max-width: 480px) {
  .navbar{
    background: #000 !important;
  }
  .hero-about{
    padding-top: 50% !important;
  }
  .hero-about-text h1 {
    font-size: 2rem;
  }

  .hero-about-image img {
    max-width: 180px;
  }

  .hero-button {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

.contact-cta {
  background: #0F172A;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-cta .cta-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.contact-cta .cta-content p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons a {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-call {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-call:hover {
  background: #124e4e;
  color: #fff;
}

.btn-whatsapp {
  background: #27aaaa; /* WhatsApp green */
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  opacity: 0.9;
  background: #124e4e;
}

.faqs-page-p{
  margin-top: 10%;
text-align: center;

}
.faqs-page {
  padding: 5rem 5rem;
  background: #f9fbff;
}

.faqs-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  border: 1px solid #707072; 
  background: transparent;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.15);
  transform: translateY(-3px);
} 

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: #2d2d2e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.chevron {
  font-size: 1.4rem;
  color: #2d2d2e;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease;
}


.faq-answer p {
  padding-bottom: 1.5rem;
  color: #444;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .chevron {
  transform: rotate(90deg);
}
.faq-item {
  align-self: flex-start;
}
/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width: 1024px) {
  .faqs-page {
    padding: 4rem 3rem;
  }

  .faq-grid {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 1.5rem;
  }

  .faq-question {
    padding: 1.8rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }
}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {
  .faqs-page {
    padding: 1rem 10px;
  }

  .faq-title {
    font-size: 3.2rem;
  }

  .faq-question {
    padding: 1.6rem;
    font-size: 0.95rem;
    color: #080808;
  }

  .faq-answer {
    padding: 0 0.8rem;
    color: #080808;

  }

  .chevron {
    font-size: 1.2rem;
  }
}

/* =========================
   SMALL MOBILE (≤480px)
========================= */
@media (max-width: 480px) {
  .faqs-title {
    font-size: 1.9rem;
  }

  .faq-question {
    padding: 1.4rem;
    font-size: 0.9rem;
  }

  .faq-answer p {
    font-size: 0.88rem;

  }

  .chevron {
    font-size: 1rem;
  }
}

.collection-section {
  position: relative;
  background: #0F172A;
  color: hsl(0, 0%, 100%);
  height: 200vh; /* enough vertical scroll for 4 cards */
  display: flex;
  flex-direction: column; /* heading on top */
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
  padding-left: 20px;
  gap: 3rem; /* space between heading and cards */
}

.collection-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.collection-heading h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.collection-heading p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #ccc;
}

/* Collection Wrapper (sticky horizontal cards) */
.collection-wrapper {
  position: sticky;
  top: 120px; /* cards stick from below heading */
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  height: 250px; /* card height */
  margin: 0 auto;
}

.collection-card {
  flex: 0 0 240px; /* horizontal layout */
  height: 250px;
  background: #3b4253;
  border-radius: 12px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: 1rem;
  text-align: center;
}

.collection-card.active {
  opacity: 1;
  transform: translateY(0);
}

.card-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  stroke: #27aaaa; /* green icon color */
}

.collection-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  position: relative;
}

/* Small underline below h3 (centered, partial width) */
.collection-card h3::after {
  content: '';
  display: block;
  width: 40%;
  height: 2px;
  background: #27aaaa;
  margin: 0.3rem auto 0;
  border-radius: 1px;
}

.collection-card p {
  font-family: 'Roboto', sans-serif;
  font-size: .9rem;
  color: #ccc;
  line-height: 1.4;
  margin-top: 0.5rem;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {

  .collection-section {
    height: 145vh;
    padding-top: 10%;
  }
  .collection-wrapper {
    position: static !important; /* remove sticky */
    flex-direction: column;       /* stack cards vertically */
    align-items: center;          /* center them */
    gap: 1rem;                    /* small space between cards */
  }

  .collection-card {
    flex: 0 0 50%;   
    width: 400px;
    height: auto;    /* allow height to adjust naturally */
    opacity: 1 !important; /* make all cards visible */
    transform: translateY(0) !important; /* remove any translate animation */
    margin-bottom: 1rem;
  }
}