/* ===== CSS RESET & VARIABLES ===== */
:root {
  --green-dark: #1f3625;
  --green-mid: #2d4c35;
  --gold: #cba365;
  --gold-light: #e6cd98;
  --cream: #f4efe6;
  --cream-dark: #ece5d8;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  /* Fluid typography: scales gracefully from 320px to 2560px */
  font-size: clamp(14px, 0.4vw + 12px, 16px);
  max-width: 100%;
  overflow-x: clip;
  touch-action: manipulation;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
  touch-action: manipulation;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #112215 0%, #17331f 50%, #112215 100%);
  color: var(--gold);
  border-bottom: 1px solid rgba(203, 163, 101, 0.3);
  padding: 0.7rem 0;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 1001;
  height: 40px;
}

.announcement-content {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

/* Premium gradient fades on the sides of the scrolling text */
.announcement-content::before,
.announcement-content::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.announcement-content::before {
  left: 0;
  background: linear-gradient(to right, #112215, transparent);
}

.announcement-content::after {
  right: 0;
  background: linear-gradient(to left, #112215, transparent);
}

.announcement-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: announcement-scroll 35s linear infinite;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.announcement-track:hover {
  animation-play-state: paused;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  padding: 0 3rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.announcement-item:hover {
  color: var(--gold);
}

.announcement-item::after {
  content: '✦';
  color: var(--gold);
  margin-left: 6rem;
  font-size: 0.85rem;
}

@keyframes announcement-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ===== HEADER CONTAINER ===== */
.header-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--green-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 5%;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  padding: 2px;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.navbar-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.navbar-links a {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: var(--gold);
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-icon {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.nav-icon:hover {
  color: var(--gold);
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.hamburger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: stretch;
  min-height: 85vh;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-left {
  width: 45%;
  padding: 4% 3% 4% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-logo-container {
  margin-bottom: 2rem;
}

.kaviya-mangai-logo {
  width: 50%;
}

@media (min-width: 480px) {
  .kaviya-mangai-logo {
    width: 200px;
    height: auto;
  }
}

.hero-logo-circle-large {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  padding: 8px;
  position: relative;
  background: rgba(244, 239, 230, 0.85);
}

.hero-logo-circle-large img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.hero-tagline {
  color: var(--gold);
  font-size: 8px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

.underline {
  color: var(--gold);
  font-size: smaller;
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  width: 50px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title-highlight {
  color: var(--green-dark);
  font-style: italic;
  font-family: var(--font-heading);
}

.hero-desc {
  font-size: 10px;
  color: var(--text-muted);
  max-width: 300px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 480px) {
  .hero-desc {
    font-size: 14px;
  }
}

.hero-btns {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 500px;
}

.btn-primary {
  display: flex;
  gap: 5px;
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 16px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.btn-primary:hover {
  background: var(--green-mid);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  padding: 10px 16px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 4px;
}

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 0.3) 20%, black 40%);
  mask-image: linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 0.3) 20%, black 40%);
}

/* ===== FEATURE BANNER ===== */
.feature-banner {
  background: var(--green-dark);
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 5%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.feature-icon {
  color: var(--gold);
  font-size: 1.3rem;
}

/* ===== SECTION COMMON ===== */
section:not(.hero) {
  scroll-margin-top: 80px;
}

.section-header {
  text-align: center;
}

.section-label {
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--text-dark);
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 0.3rem;
}

.section-tagline {
  color: var(--gold);
  font-size: 8px;
}

/* ===== COLLECTIONS ===== */
.collections-section {
  padding: 1.5rem 5%;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.collection-card-image {
  position: relative;
  overflow: hidden;
}

.collection-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.05);
}

.collection-card-image-placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--cream-dark);
}

.collection-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
}

.collection-card-body {
  padding: 1.2rem;
  text-align: center;
}

.collection-card-category {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.collection-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.collection-card-short-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.collection-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Hover Overlay */
.collection-card-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(31, 54, 37, 0.95) 0%, rgba(31, 54, 37, 0.7) 60%, transparent 100%);
  padding: 2rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
}

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

.collection-card-hover-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.collection-card-view-button {
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  align-self: flex-start;
}

.collection-card-view-button:hover {
  background: var(--gold-light);
}

.collection-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.collection-card-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-view-all {
  display: inline-block;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  padding: 0.8rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-view-all:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

/* ===== PRODUCT DETAIL MODAL & UNIFIED POPUPS ===== */
.product-modal-overlay,
.form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 54, 37, 0.82);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-modal-overlay.modal-is-open,
.form-modal-overlay.form-modal-is-open {
  display: flex;
}

.product-modal-box,
.form-modal-box,
.review-modal-box {
  background: #ffffff;
  border-radius: 16px;
  max-width: 750px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(203, 163, 101, 0.3);
  animation: modalSlideUp 0.35s ease;
  margin: auto;
  padding: 0 32px 32px 32px;
  box-sizing: border-box;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.product-modal-close,
.form-modal-close-x {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1.1rem;
  color: #333333;
  cursor: pointer;
  z-index: 40;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.product-modal-close:hover,
.form-modal-close-x:hover {
  color: #000000;
  background: #e5e5e5;
  transform: scale(1.05);
}

.product-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.product-modal-gallery {
  padding: 2rem;
  background: var(--cream);
  border-radius: 12px 0 0 12px;
}

.product-modal-main-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-modal-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.modal-thumbnail-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.3s;
}

.modal-thumbnail-image:hover,
.modal-thumbnail-image.thumbnail-selected {
  border-color: var(--gold);
  opacity: 1;
}

.product-modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.product-modal-category {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-modal-id {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.product-modal-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-modal-details {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.modal-product-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.85rem;
}

.detail-label {
  font-weight: 600;
  color: var(--text-dark);
}

.detail-value {
  color: var(--text-muted);
  text-align: right;
}

.product-modal-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0e3a1e;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  margin-top: auto;
}

.product-modal-whatsapp:hover {
  transform: scale(1.03);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .product-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .product-modal-box {
    max-height: 95vh;
    border-radius: 16px 16px 0 0;
  }

  .product-modal-content {
    grid-template-columns: 1fr;
  }

  .product-modal-gallery {
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
  }

  .product-modal-main-image {
    max-height: 300px;
  }

  .product-modal-info {
    padding: 1.5rem;
  }

  .product-modal-title {
    font-size: 1.4rem;
  }
}

/* ===== ABOUT ===== */
.about-section {
  padding: 2rem 5%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-img {
  width: 100%;
  object-fit: contain;
}

.about-content .section-label {
  text-align: left;
  color: #315703 !important;
}

.about-content .section-title {
  text-align: left;
  line-height: 1.2;
}

.about-desc {
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  background: var(--cream-dark);
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(203, 163, 101, 0.2);
  gap: 1rem;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex: 1;
  justify-content: center;
  position: relative;
}

.about-feat:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.5rem;
  color: var(--gold);
  font-weight: 300;
  opacity: 0.6;
}

.about-feat-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cta {
  margin-top: 2rem;
}

.btn-gold {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: var(--green-mid);
}

/* ===== WORKSHOP / CLASSES ===== */
.workshop-section {
  padding: 2rem 5%;
  background: var(--cream);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 350px));
  justify-content: center;
  gap: 1.75rem;
  margin: 2rem auto 0 auto;
  max-width: 1150px;
}

.workshop-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(203, 163, 101, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(49, 87, 3, 0.12), 0 4px 12px rgba(203, 163, 101, 0.2);
  border-color: var(--gold);
}

.workshop-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 155px;
  overflow: hidden;
  background: var(--green-dark);
}

