/*
* Macz Wedding Stories - Main Stylesheet
* Redesigned based on reference
*/

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --dark: #001636;
  --dark2: #0a254a;
  --cream: #f5f0e8;
  --text: #d4cfc8;
  --white: #ffffff;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-sub: 'Cinzel', serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode {
  --dark: #ffffff;
  --dark2: #f8f9fa;
  --cream: #1a2b4c;
  --text: #4a5568;
  --gold: #b38b4d;
  --gold-light: #8b6b3d;
  --white: #ffffff;
}


body.light-mode .hero-bg { background: rgba(255, 255, 255, 0.85); }
body.light-mode .hero-bg::after {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b38b4d' fill-opacity='0.135'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  filter: none;
}
body.light-mode .site-header.scrolled { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid rgba(201,169,110,0.4); }
body.light-mode .footer-web { color: #8b6b3d; }
body.light-mode .package-number { color: rgba(0,0,0,0.03); }
body.light-mode .feature-box, body.light-mode .package-card, body.light-mode .contact-form-wrapper, body.light-mode .home-category-card, body.light-mode .review-item { box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: #F8F9FA; }
body.light-mode .feature-box, body.light-mode .package-card, body.light-mode .home-category-card, body.light-mode .review-item, body.light-mode .contact-form-wrapper { border-color: rgba(201,169,110,0.4); }
body.light-mode .feature-box:hover, body.light-mode .home-category-card:hover, body.light-mode .review-item:hover { border-color: var(--gold); }
body.light-mode .filter-btn { border-color: rgba(0,0,0,0.1); color: var(--text); }
body.light-mode .filter-btn:hover, body.light-mode .filter-btn.active { color: #fff; }
body.light-mode .gallery-overlay { background: rgba(255,255,255,0.4); }
body.light-mode .gallery-overlay i { color: var(--gold); }
body.light-mode .btn-primary { color: #ffffff; }
body.light-mode .btn-primary:hover { color: #ffffff; }
body.light-mode .btn-outline:hover { background: rgba(201, 169, 110, 0.25); }
body.light-mode #viewOffersBtn:hover { background: rgba(201, 169, 110, 0.15); }
body.light-mode .home-category-title { color: var(--cream); }
body.light-mode .home-category-card:hover .home-category-title { color: var(--cream); }
body.light-mode .home-category-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(201,169,110,0.2); }
body.light-mode .swiper-pagination-bullet { background: rgba(201, 169, 110, 0.5) !important; opacity: 1 !important; }
body.light-mode .swiper-pagination-bullet-active { background: var(--gold) !important; }
body.light-mode .main-navigation a { color: #333; }
body.light-mode .main-navigation a:hover, body.light-mode .main-navigation a.active { color: var(--gold); }
body.light-mode .mobile-menu-toggle { color: #333; }
body.light-mode .package-desc { color: rgba(74, 85, 104, 0.7); }
body.light-mode .highlight-list li { color: rgba(74, 85, 104, 0.8); }
body.light-mode .footer-description, body.light-mode .footer-contact-item { color: rgba(74, 85, 104, 0.8); }
body.light-mode .footer-bottom, body.light-mode .footer-copy { color: rgba(74, 85, 104, 0.6); border-top-color: rgba(0,0,0,0.1); }
body.light-mode footer { border-top-color: rgba(201,169,110,0.4); }
body.light-mode .scroll-cue-text { color: var(--gold); }
body.light-mode .section-tint { background: rgba(201,169,110,0.05); }

#theme-toggle:hover { background: var(--gold) !important; color: var(--dark) !important; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--gold-light);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.padding-section { padding: 100px 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.w-100 { width: 100%; }

.scroll-cue-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(201,169,110,0.5);
}
.section-tint {
  background: rgba(201,169,110,0.03);
}

.header-container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--dark);
  background: var(--gold);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}
.btn-outline:hover {
  background: rgba(201, 169, 110, 0.1);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(0, 22, 54, 0.95);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}
.navbar .logo {
  justify-self: start;
}
.navbar .main-navigation {
  justify-self: center;
}
.navbar .header-actions {
  justify-self: end;
}

.site-logo {
  max-height: 60px;
  width: auto;
  display: block;
  transition: background-color 0.3s ease;
  
  /* Mask coloring technique */
  object-position: -9999px -9999px;
  background-color: var(--text);
  -webkit-mask-image: url('../images/logo.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../images/logo.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.site-logo:hover {
  background-color: var(--gold);
}
body.light-mode .site-logo {
  background-color: #333;
}
body.light-mode .site-logo:hover {
  background-color: var(--gold);
}

.main-navigation ul {
  display: flex;
  gap: 45px;
}
.main-navigation a {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-navigation a:hover::after,
.main-navigation a.active::after {
  width: 100%;
}
.main-navigation a:hover {
    color: var(--gold);
}

/* Dropdown Menu Styles */
.main-navigation li.menu-item-has-children {
  position: relative;
}
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(0, 22, 54, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.main-navigation li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation .sub-menu li {
  width: 100%;
}
.main-navigation .sub-menu a {
  display: flex;
  align-items: center;
  height: 34px; /* Forces an exact integer height to fix sub-pixel rendering of the 1px line */
  padding: 0 20px;
  font-size: 11px; /* 0.7rem is often fractional, so an exact pixel size prevents blurring */
}
body.light-mode .main-navigation .sub-menu {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0,0,0,0.05);
}


.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 54, 0.75); /* Dark overlay over image */
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  text-align: center;
}

.hero-sub {
  font-family: var(--font-sub);
  font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  letter-spacing: 0.32em;
  color: var(--gold-light);
  margin-top: 6px;
  text-align: center;
  text-transform: uppercase;
}

.divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections */
.section-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 64px;
}

/* Stats / Features */
.stats-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: var(--text);
}
.feature-box {
  padding: 40px 20px;
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.feature-box:hover {
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.06) !important;
}
.feature-box i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.feature-box h4 { font-family: var(--font-sub); font-size: 1rem; color: var(--cream); letter-spacing: 0.1em; }

/* Pricing Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}
.package-card {
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 52px 40px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.package-card:hover::before { transform: scaleX(1); }
.package-card:hover { transform: translateY(-4px); }

/* Home Category Cards */
.home-category-card {
    background: var(--dark2);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}
.home-category-card:hover {
    border-color: var(--gold);
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.2);
}
.home-category-img {
    height: 280px;
    margin: 10px 10px 0 10px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    position: relative;
    border-bottom: 1px solid rgba(201,169,110,0.1);
}
.home-category-content {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
}
.home-category-accent {
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
    transition: width 0.4s ease;
}
.home-category-card:hover .home-category-accent {
    width: 44px;
}
.home-category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    line-height: 1.3;
}
.home-category-card:hover .home-category-title {
    color: #fff; /* Keep white on hover per screenshot style */
}
.home-category-desc {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
    line-height: 1.5;
}

