/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #c5a059;
  --primary-dark: #9b7d44;
  --primary-light: #e4d5b7;
  --bg-creamy: #fdfaf6;
  --bg-beige: #faf7f2;
  --white: #ffffff;
  --black: #1a1a1a;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(197, 160, 89, 0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-jt {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo-sub {
  color: var(--text-light);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('Assets/Ofc.jpeg') no-repeat center center/cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 900px;
  color: var(--white);
}

.hero-logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.lockup-jt {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--white);
  font-weight: 300;
}

.lockup-script {
  font-family: 'Satisfy', cursive;
  font-size: 3.5rem;
  color: var(--primary-light);
  margin: -10px 0 10px;
  font-weight: 400;
  letter-spacing: 1px;
}

.lockup-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: center;
}

.lockup-divider::before,
.lockup-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--white);
  opacity: 0.6;
}

.lockup-divider span {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-services-list {
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-black-hero {
  background: #1a1a1a;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-black-hero:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Update btn-primary for hero context if needed */
.hero .btn-primary {
  border-radius: 8px;
  background: linear-gradient(135deg, #c5a059 0%, #9b7d44 100%);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.35);
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  padding: 16px 36px;
  border-radius: 40px;
  border: 2px solid var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  margin: 0 auto;
  animation: scrollPulse 1.8s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--primary);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-track .dot {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-beige);
}

.section-book {
  background: var(--white);
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  width: 100%;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--primary-light);
  max-width: 100px;
}

.section-divider span {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 400;
  text-transform: capitalize;
}

/* ===== SERVICES SHOWCASE (MINIMAL) ===== */
.service-showcase {
  background: var(--white);
  padding: 100px 0;
}

.services-minimal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-minimal-card {
  text-align: center;
}

.service-img-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--white);
  transition: var(--transition);
}

.service-minimal-card:hover .service-img-wrap {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.25);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-minimal-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 500;
}

.btn-minimal {
  display: inline-block;
  padding: 8px 24px;
  background: var(--bg-beige);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--primary-light);
  border-radius: 4px;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-minimal:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== OFFER SECTION (COMPACT) ===== */
.offer-section {
  background: var(--bg-creamy);
  padding: 40px 0;
  text-align: center;
}

.offer-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--bg-beige);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--primary-light);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.offer-compact>span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.offer-main {
  display: flex;
  align-items: center;
  gap: 24px;
}

.offer-main p {
  font-size: 1rem;
  color: var(--text-light);
}

.offer-main strong {
  color: var(--black);
  padding: 4px 12px;
  background: var(--white);
  border: 1px dashed var(--primary);
  border-radius: 4px;
  margin-left: 8px;
}

.offer-main h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--black);
  margin: 0;
}

@media (max-width: 768px) {
  .offer-main {
    flex-direction: column;
    gap: 8px;
  }
}

.btn-black {
  display: inline-block;
  padding: 12px 40px;
  background: #222;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-black:hover {
  background: var(--black);
  transform: translateY(-2px);
}



/* ===== BRANDS LITE ===== */
.brands-lite {
  background: var(--bg-creamy);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--primary-light);
  border-bottom: 1px solid var(--primary-light);
}

.brands-logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.brands-logo-grid img {
  max-width: 140px;
  max-height: 40px;
  width: auto;
  height: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: var(--transition);
  mix-blend-mode: multiply;
}

.brands-logo-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .services-minimal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 576px) {
  .services-minimal-grid {
    grid-template-columns: 1fr;
  }

  .offer-value {
    font-size: 2.5rem;
  }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(255, 133, 162, 0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: var(--white);
}

.service-card.featured::before {
  display: none;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-beige);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotate(10deg);
  background: var(--primary);
  color: var(--white);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text);
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card ul {
  margin-bottom: 32px;
}