.workshop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.workshop-card:hover .workshop-card-img {
  transform: scale(1.06);
}

.workshop-card-body {
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.workshop-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.workshop-card-subtitle {
  color: var(--gold-dark, #b58941);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.workshop-card-desc {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.btn-workshop-enroll {
  display: inline-block;
  width: 100%;
  padding: 0.7rem 1.2rem;
  background: var(--green-dark);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--green-dark);
  box-shadow: 0 4px 12px rgba(49, 87, 3, 0.15);
}

.btn-workshop-enroll:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(203, 163, 101, 0.35);
}

/* Enrollment Modal Form Overrides */
#workshop-enroll-form .ws-input {
  border: 1px solid var(--color-border);
}

/* ===== ORDER TRACKING ===== */
.tracking-section {
  padding: 4rem 5%;
  background: var(--white);
}

.tracking-box {
  max-width: 700px;
  margin: 0 auto;
}

.tracking-input-row {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  width: 100%;
}

.tracking-input {
  flex: 1 1 0%;
  min-width: 0;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  border: 1.5px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-family: var(--font-body);
  outline: none;
}

.tracking-input:focus {
  border-color: var(--gold);
}

.track-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.9rem 2rem;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background 0.3s;
  white-space: nowrap;
}

.track-btn:hover {
  background: var(--green-mid);
}