.package-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.08);
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
  user-select: none;
}
.package-tag {
  font-family: var(--font-sub);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 12px;
}
.package-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.package-desc {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(212,207,200,0.5);
  margin-bottom: 32px;
}
.pkg-section-label {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin: 28px 0 14px;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}
.crew-items { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.crew-chip {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.18);
  color: var(--gold-light);
  padding: 5px 12px;
  border-radius: 2px;
}
.output-list, .highlight-list {
  display: flex; flex-direction: column; gap: 9px;
}
.output-list li, .highlight-list li {
  font-size: 0.8rem; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.04em;
}
.output-list li::before {
  content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.highlight-list li {
  color: rgba(212,207,200,0.7); align-items: flex-start; line-height: 1.55;
}
.highlight-list li::before {
  content: '◆'; font-size: 0.4rem; color: var(--gold); margin-top: 5px;
}

.price-tag {
  margin-top: auto;
  padding-top: 40px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.price-currency {
  font-family: var(--font-sub); font-size: 1.2rem; color: var(--gold); font-weight: 400; opacity: 0.8;
}
.price-amount {
  font-family: var(--font-heading); font-size: 3rem; color: var(--gold); line-height: 1; letter-spacing: -0.01em;
}
.price-suffix { font-family: var(--font-sub); font-size: 0.8rem; color: rgba(201,169,110,0.5); letter-spacing: 0.05em; font-weight: 400; }

/* Offer Badge & Discounted Prices */
.offer-badge {
  position: absolute;
  top: 25px;
  left: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 6px 16px;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.offer-badge i { margin-right: 6px; }

.price-tag.has-offer {
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.original-price-crossed {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  opacity: 0.6;
  position: relative;
}
.original-price-crossed::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 50%;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.8;
}
.original-price-crossed .price-currency { font-size: 0.9rem; }
.original-price-crossed .price-amount { font-size: 1.8rem; }
.original-price-crossed .price-suffix { font-size: 0.7rem; }

.discounted-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.discounted-price .price-currency { font-size: 1.2rem; color: rgba(245,242,235, 0.8); }
.discounted-price .price-amount { font-size: 3.5rem; color: var(--cream); font-weight: 500; }
.discounted-price .price-suffix { font-size: 0.85rem; color: rgba(245,242,235, 0.5); }

.package-footer { margin-top: 30px; }

/* Page Header */
.page-header {
  padding: 200px 0 100px;
}
.page-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold);
}
.page-subtitle {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--text);
  padding: 8px 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}
