/* ================================================
   CoirCraft — styles.css
   Complete vanilla CSS for the static website
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg: hsl(30, 33%, 97%);
  --fg: hsl(20, 25%, 20%);
  --card: hsl(30, 25%, 95%);
  --card-border: hsl(28, 20%, 85%);
  --muted: hsl(20, 10%, 45%);
  --accent: hsl(160, 36%, 27%);
  --accent-light: hsl(160, 30%, 40%);
  --secondary: hsl(28, 48%, 89%);
  --coir-brown: hsl(20, 29%, 33%);
  --coir-warm: hsl(25, 40%, 50%);
  --coir-sand: hsl(28, 48%, 89%);
  --coir-cream: hsl(30, 100%, 97%);
  --coir-dark: hsl(20, 25%, 15%);
  --coir-star: hsl(25, 90%, 55%);
  --radius: 0.75rem;
  --shadow-card: 0 8px 30px -8px hsl(20 29% 33% / 0.12);
  --shadow-hover: 0 12px 40px -8px hsl(20 29% 33% / 0.22);
  --grad-brown: linear-gradient(135deg, hsl(20, 29%, 33%), hsl(25, 40%, 50%));
  --grad-green: linear-gradient(135deg, hsl(160, 36%, 27%), hsl(160, 30%, 40%));
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--coir-cream);
}

::-webkit-scrollbar-thumb {
  background: hsl(20 29% 33% / 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(20 29% 33% / 0.5);
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  overflow: hidden;
}

.section-alt {
  background: hsl(28, 48%, 89%, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-green {
  background: var(--grad-green);
  color: #fff;
  padding: 0.625rem 1.5rem;
}

.btn-white {
  background: var(--bg);
  color: var(--fg);
  padding: 1rem 2.5rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

/* ==================== NAVBAR ==================== */
#navbar {
  position: relative;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
  background-color: #FFF;
  color: #000;
  height: auto;
  animation: slideDown 0.6s ease-out;
}

#navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid hsl(28, 20%, 85%, 0.5);
}


#navbar.scrolled .nav-logo img {
  width: 160px;
  transition: width 0.3s ease;
}

@media screen and (max-width:676px) {
  #navbar .nav-logo img {
    width: 150px;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
  transition: color 0.3s;
}

#navbar.scrolled .nav-logo-text {
  color: var(--fg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.975rem;
  font-weight: 500;
  color: rgba(12, 12, 12, 0.9);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

#navbar.scrolled .nav-link {
  color: var(--fg);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #000000;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

#navbar.scrolled .hamburger-line {
  background: var(--fg);
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 1080px) {
  .nav-toggle {
    display: flex;
	border: 1px solid #590f1c;
    padding: 10px;  
  }

  .nav-links {
    position: fixed;
    top: 128px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 243, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    color: var(--fg);
    font-size: 1.0625rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(28, 20%, 85%, 0.3);
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }
}


@media screen and (max-width:676px) {
  .nav-links {
    top: 99px;
  }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

@media screen and (min-width:1000px) {
  .hero {
    height: 100vh;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(35, 24, 18, 0.8), rgba(35, 24, 18, 0.5) 60%, transparent);
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  max-width: 720px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(32px);
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(32px);
}

.hero-btn {
  opacity: 0;
  transform: translateY(32px);
}

.hero-indicators {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.4s, background 0.4s;
}

#heroSubtext {
  font-size: 0.98rem;
}

.hero-dot.active {
  width: 40px;
  background: #FFF;
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid;
  gap: 3rem 5rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrap {
  position: relative;
}

.about-image-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-image-decor {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 1rem;
  background: var(--grad-brown);
  opacity: 0.2;
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(28, 20%, 85%, 0.5);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ==================== PRODUCTS ==================== */
.products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s, box-shadow 0.4s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-image-wrap {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 24, 18, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-body {
  padding: 1.5rem;
}

.product-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}

.product-link:hover {
  gap: 0.6rem;
}

/* Swiper Products Styles */
.products-swiper {
  padding-bottom: 3.5rem;
  /* space for pagination */
}

.products-swiper .swiper-slide {
  height: auto;
  /* keeps all cards equal height */
}

.products-swiper .swiper-pagination-bullet {
  background: var(--muted);
}

.products-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
  color: var(--accent);
  background: var(--card);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 40%;
}

.products-swiper .swiper-button-next::after,
.products-swiper .swiper-button-prev::after {
  font-size: 1.25rem;
  font-weight: bold;
}

.products-swiper .swiper-button-next {
  right: 10px;
}

.products-swiper .swiper-button-prev {
  left: 10px;
}

@media (max-width: 768px) {

  .products-swiper .swiper-button-next,
  .products-swiper .swiper-button-prev {
    display: none;
  }
}

/* ==================== CATEGORIES ==================== */
.categories-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, hsl(28, 48%, 89%, 0.2), var(--bg), hsl(28, 48%, 89%, 0.3));
}

.categories-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-top-left {
  width: 288px;
  height: 288px;
  background: hsl(160, 36%, 27%, 0.05);
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.orb-bottom-right {
  width: 384px;
  height: 384px;
  background: hsl(20, 29%, 33%, 0.05);
  bottom: 0;
  right: 0;
  transform: translate(33%, 33%);
}

.cat-card {
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 185, 170, 0.5);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s, box-shadow 0.5s, border-color 0.5s;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: hsl(160, 36%, 27%, 0.3);
}