.tracking-error {
  color: #c0392b;
  text-align: center;
  margin-bottom: 1rem;
  display: none;
  font-size: 0.9rem;
}

/* Progress Tracker */
.progress-tracker {
  display: none;
  position: relative;
  padding: 1rem 0;
}

.progress-line {
  position: absolute;
  top: 32px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: #e0e0e0;
  z-index: 1;
}

.progress-line-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.6s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.p-step {
  text-align: center;
  flex: 1;
}

.p-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  transition: all 0.3s;
}

.p-step.done .p-step-circle,
.p-step.active .p-step-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.p-step-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
}

.p-step.active .p-step-label {
  color: var(--green-dark);
  font-weight: 700;
}

/* ===== WHATSAPP BAR ===== */
.wa-bar {
  background: var(--green-dark);
  text-align: center;
  padding: 1.2rem 5%;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  color: var(--white);
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s;
}

.wa-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ===== PROCESS ===== */
.process-section {
  padding: 1.5rem 5%;
  background: var(--white);
  color: var(--text-dark);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.process-step:hover .process-number {
  background: var(--gold);
  color: var(--white);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== REVIEWS / CLIENT STORIES ===== */
.reviews-section {
  padding: 2rem 5%;
  background: var(--cream);
  text-align: center;
}

.reviews-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 0 3.5rem;
}

.reviews-carousel {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: thin;
  align-items: stretch;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.carousel-arrow:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.review-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(203, 163, 101, 0.15);
  text-align: left;
  border-radius: 12px;
  flex: 0 0 calc(33.333% - 1.35rem);
  min-width: 310px;
  scroll-snap-align: start;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
}

.review-avatar,
.review-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 2px solid var(--gold);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.review-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  font-size: 1.5rem;
  color: var(--gold);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  overflow: hidden;
  max-height: 56px;
}