.gallery-item { overflow: hidden; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-row: span 2; }

.gallery-img-container {
  position: relative; width: 100%; height: 100%; cursor: pointer;
}
.gallery-img-container img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.85);
}
.gallery-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,22,54,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition-smooth);
}
.gallery-overlay i { font-size: 2rem; color: var(--gold); transform: scale(0); transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* Swiper Carousels (Homepage) */
.swiper-pagination-bullet { background: rgba(201,169,110,0.5); }
.swiper-pagination-bullet-active { background: var(--gold); }
.gallery-swiper, .reviews-swiper { padding-bottom: 50px; }
.view-more-slide:hover { background: rgba(201,169,110,0.1) !important; border-color: var(--gold) !important; cursor: pointer; }
.view-more-slide:hover i { background: var(--gold); color: var(--dark); }

.gallery-dynamic-card { height: 350px; display: inline-block; position: relative; border-radius: 4px; overflow: hidden; transition: var(--transition-smooth); }
.gallery-dynamic-card img, .gallery-dynamic-card video { height: 100%; width: auto; max-width: none; display: block; object-fit: contain; transition: transform 0.6s ease; }
.gallery-dynamic-card:hover img, .gallery-dynamic-card:hover video { transform: scale(1.02); }
@media (min-width: 768px) {
    .gallery-dynamic-card { height: 450px; }
}

/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.about-image { display: flex; flex-direction: column; height: 100%; }
.about-image img { height: 100%; width: 100%; object-fit: cover; }
.about-content { display: flex; flex-direction: column; height: 100%; justify-content: space-between; }
.about-content h2 { margin-top: 0; }
.about-content .btn-outline { align-self: flex-start; }
.rounded-image { border: 1px solid var(--gold); padding: 10px; }
.lead-text { font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); font-style: italic; margin-bottom: 20px; line-height: 1.4; }
.bts-grid { column-count: 2; column-gap: 20px; }
.bts-item { break-inside: avoid; margin-bottom: 20px; }
.bts-item img, .bts-item video { width: 100%; display: block; filter: grayscale(100%); transition: var(--transition-smooth); border: 1px solid rgba(201,169,110,0.2); padding: 5px; cursor: pointer; }
.bts-item:hover img, .bts-item:hover video, .bts-item.is-playing video, .bts-item.is-clicked img { filter: grayscale(0%); border-color: var(--gold); }
.bts-video-wrapper { position: relative; width: 100%; height: auto; }
.bts-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--gold); font-size: 3rem; cursor: pointer; opacity: 0.8; transition: var(--transition-smooth); z-index: 2; pointer-events: none; }
.bts-video-wrapper:hover .bts-play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
.bts-mute-btn { position: absolute; bottom: 15px; left: 15px; color: #fff; font-size: 1rem; cursor: pointer; z-index: 2; background: rgba(0,0,0,0.5); border-radius: 50%; width: 35px; height: 35px; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.bts-mute-btn:hover { background: var(--gold); color: var(--dark); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 35px; }
.info-item i { font-size: 1.5rem; color: var(--gold); margin-top: 3px; }
.info-item h4 { font-family: var(--font-sub); font-size: 0.9rem; letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: 5px; line-height: 1.2; }
.info-item p { color: var(--text); margin-bottom: 0; }
.contact-form-wrapper { background: var(--dark2); padding: 40px; border: 1px solid rgba(201,169,110,0.12); }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 15px;
  background: var(--dark);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--cream);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.map-container { height: 450px; width: 100%; filter: grayscale(100%) opacity(0.8); transition: filter 0.5s; }
.map-container:hover { filter: grayscale(0%) opacity(1); }