.cat-image-wrap {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.cat-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cat-card:hover .cat-image-wrap img {
  transform: scale(1.1);
}

.cat-body {
  padding: 1.5rem;
}

.cat-body h3 {
  font-size: 1.225rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cat-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ==================== PROCESS ==================== */
.process-section {
  position: relative;
  padding: 5rem 0.1rem;
  overflow: hidden;
  color: #fff;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(20, 25%, 15%), hsl(20, 29%, 33%));
}

.process-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 15 30 30 Q45 45 60 30' fill='none' stroke='%23fff' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.process-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: background 0.4s;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
}

.step-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.25rem;
  flex-shrink: 0;
  color: #fff;
  transition: transform 0.4s;
}

.process-step:hover .step-icon {
  transform: scale(1.1);
}

.step-image {
  width: 100%;
  height: 120px;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ==================== WHY CHOOSE US ==================== */
.why-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: radial-gradient(circle at 1px 1px, hsl(20, 29%, 33%) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s, box-shadow 0.5s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: var(--grad-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  transition: transform 0.5s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(3deg);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ==================== GALLERY ==================== */
.gallery-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--bg), hsl(28, 48%, 89%, 0.2), var(--bg));
}

.gallery-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-tr {
  width: 256px;
  height: 256px;
  background: hsl(160, 36%, 27%, 0.05);
  top: 5rem;
  right: 2.5rem;
}

.orb-bl {
  width: 192px;
  height: 192px;
  background: hsl(20, 29%, 33%, 0.05);
  bottom: 5rem;
  left: 2.5rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--muted);
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gallery-grid {
  columns: 1;
  gap: 1rem;
  column-gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 1rem;
  display: block;
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 24, 18, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  gap: 0.5rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(35, 24, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 1rem;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  background: hsl(28, 48%, 89%, 0.2);
}

.testimonials-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 380px;
  /* Prevent cumulative layout shift */
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  z-index: 1;
}

.testimonial-card.active-slide {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
  position: relative;
}

.testimonial-card.prev-slide {
  transform: translateX(-40px);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--coir-star);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
}

.author-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--muted);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: background 0.2s;
}

.testimonial-nav:hover {
  background: var(--secondary);
}

.prev-btn {
  left: -3rem;
}

.next-btn {
  right: -3rem;
}

@media (max-width: 640px) {
  .prev-btn {
    left: -0.75rem;
  }

  .next-btn {
    right: -0.75rem;
  }
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.t-dot {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: var(--card-border);
  transition: width 0.3s, background 0.3s;
}

.t-dot.active {
  width: 32px;
  background: var(--accent);
}

/* ==================== FAQ ==================== */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0.1rem;
}

.faq-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/faq-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.faq-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 14, 10, 0.82), rgba(35, 24, 18, 0.75));
}

.faq-section .section-header {
  margin-bottom: 3rem;
}

.faq-section .faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.875rem;
}

.faq-section .faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  transition: color 0.2s;
}

.faq-section .faq-trigger:hover {
  color: var(--coir-sand);
}

.faq-section .faq-trigger[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-section .faq-arrow {
  flex-shrink: 0;
  color: var(--coir-sand);
  transition: transform 0.35s;
}

.faq-section .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(232, 217, 194, 0.85);
  line-height: 1.7;
}

.faq-section .faq-content.open {
  max-height: 300px;
  padding: 0 1.4rem 1.125rem;
}

/* ==================== CTA ==================== */
.cta-section {
  position: relative;
  padding: 5rem 0.1rem;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-green);
}

.cta-dots {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 2px 2px, hsl(30, 100%, 97%) 1px, transparent 0);
  background-size: 30px 30px;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.cta-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--coir-dark);
  color: #fff;
  margin-top: -6px;
}

.footer .container {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .nav-logo-text {
  color: #fff;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.3rem 0;
  display: block;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6875rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==================== ABOUT US PAGE ==================== */
.breadcrumb-banner {
  position: relative;
  height: 45vh;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
 
  /* offset for fixed navbar */
}

@media screen and (max-width: 968px) {
  .breadcrumb-banner {
    margin-top:0px;
  }
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(35, 24, 18, 0.7), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  line-height: 1;
}

.breadcrumb-item a {
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: var(--accent) !important;
}

.about-page-details {
  background-color: #fff;
}

.about-page-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-page-decor {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--accent);
  z-index: -1;
  border-radius: 1rem;
  transition: transform 0.4s ease;
}

.about-page-img-wrap:hover .about-page-decor {
  transform: translate(10px, 10px);
}

.about-feature-card {
  background: rgba(250, 247, 243, 0.6);
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-feature-card:hover .about-feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.vision-mission-section {
  position: relative;
  overflow: hidden;
}

.vm-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.4s, box-shadow 0.4s;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vm-img-wrap {
  height: 240px;
  overflow: hidden;
}

.vm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vm-card:hover .vm-img-wrap img {
  transform: scale(1.05);
}

.vm-content {
  padding: 2.5rem;
  position: relative;
}

.vm-icon {
  width: 56px;
  height: 56px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -28px;
  left: 2.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.vm-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* ==================== GALLERY PAGE ==================== */
.gallery-page-section {
  background: var(--bg);
}

.gallery-grid-container {
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-icon {
  font-size: 2rem;
  color: #fff;
  transform: scale(0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

/* --- LIGHTBOX --- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 10, 8, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content-wrapper {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  user-select: none;
  animation: popIn 0.3s ease-out;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s, transform 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2001;
  transition: background 0.3s, transform 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 3%;
}

.lightbox-next {
  right: 3%;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ==================== RESPONSIVE TWEAKS ==================== */
@media (max-width: 640px) {
  .section {
    /* padding: 3.5rem 1.25rem; */
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-image-card img {
    height: 280px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}


.sticky01 {
    right: 0;
    position: fixed;
    top: 228px;
       z-index: 10000;
}

.cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 14px;
    height: 100%;
    background-color: #590f1c;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