.review-author {
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.review-course {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== FIND US (LOCATION) ===== */
.location-section {
  padding: 5rem 5%;
  background: var(--green-dark);
  color: var(--white);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.location-content .btn-primary {
  background-color: var(--white);
  color: var(--green-dark);
}

.location-content .section-title {
  color: var(--white);
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.loc-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  /* darker than green-dark for contrast */
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 5% 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE: TABLET (768px) ===== */
@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .location-container {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-links {
    gap: 1rem;
  }

  .navbar-links li a {
    font-size: 0.6rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-icons {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    position: relative;
  }

  .hero-logo-container {
    text-align: left;
    margin: 0;
  }

  .hero-logo-circle-large {
    width: 180px;
    height: 180px;
    margin: 0;
    background: rgba(244, 239, 230, 0.7);
  }

  .hero-left {
    width: 100%;
    padding: 2rem 5% 2.5rem;
    text-align: left;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }

  /* .hero-tagline {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    display: inline-block;
  } */

  .hero-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 1;
  }

  .hero-right img {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.2) 15%, rgba(0, 0, 0, 0.6) 40%, black 60%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.2) 15%, rgba(0, 0, 0, 0.6) 40%, black 60%);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    max-width: 30%;
    text-align: left;
  }

  .hero-btns {
    max-width: 220px;
    flex-direction: column;
    width: auto;
    margin-bottom: 20px;
  }

  .feature-banner {
    flex-direction: row;
    gap: 1rem;
    padding: 1.5rem 8%;
    align-items: flex-start;
    margin: 0 5%;
    border-radius: 8px;
  }

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

  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-cta {
    text-align: center;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 0.5rem;
    padding: 0.2rem;
  }

  .about-feat {
    justify-content: flex-start;
    padding-left: 0.5rem;
    font-size: 0.8rem;
  }

  .about-feat:not(:last-child)::after {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .review-card {
    flex: 0 0 85%;
    min-width: 270px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .progress-steps {
    flex-wrap: nowrap;
  }

  .p-step-label {
    font-size: 0.6rem;
  }

  .p-step-circle {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }
}

@media (max-width: 375px) {
  .feature-item {
    font-size: 7px !important;
  }
}

/* ===== RESPONSIVE: MOBILE (480px) ===== */
@media (max-width: 480px) {
  .navbar {
    padding: 0.6rem 4%;
  }

  .navbar-logo-circle {
    width: 42px;
    height: 42px;
  }

  .navbar-brand-name {
    font-size: 15px;
  }

  .navbar-brand-sub {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .sub-text {
    color: white;
  }

  .hero-left {
    padding: 0rem 5%;
  }

  /* .hero-logo-circle-large {
    width: 150px;
    height: 150px;
  } */

  .hero-right {
    width: 80%;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  /* .hero-tagline {
    font-size: 0.7rem;
  } */

  .hero-desc {
    font-size: 10px;
    max-width: 55%;
  }

  .feature-banner {
    padding: 1.2rem 5%;
  }

  .feature-item {
    font-size: 10px;
  }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .collection-card-img {
    height: 180px;
  }

  .collection-card-body {
    padding: 0.8rem;
  }

  .collection-card-title {
    font-size: 1rem;
  }

  /* removed about-img height */

  .tracking-input {
    font-size: 0.85rem;
    padding: 0.6rem;
  }

  .track-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }

  .p-step-circle {
    width: 26px;
    height: 26px;
    font-size: 0.6rem;
    border-width: 2px;
  }

  .p-step-label {
    font-size: 0.55rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* ===== PUBLIC WORKSHOP ENROLLMENT MODAL ===== */
.form-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 54, 37, 0.85);
  /* Semi-transparent dark green tint */
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.form-modal-overlay.form-modal-is-open {
  display: flex;
}

.form-modal-box {
  background: #fdfbf7;
  /* Elegant ivory/cream background */
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 0 35px 35px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(203, 163, 101, 0.3);
  /* Gold border */
  position: relative;
  animation: modalSlideUp 0.35s ease;
}

.form-modal-title {
  font-family: var(--font-heading), 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark, #111);
  text-align: left;
  margin-bottom: 24px;
  padding-top: 24px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--gold, #cba365);
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 30;
  margin-left: -32px;
  margin-right: -32px;
  padding-left: 32px;
  padding-right: 32px;
}

.form-field-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.ws-input {
  width: 100%;
  padding: 10px 13px !important;
  font-size: 0.95rem;
  border: 1px solid #d0d0d0 !important;
  border-radius: 4px !important;
  outline: none;
  background: #ffffff !important;
  color: var(--text-dark) !important;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
}

.ws-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(203, 163, 101, 0.15);
}

.form-modal-actions-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.admin-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.admin-btn-outline {
  background: transparent;
  color: var(--green-dark) !important;
  border: 1px solid var(--green-dark) !important;
}

.admin-btn-outline:hover {
  background: rgba(31, 54, 37, 0.05);
}

.admin-btn-gold {
  background: var(--green-dark);
  color: white !important;
  border: 1px solid var(--green-dark);
}

.admin-btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark) !important;
}

.ws-message {
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 500px) {
  .form-modal-box {
    padding: 30px 20px;
    margin: 10px;
  }

  .form-modal-title {
    font-size: 1.6rem;
    margin-top: 0px;
    padding-top: 30px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Scroll lock when modal or navbar is open */
body.no-scroll,
html.no-scroll {
  overflow: hidden !important;
  touch-action: none !important;
}

.d-flex-cen {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
  padding: 2rem 10% 6rem;
  background: var(--cream);
  border-top: 1px solid rgba(203, 163, 101, 0.15);
}

.appointment-form-container {
  max-width: 800px;
  margin: 3rem auto 0;
  background: var(--white);
  padding: 3.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(203, 163, 101, 0.15);
}

.appt-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.8rem;
}

.appt-form-grid .form-field-group {
  margin-bottom: 0;
}

.appt-form-grid .form-field-group.form-field-full-width {
  grid-column: span 2;
}

.appt-people-group {
  background: var(--cream-dark);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px dashed rgba(203, 163, 101, 0.35);
  margin-top: 0.5rem;
}

.appt-group-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.appt-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.appt-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  outline: none;
  font-family: var(--font-body);
  transition: all 0.25s ease;
}

.appt-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(203, 163, 101, 0.15);
}

.appt-input::placeholder {
  color: #a09787;
}

/* Hide number spin buttons */
.appt-input[type="number"] {
  -moz-appearance: textfield;
}

.appt-input[type="number"]::-webkit-outer-spin-button,
.appt-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Submit button styling override */
.appointment-form .btn-primary {
  width: auto;
  min-width: 240px;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(31, 54, 37, 0.15);
  transition: all 0.3s ease;
}

.appointment-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 54, 37, 0.25);
  background: var(--green-mid);
}