/* Footer */
footer {
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 60px 24px 30px;
  text-align: center;
  background: var(--dark);
}
.footer-brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-web {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(201,169,110,0.45);
  margin-bottom: 30px;
}
.footer-contacts {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-contact-item {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text);
}
.footer-contact-item span {
  font-family: var(--font-sub);
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.7rem;
}
.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(212,207,200,0.3);
  margin-top: 40px;
  border-top: 1px solid rgba(201,169,110,0.1);
  padding-top: 20px;
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.footer-nav a {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text);
    text-transform: uppercase;
}
.footer-nav a:hover {
    color: var(--gold);
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; z-index: 9999;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0,22,54, 0.95);
  backdrop-filter: blur(5px);
}
.lightbox-content {
  margin: auto; display: block; max-width: 90%; max-height: 90%;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 2px solid var(--gold);
}
.close-lightbox {
  position: absolute; top: 20px; right: 40px; color: var(--gold); font-size: 40px; cursor: pointer;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed; right: 24px; bottom: 24px;
  width: 55px; height: 55px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; z-index: 99;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Reviews Page */
.reviews-masonry {
  column-count: 3;
  column-gap: 20px;
  margin-top: 40px;
}
.review-item {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 24px;
  border-radius: 12px;
  transition: var(--transition-smooth);
}
.review-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.reviewer-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
}
.review-rating {
  color: var(--gold);
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  gap: 3px;
  align-items: center;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  word-wrap: break-word;
  word-break: break-word;
}
.review-video-thumb {
  width: 100%;
  border-radius: 4px;
  margin-top: 15px;
  position: relative;
  display: block;
}
.review-video-thumb img {
  width: 100%;
  border-radius: 4px;
  filter: brightness(0.85);
  transition: var(--transition-smooth);
}
.review-item:hover .review-video-thumb img {
  filter: brightness(1);
}
.review-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 2rem;
  opacity: 0.8;
  transition: var(--transition-smooth);
}
.review-item:hover .review-video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Dynamic Star Rating */
.dynamic-star-rating {
    display: flex;
    gap: 15px;
    font-size: 3rem;
    color: rgba(201,169,110,0.3);
    cursor: pointer;
    margin-bottom: 25px;
    justify-content: center;
}
.dynamic-star-rating i {
    transition: var(--transition-smooth);
}
.dynamic-star-rating:hover i {
    color: rgba(201,169,110,0.3);
}
.dynamic-star-rating i.hovered {
    color: var(--gold) !important;
    transform: scale(1.15);
}
.dynamic-star-rating:not(:hover) i.active {
    color: var(--gold);
}

/* Textarea Wrapper for Attach Video */
.textarea-wrapper {
    position: relative;
    width: 100%;
}
.textarea-wrapper textarea {
    padding-bottom: 55px !important;
}
.attach-video-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.attach-video-btn:hover {
    color: var(--gold-light);
    transform: scale(1.05);
}
.attach-video-btn span {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}
.file-name-display {
    position: absolute;
    bottom: 20px;
    right: 140px;
    font-size: 0.8rem;
    color: var(--gold);
    pointer-events: none;
}

/* Animations added via JS class */
.gs-reveal { visibility: hidden; }