.service-card ul li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(197, 160, 89, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card ul li::before {
  content: '🌸';
  font-size: 0.8rem;
}

.service-card.featured ul li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card.featured ul li::before {
  content: '✨';
}

.service-cta {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
  transition: var(--transition);
}

.service-card.featured .service-cta {
  color: var(--white);
  border-color: var(--white);
}

.service-cta:hover {
  letter-spacing: 2px;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.service-card.featured .service-cta:hover {
  color: var(--bg-beige);
  border-color: var(--bg-beige);
}

/* ===== PRODUCTS / TABS ===== */
.products-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 56px;
  background: var(--white);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--primary-light);
  box-shadow: var(--shadow);
}

.tab-btn {
  padding: 12px 36px;
  border-radius: 40px;
  border: none;
  background: none;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

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

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.brand-card {
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.brand-card:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.brand-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-beige);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.brand-card h4 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.brand-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--primary-light);
  transform: rotate(-3deg);
  transition: var(--transition);
}

.about-image-container:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  font-weight: 600;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.feature i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ===== BOOKING ===== */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.book-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item>i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 24px;
  flex-shrink: 0;
}

.info-item h4 {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.info-item p,
.info-item a {
  color: var(--text-light);
  font-size: 1rem;
}

.info-item a:hover {
  color: var(--primary);
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background: #25D366;
  color: var(--white) !important;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.wa-btn i {
  font-size: 1.3rem;
}

.wa-btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.book-form {
  background: var(--bg-beige);
  border: 1px solid var(--primary-light);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--primary-light);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.form-group select option {
  background: var(--white);
  color: var(--text);
}

.full-width {
  width: 100%;
  justify-content: center;
  border-radius: 40px;
}

/* ===== MAP ===== */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-beige);
  border-top: 1px solid var(--primary-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand .logo-jt {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--primary);
  display: block;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-name {
  color: var(--primary-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 8px 0 4px;
}

.footer-tagline {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--primary-light);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: var(--white);
}

.footer-links h5,
.footer-contact h5 {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 6px 0;
  transition: var(--transition);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding: 20px 0;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.wa-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.wa-tooltip {
  position: absolute;
  right: 80px;
  background: var(--text);
  color: var(--white);
  font-size: 0.85rem;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-weight: 600;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(-10px);
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 2px solid var(--primary-light);
  border-radius: 16px;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.back-top.visible {
  display: flex;
}

.back-top:hover {
  transform: translateY(-5px);
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 110px;
  right: 32px;
  z-index: 2000;
  background: var(--white);
  color: var(--text);
  padding: 16px 28px;
  border-radius: 16px;
  border-left: 5px solid var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-hover);
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== FLOATING GALLERY ===== */
.gallery-section {
  padding: 120px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02) translateY(-10px);
  box-shadow: var(--shadow-hover);
  z-index: 10;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(197, 160, 89, 0.4), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Masonry-like variations */
.h-2 {
  grid-row: span 2;
}

.w-2 {
  grid-column: span 2;
}

.gallery-item:nth-child(n) {
  animation: none;
}

@keyframes float-slow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(n) {
    animation: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .w-2 {
    grid-column: span 1;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-shape {
    width: 320px;
    height: 320px;
  }

  .book-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

@media (max-width: 768px) {
  .logo-img {
    height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    gap: 28px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-bottom: 1px solid var(--primary-light);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    color: var(--text);
  }

  .hamburger {
    display: flex;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .about-stats {
    gap: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUCT SERVICE MAPPING ===== */
.mapping-section {
  background: var(--white);
  padding: 100px 0;
}

.mapping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.mapping-card {
  background: var(--bg-creamy);
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--primary-light);
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mapping-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

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

.mapping-content {
  padding: 30px;
}

.mapping-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

.mapping-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.mapping-header i {
  font-size: 2rem;
  color: var(--primary);
}

.mapping-header h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--black);
}

.mapping-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.mapping-card strong {
  color: var(--primary-dark);
}

@media (max-width: 992px) {
  .mapping-grid {
    grid-template-columns: 1fr;
  }
}