.appointment-form .btn-primary:active {
  transform: translateY(0);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .appt-form-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .appt-form-grid .form-field-group.form-field-full-width {
    grid-column: span 1;
  }

  .appointment-section {
    padding: 3rem 5% 3rem;
  }

  .appointment-form-container {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .appt-people-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Form modals: fully responsive */
  .form-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
}

/* ============================================================
   NEW STYLES: CATEGORIES, RENTAL, GALLERY, LIGHTBOX, MENTOR
   ============================================================ */

/* ===== CATEGORIES (GALLERY & RENTAL) ===== */
.gallery-categories,
.rental-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
}

.gallery-cat-btn,
.rental-cat-btn {
  background: var(--white);
  border: 1.5px solid rgba(203, 163, 101, 0.3);
  color: var(--text-dark);
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.gallery-cat-btn:hover,
.rental-cat-btn:hover {
  background: rgba(203, 163, 101, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.gallery-cat-btn.gallery-cat-active,
.rental-cat-btn.rental-cat-active {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  box-shadow: 0 4px 10px rgba(49, 87, 3, 0.2);
}

/* ===== OUTFIT RENTAL SECTION ===== */
.rental-section {
  padding: 2rem 5%;
  background: var(--white);
  text-align: center;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.rental-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(203, 163, 101, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.rental-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(49, 87, 3, 0.14), 0 4px 14px rgba(203, 163, 101, 0.25);
  border-color: var(--gold);
}

.rental-card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--cream-dark);
}

.rental-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rental-card:hover .rental-card-image img {
  transform: scale(1.08);
}

.rental-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.rental-card-category {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rental-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.rental-card-price {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.btn-rental-view {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

.btn-rental-view:hover {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(203, 163, 101, 0.3);
}

/* Rental Rules Container */
.rental-rules-container {
  max-width: 1000px;
  margin: 1rem auto;
  text-align: left;
}

.rental-rules-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.rental-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.rental-rule-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(203, 163, 101, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rental-rule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(203, 163, 101, 0.1);
  border-color: rgba(203, 163, 101, 0.4);
}

.rental-rule-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rental-rule-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.rental-rule-content p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.rental-rule-content p:last-child {
  margin-bottom: 0;
}

.rental-highlight {
  background: rgba(203, 163, 101, 0.15);
  color: var(--green-dark);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

.rental-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.rental-link:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Rental Checkout Modal Overrides */
.rental-modal-pricing {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid rgba(203, 163, 101, 0.15);
}

.rental-price-tag,
.rental-deposit-tag {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.rental-price-tag span {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.25rem;
}

.rental-deposit-tag span {
  font-weight: 600;
  color: var(--gold);
}

.rental-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.rental-checkout-form .appt-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.rental-checkout-form .appt-input:focus {
  border-color: var(--gold);
  outline: none;
}

/* ===== 3D COVERFLOW MEDIA GALLERY ===== */
.gallery-section {
  padding: 3.5rem 2%;
  background: var(--cream);
  text-align: center;
  overflow: hidden;
}

.gallery-coverflow-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 1.5rem auto 0 auto;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.gallery-coverflow-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-card {
  position: absolute;
  width: 290px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform, opacity;
  border: 2px solid rgba(203, 163, 101, 0.25);
  background: #111;
  user-select: none;
}

.coverflow-card.is-center {
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(203, 163, 101, 0.35), 0 0 20px rgba(203, 163, 101, 0.2);
}

.coverflow-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.coverflow-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.coverflow-card-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border: 1px solid rgba(203, 163, 101, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.coverflow-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 15, 0.92) 0%, rgba(17, 24, 15, 0.45) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.coverflow-card:hover .coverflow-card-overlay {
  opacity: 1;
}

.coverflow-card-info {
  text-align: left;
}

.coverflow-card-category {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.coverflow-card-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.coverflow-card-zoom-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

/* Arrow Navigation */
.coverflow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--bg-dark);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.coverflow-prev {
  left: 10px;
}

.coverflow-next {
  right: 10px;
}

.coverflow-arrow:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(203, 163, 101, 0.4);
}

/* Dots Indicator */
.gallery-coverflow-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.2rem;
}

.coverflow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(203, 163, 101, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.coverflow-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .gallery-coverflow-wrapper {
    height: 360px;
  }

  .coverflow-card {
    width: 220px;
    height: 300px;
  }

  .coverflow-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .coverflow-prev {
    left: 2px;
  }

  .coverflow-next {
    right: 2px;
  }
}

/* Gallery Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.lightbox-open {
  opacity: 1;
  pointer-events: auto;
}

#lightbox-image {
  max-width: 85%;
  max-height: 75%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2100;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 2.5rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  user-select: none;
  z-index: 2100;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
  max-width: 80%;
  font-family: var(--font-body);
}

/* ===== MENTOR PROFILE SECTION ===== */
.mentor-section {
  padding: 2rem 5%;
  background: var(--white);
  text-align: center;
}

#mentor-profile-container {
  max-width: 1000px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mentor-card {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3.5rem;
  background: var(--cream);
  border: 1px solid rgba(203, 163, 101, 0.15);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  align-items: start;
  text-align: left;
}

.mentor-photo-side {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mentor-photo-side img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-photo-side img {
  transform: scale(1.04);
}

.mentor-photo-placeholder {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  font-size: 5rem;
  color: var(--gold);
}

.mentor-info-side {
  display: flex;
  flex-direction: column;
}

.mentor-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.mentor-designation {
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.mentor-experience {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.mentor-bio {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.mentor-list {
  margin-bottom: 1.8rem;
}

.mentor-list h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.mentor-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.mentor-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.mentor-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.mentor-socials {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.mentor-social {
  font-size: 0.85rem;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.mentor-social:hover {
  color: var(--gold);
  border-color: var(--green-dark);
}

/* ===== RESPONSIVE MEDIA QUERIES FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
    min-width: 250px;
  }

  .reviews-carousel-wrapper {
    padding: 0 1rem;
  }

  .reviews-carousel {
    overflow-x: auto;
    padding-bottom: 2rem;
  }

  .carousel-arrow {
    display: flex;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .rental-rules-grid {
    grid-template-columns: 1fr;
  }

  .rental-rule-card {
    padding: 1.2rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
  }

  .mentor-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .mentor-photo-side {
    max-width: 320px;
    margin: 0 auto;
  }

  .mentor-list ul {
    grid-template-columns: 1fr;
  }
}

textarea {
  resize: none;
}

/* ===== FORM MODAL MOBILE FIXES & PAGINATION DISABLED STATE ===== */
@media (max-width: 768px) {
  .form-modal-box {
    margin: 0 !important;
    position: absolute;
    bottom: 0;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px 16px 0 0 !important;
    max-height: 95vh !important;
    padding: 0 1.5rem 2rem 1.5rem !important;
    box-sizing: border-box;
  }
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .form-modal-actions-row {
    flex-direction: column-reverse;
    gap: 15px;
  }

  .form-modal-actions-row button {
    width: 100% !important;
    text-align: center;
  }
}

/* Rental Pagination Buttons */
.btn-pagination {
  padding: 8px 16px;
  background-color: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-pagination:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* ===== SYLLABUS SECTION ===== */
.syllabus-section {
  padding: 4rem 5%;
  background: linear-gradient(180deg, var(--cream) 0%, #f4eee3 100%);
}

.syllabus-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Syllabus Card Container */
.syllabus-card-modern {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(203, 163, 101, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.syllabus-card-modern:hover {
  box-shadow: 0 15px 40px rgba(203, 163, 101, 0.15);
  border-color: var(--gold);
}

/* Card Header */
.syllabus-card-header {
  background: linear-gradient(135deg, rgba(49, 87, 3, 0.05) 0%, rgba(203, 163, 101, 0.08) 100%);
  padding: 2.5rem 2.5rem 1.8rem 2.5rem;
  border-bottom: 1px solid rgba(203, 163, 101, 0.2);
}

.syllabus-card-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.syllabus-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.syllabus-badge.gold {
  background: var(--gold);
  color: var(--bg-dark);
}

.syllabus-badge.outline {
  border: 1px solid var(--gold);
  color: var(--gold-dark, #8b6e35);
  background: rgba(203, 163, 101, 0.1);
}

.syllabus-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bg-dark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.syllabus-card-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Quick Stats Bar */
.syllabus-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-pill {
  background: var(--white);
  border: 1px solid rgba(203, 163, 101, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.stat-pill strong {
  color: var(--green-dark);
}

/* Accordion Wrapper */
.syllabus-accordion-wrapper {
  padding: 1.5rem 2.5rem 2.5rem 2.5rem;
}

.syllabus-accordion-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(203, 163, 101, 0.3);
}

.syllabus-accordion-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark, #8b6e35);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.syllabus-toggle-all-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark, #8b6e35);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.syllabus-toggle-all-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* Accordion Item */
.syllabus-accordion-item {
  border: 1px solid rgba(203, 163, 101, 0.2);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #faf8f5;
}

.syllabus-accordion-item:hover,
.syllabus-accordion-item.active {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(203, 163, 101, 0.08);
}

.syllabus-accordion-header {
  padding: 1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  transition: background 0.3s ease;
}

.syllabus-accordion-item.active .syllabus-accordion-header {
  background: rgba(203, 163, 101, 0.08);
}

.syllabus-accordion-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.syllabus-module-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.syllabus-accordion-header h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--bg-dark);
  margin: 0;
  font-weight: 600;
}

.syllabus-accordion-chevron {
  color: var(--gold-dark, #8b6e35);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.syllabus-accordion-item.active .syllabus-accordion-chevron {
  transform: rotate(180deg);
}

/* Accordion Content */
.syllabus-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: var(--white);
}

.syllabus-accordion-item.active .syllabus-accordion-content {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
}

.syllabus-content-inner {
  padding: 1.2rem 1.4rem 1.4rem 1.4rem;
  border-top: 1px solid rgba(203, 163, 101, 0.15);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Features List & Grid */
.syllabus-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.syllabus-feature-list li {
  margin-bottom: 8px;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check-icon {
  color: var(--green-dark);
  font-weight: bold;
  flex-shrink: 0;
}

.syllabus-grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.syllabus-pill-tag {
  background: rgba(203, 163, 101, 0.08);
  border: 1px solid rgba(203, 163, 101, 0.25);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--bg-dark);
}

.syllabus-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.syllabus-tag {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--bg-dark);
}

/* Card Footer CTA */
.syllabus-card-footer {
  background: var(--bg-dark);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.syllabus-footer-price {
  display: flex;
  flex-direction: column;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
}

.price-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.syllabus-enroll-btn {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(203, 163, 101, 0.3);
}

.syllabus-enroll-btn:hover {
  background: var(--white);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-card-modern {
    height: 240px;
  }

  .syllabus-card-header,
  .syllabus-accordion-wrapper,
  .syllabus-card-footer {
    padding: 1.5rem;
  }

  .syllabus-card-title {
    font-size: 1.5rem;
  }

  .syllabus-accordion-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.form-modal-box {
  position: relative !important;
}

.form-modal-close-x {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text-dark, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.25s ease;
  z-index: 50;
}

.form-modal-close-x:hover {
  opacity: 1;
  background: var(--gold, #cba365);
  color: var(--white, #fff);
  border-color: var(--gold, #cba365);
  transform: scale(1.1);
}

/* Background Scroll Lock when Modal is Open */
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  touch-action: none !important;
  -ms-touch-action: none !important;
  -webkit-overflow-scrolling: auto !important;
}

/* Disable Zooming & Scaling */
html,
body {
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

.review-before-after-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.review-comparison-label {
  font-size: 10px;
  color: var(--text-muted);
}

.review-comparison-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.review-card-clickable {
  cursor: pointer;
}