/* Responsive */
@media (max-width: 992px) {
  .hero-brand { font-size: 3.5rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-masonry { column-count: 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .packages-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 15px 0; }
  .navbar { display: flex; justify-content: space-between; align-items: center; }
  .main-navigation {
    position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
    background: var(--dark2);
    display: flex; align-items: center; justify-content: center;
    transition: left 0.4s ease;
    z-index: 999;
  }
  .main-navigation.active { left: 0; }
  .main-navigation ul { flex-direction: column; align-items: center; gap: 30px; }
  .main-navigation a { font-size: 1.2rem; }
  .mobile-menu-toggle { display: block; margin-left: 0 !important; }
  .header-actions .btn-primary { display: none; }
  .theme-toggle-btn { margin-right: 15px !important; }
  
  .hero { padding: 120px 0 80px; }
  .hero-brand { font-size: 2.5rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero-buttons a { width: 100%; text-align: center; }
  
  .section-title { font-size: 2.2rem; }
  .padding-section { padding: 60px 0; }
  
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .package-card { padding: 40px 24px 36px; }
  .masonry-grid { grid-template-columns: 1fr; gap: 10px; }
  .reviews-masonry { column-count: 1; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-row: span 1; }
  
  .footer-contacts { flex-direction: column; gap: 15px; align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
  
  .lightbox-content { max-width: 95%; max-height: 80%; }
  .close-lightbox { top: 10px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-brand { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .packages-grid, .features-grid, .contact-grid { gap: 15px; }
  .btn-primary { padding: 10px 24px; font-size: 0.9rem; }
}

/* --- Footer Packages Modal --- */
.packages-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.packages-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.packages-modal-content {
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.packages-modal-overlay.active .packages-modal-content {
  transform: translateY(0);
}
.packages-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.packages-modal-close:hover {
  transform: rotate(90deg);
}
.packages-modal-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 25px;
}
.packages-modal-subtitle {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 35px;
  line-height: 1.5;
}
.packages-modal-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- Promo Modal --- */
.promo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.promo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.promo-modal-content {
  background: linear-gradient(145deg, rgba(24, 26, 30, 0.98), rgba(12, 14, 16, 0.98));
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 60px 50px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.6s ease 0.1s;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(201, 169, 110, 0.05);
  border-radius: 2px;
}
.promo-modal-overlay.active .promo-modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* --- Countdown Timer --- */
.promo-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-val {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5), -1px 0 1px rgba(201,169,110,0.4);
}
.countdown-label {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-top: 10px;
}
.countdown-sep {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  margin-top: -20px;
}

/* --- Custom Floating Promo Sticker --- */
.sticker {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 176px;
  background: #1a1710;
  border: 1px solid rgba(185,149,82,0.45);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s ease;
  z-index: 9998;
  display: none;
  text-decoration: none;
}
.sticker.active {
  display: block;
}

.sticker::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #b99552 35%, #e2c06a 50%, #b99552 65%, transparent);
}

.sticker:hover { border-color: rgba(185,149,82,0.8); }

.sticker-body {
  padding: 13px 14px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
}

.badge {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 0.5px solid rgba(185,149,82,0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 600;
  color: #c9a84c;
  line-height: 1;
  letter-spacing: -0.01em;
}

.badge-off {
  font-family: var(--font-sub);
  font-size: 7px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-top: 1px;
}

.info { flex: 1; min-width: 0; }

.info-eyebrow {
  font-family: var(--font-sub);
  font-size: 7.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  display: block;
  margin-bottom: 3px;
  white-space: nowrap;
}

.info-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 300;
  color: #e8dcc8;
  line-height: 1.2;
  white-space: nowrap;
}
.info-name em { font-style: italic; color: #c9a84c; }

.countdown-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 5px;
}

.cd-unit { text-align: center; }

.cd-val {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #c9a84c;
  display: block;
  line-height: 1;
}

.cd-lbl {
  font-family: var(--font-sub);
  font-size: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
  display: block;
  margin-top: 1px;
}

.cd-sep {
  font-family: var(--font-heading);
  font-size: 14px;
  color: rgba(201,168,76,0.35);
  padding-bottom: 7px;
  line-height: 1;
}

.close-x {
  position: absolute;
  top: 6px; right: 7px;
  background: none;
  border: none;
  color: rgba(201,168,76,0.3);
  font-size: 10px;
  cursor: pointer;
  font-family: var(--font-sub);
  padding: 2px;
  line-height: 1;
  transition: color 0.2s;
}
.close-x:hover { color: rgba(201,168,76,0.75); }

.pulse-dot {
  position: absolute;
  top: 8px; right: 22px;
  width: 5px; height: 5px;
  background: #c9a84c;
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(0.65); }
}

.sticker-cta {
  height: 0;
  overflow: hidden;
  background: rgba(201,168,76,0.06);
  border-top: 0.5px solid rgba(201,168,76,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.35s cubic-bezier(0.22,1,0.36,1),
              border-top-color 0.35s ease;
}
.sticker:hover .sticker-cta {
  height: 28px;
  border-top-color: rgba(201,168,76,0.2);
}
.sticker-cta span {
  font-family: var(--font-sub);
  font-size: 7.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 0.85;
}

.sticker-enter {
  animation: in 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes in {
  from { opacity:0; transform:translateY(10px) scale(0.96); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.3s, transform 0.3s;
}

.restore {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 36px; height: 36px;
  background: #1a1710;
  border: 1px solid rgba(201,168,76,0.4);
  color: #c9a84c;
  font-size: 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  z-index: 9998;
}
.restore:hover { border-color: rgba(201,168,76,0.8); }
.restore.show { display: flex; }

/* --- Contact Page Specific Refactoring --- */
.contact-actions-wrapper {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
}
.btn-full-width {
  width: 100%;
  justify-content: center;
}
.founder-modal-overlay {
  z-index: 10000;
}
.founder-modal-content {
  max-width: 500px;
  padding: 40px;
  text-align: left;
}
.founder-modal-title {
  margin-bottom: 15px;
  text-align: center;
}
.founder-modal-desc {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 25px;
  font-size: 0.9rem;
}
.founder-form-input {
  width: 100% !important;
  padding: 12px !important;
  margin-bottom: 15px;
  border: 1px solid #ccc !important;
  border-radius: 5px;
  font-family: inherit;
}
.founder-form-msg {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  display: none;
}
