/* ============================================
   SOBEIT EVENTS & EXPERIENCES - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #c9a96e;
  --primary-dark: #b08d4f;
  --primary-light: #e0cc9e;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gray: #888888;
  --gray-light: #cccccc;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

body.custom-cursor,
body.custom-cursor a,
body.custom-cursor button,
body.custom-cursor input,
body.custom-cursor textarea,
body.custom-cursor select {
  cursor: none;
}

::selection {
  background: var(--primary);
  color: var(--dark);
}

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

ul, ol { list-style: none; }

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

button, input, textarea, select {
  font-family: inherit;
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition), height 0.3s var(--transition),
              background 0.3s var(--transition);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--transition), height 0.4s var(--transition),
              border-color 0.3s var(--transition), background 0.3s var(--transition);
}

.cursor-dot.hovering {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 110, 0.15);
  mix-blend-mode: difference;
}

.cursor-ring.hovering {
  width: 70px;
  height: 70px;
  border-color: var(--primary);
}

.cursor-dot.clicking {
  width: 4px;
  height: 4px;
}

.cursor-ring.clicking {
  width: 30px;
  height: 30px;
}

/* ---------- Cursor Dots (Tantraa-style) ---------- */
/* ---------- Cursor Dots Reveal (Tantraa-style) ---------- */
.cursor-dots-reveal {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(201, 169, 110, 0.45) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0;
  -webkit-mask-image: radial-gradient(
    circle 200px at var(--dot-x, -200px) var(--dot-y, -200px),
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.3) 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle 200px at var(--dot-x, -200px) var(--dot-y, -200px),
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.3) 40%,
    transparent 100%
  );
  transition: opacity 0.6s ease;
}

.cursor-dots-reveal.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .cursor-dots-reveal { display: none; }
}

/* ---------- Smooth Scroll Container ---------- */
.smooth-scroll {
  will-change: transform;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s var(--transition), visibility 0.8s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark-3);
  margin-top: 30px;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 2px;
  animation: loadBar 2s var(--transition) forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-logo img {
  height: 60px;
  width: auto;
  transition: height 0.5s var(--transition);
}

.nav.scrolled .nav-logo img {
  height: 45px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.5s var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  background: var(--primary);
  padding: 12px 28px;
  border: 1px solid var(--primary);
  transition: all 0.4s var(--transition);
}

.nav-cta:hover {
  background: transparent;
  color: var(--primary);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  z-index: 10001;
}

.nav-hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--transition);
  transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--transition);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu a:hover {
  color: var(--primary);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  animation: videoFadeIn 2s 2.5s ease forwards;
}

@keyframes videoFadeIn {
  to { opacity: 1; }
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.5) 70%, rgba(10,10,10,0.9) 100%),
    linear-gradient(135deg, rgba(10,10,10,0.6) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--primary);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 2.2s var(--transition) forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 2.4s var(--transition) forwards;
}

.hero-title .highlight {
  color: var(--primary);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gray-light);
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto 45px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 2.6s var(--transition) forwards;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 2.8s var(--transition) forwards;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s 3s var(--transition) forwards;
}

.hero-scroll span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--dark-4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 36px;
  border: 1px solid;
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

.btn-primary::before {
  background: var(--dark);
}

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

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline::before {
  background: var(--primary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--dark);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ---------- Section Styles ---------- */
.section {
  padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 60px);
  position: relative;
}

.section-dark { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-dark-3 { background: var(--dark-3); }
.section-light { background: var(--off-white); color: var(--dark); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 6vw, 80px);
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
}

.section-light .section-desc {
  color: #666;
}

/* ---------- Reveal Animations (Tantraa-style) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Stats / Counter ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.stat-item {
  text-align: center;
  padding: 60px 30px;
  border-right: 1px solid rgba(201, 169, 110, 0.15);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-3);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--transition);
}

.service-card:hover .service-card-bg {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: background 0.5s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  transition: all 0.4s var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--primary);
  color: var(--dark);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s var(--transition);
}

.service-card:hover p {
  max-height: 100px;
  opacity: 1;
}

.service-card-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all 0.5s var(--transition);
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-border {
  position: absolute;
  inset: 20px;
  border: 1px solid var(--primary);
  pointer-events: none;
}

.about-grid-reverse .about-image { order: 2; }
.about-grid-reverse .about-content { order: 1; }

.about-content .section-tag { text-align: left; }

.about-content .section-title {
  text-align: left;
  margin-bottom: 25px;
}

.about-text {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--white);
}

.about-feature-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Process / What We Do ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.process-card {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  transition: all 0.5s var(--transition);
}

.process-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
}

.process-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 60px);
  font-weight: 700;
  color: rgba(201, 169, 110, 0.1);
  position: absolute;
  top: 15px;
  left: 25px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}

.process-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
}

/* ---------- Clients / Brand Marquee ---------- */
.marquee-wrapper {
  overflow: hidden;
  padding: 60px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.marquee-item {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--gray);
  white-space: nowrap;
  letter-spacing: 1px;
  transition: color 0.3s;
  opacity: 0.6;
}

.marquee-item:hover {
  color: var(--primary);
  opacity: 1;
}

.marquee-separator {
  color: var(--primary);
  opacity: 0.3;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Marquee Logo Items ---------- */
.marquee-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 0 15px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.marquee-logo-item:hover {
  opacity: 1;
}

.marquee-logo-item img {
  height: 40px;
  width: auto;
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: filter 0.4s, opacity 0.4s;
  flex-shrink: 0;
}

.marquee-logo-item:hover img {
  filter: none;
  opacity: 1;
}

.marquee-logo-item span {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--gray);
  letter-spacing: 1px;
  transition: color 0.3s;
}

.marquee-logo-item:hover span {
  color: var(--primary);
}

/* ---------- Clients Logo Grid ---------- */
.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 15px;
  border: 1px solid rgba(201, 169, 110, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s var(--transition);
}

.client-logo-item:hover {
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.03);
  transform: translateY(-5px);
}

.client-logo-item img {
  height: 40px;
  width: auto;
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.8);
  opacity: 0.6;
  transition: all 0.4s var(--transition);
}

.client-logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.client-logo-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s;
}

.client-logo-item:hover span {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .clients-logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .clients-logo-grid { grid-template-columns: repeat(3, 1fr); padding: 0 20px; }
}

@media (max-width: 480px) {
  .clients-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-item {
  display: none;
  animation: fadeIn 0.6s var(--transition);
}

.testimonial-item.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 50px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 30px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray);
  margin-top: 5px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gray);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 24px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gray);
  transition: all 0.4s var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(201, 169, 110, 0.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.gallery-item-overlay svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: none;
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all 0.5s var(--transition);
}

.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--dark-3);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 5px;
}

.team-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-detail h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: var(--primary);
}

.contact-detail p, .contact-detail a {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.6;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  position: relative;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

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

.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input[type="date"] {
  color-scheme: dark;
}

.form-group input[type="date"]:invalid {
  color: var(--gray);
}

.form-submit {
  align-self: flex-start;
}

.form-message {
  padding: 15px 20px;
  border: 1px solid;
  font-size: 14px;
  display: none;
}

.form-message.success {
  border-color: #4caf50;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.05);
  display: block;
}

.form-message.error {
  border-color: #f44336;
  color: #f44336;
  background: rgba(244, 67, 54, 0.05);
  display: block;
}

/* ---------- Map ---------- */
.map-container {
  width: 100%;
  height: clamp(250px, 40vh, 400px);
  filter: grayscale(1) contrast(1.1) brightness(0.7);
  transition: filter 0.5s;
}

.map-container:hover {
  filter: grayscale(0.5) contrast(1) brightness(0.9);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.cta-desc {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px) clamp(30px, 4vw, 60px);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(201, 169, 110, 0.05);
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 25px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  padding: 6px 0;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 60px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  font-size: 13px;
  color: var(--gray);
}

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

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ---------- Page Banner ---------- */
.page-banner {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 700;
  margin-bottom: 15px;
}

.page-banner .breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
}

.page-banner .breadcrumb a {
  color: var(--primary);
}

/* ---------- Wedding Process Steps ---------- */
.wedding-steps {
  counter-reset: step;
}

.wedding-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.wedding-step:nth-child(even) {
  direction: rtl;
}

.wedding-step:nth-child(even) > * {
  direction: ltr;
}

.wedding-step-number {
  font-family: var(--font-heading);
  font-size: clamp(50px, 10vw, 80px);
  color: rgba(201, 169, 110, 0.1);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

.wedding-step h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 15px;
}

.wedding-step p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.9;
}

.wedding-step-image {
  aspect-ratio: 4/3;
  background: var(--dark-3);
  overflow: hidden;
  position: relative;
}

.wedding-step-image::after {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

/* ---------- Wedding Services List ---------- */
.wedding-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.wedding-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  font-size: 14px;
  transition: all 0.3s var(--transition);
}

.wedding-service-item:hover {
  border-color: var(--primary);
  background: rgba(201, 169, 110, 0.03);
}

.wedding-service-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 25px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  font-family: var(--font-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.4s var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition);
}

.faq-answer-inner {
  padding-bottom: 25px;
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ---------- Magnetic Effect Container ---------- */
.magnetic {
  display: inline-block;
  transition: transform 0.3s var(--transition);
}

/* ---------- Horizontal Scroll Text ---------- */
.text-scroll {
  overflow: hidden;
  white-space: nowrap;
  padding: 40px 0;
}

.text-scroll-inner {
  display: inline-flex;
  animation: textScroll 20s linear infinite;
}

.text-scroll-item {
  font-family: var(--font-heading);
  font-size: clamp(50px, 8vw, 100px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.2);
  padding: 0 40px;
}

@keyframes textScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Privacy / Terms Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 40px 0 15px;
  color: var(--primary);
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.9;
  list-style: disc;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 100001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

/* ---------- Page Transition ---------- */
body.page-leaving {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 1, 1);
}

/* ---------- Floating Background Shapes ---------- */
.floating-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: floatShape 15s ease-in-out infinite alternate;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(15px, -15px) scale(1.05); }
}

/* ---------- Stagger Children Animation ---------- */
/* stagger-children handled via JS IntersectionObserver */
.stagger-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ---------- Line-by-Line Reveal ---------- */
.line-wrap {
  display: block;
  overflow: hidden;
}

.line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-inner.revealed {
  transform: translateY(0);
}

/* ---------- Word-by-Word Reveal (Tantraa-style) ---------- */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 4px;
}

.word-inner {
  display: inline-block;
  transform: translateY(110%) rotateX(-80deg);
  transform-origin: bottom center;
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.word-inner.revealed {
  transform: translateY(0) rotateX(0);
  opacity: 1;
}

/* ---------- Clip-Path Image Reveal ---------- */
/* clip-reveal direction and timing handled via JS */
.clip-reveal {
  will-change: clip-path;
}

/* ---------- Image Scale Reveal ---------- */
.img-scale-reveal {
  overflow: hidden;
}

/* ---------- Grayscale to Color Image Hover ---------- */
.img-hover-color {
  overflow: hidden;
}

.img-hover-color img {
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Zoom on Scroll ---------- */
.zoom-scroll {
  overflow: hidden;
}

.zoom-scroll img {
  transition: transform 0.3s ease-out;
}

/* ---------- Enhanced Card Hover 3D ---------- */
.service-card,
.process-card,
.team-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-card:hover,
.process-card:hover,
.team-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 169, 110, 0.08);
}

/* ---------- Nav Link Entrance ---------- */
.nav-link {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Touch Device Helpers ---------- */
@media (hover: none) and (pointer: coarse) {
  /* Show service card descriptions always on touch */
  .service-card p {
    max-height: 100px;
    opacity: 0.8;
  }

  /* Show gallery overlay icon always on touch */
  .gallery-item-overlay {
    opacity: 0.6;
    background: rgba(10, 10, 10, 0.4);
  }

  /* Disable hover transforms on touch */
  .service-card:hover .service-card-bg { transform: none; }
  .process-card:hover { transform: none; }
  .team-card:hover { transform: none; }
  .client-logo-item:hover { transform: none; }
  .footer-col a:hover { transform: none; }

  /* Increase touch targets */
  .testimonial-dot {
    width: 14px;
    height: 14px;
    padding: 0;
  }

  .filter-btn {
    padding: 12px 20px;
    min-height: 44px;
  }

  .faq-question {
    min-height: 48px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  .nav-hamburger {
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .lightbox-close {
    width: 56px;
    height: 56px;
    font-size: 28px;
    top: 20px;
    right: 20px;
  }
}

/* ---------- Responsive ---------- */

/* ---- Large tablets / small desktops ---- */
@media (max-width: 1200px) {
  .section { padding: 100px 40px; }
  .footer-main { padding: 60px 40px 40px; }
  .footer-bottom { padding: 20px 40px; }
  .nav { padding: 15px 30px; }
  .nav.scrolled { padding: 10px 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid-3col { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Tablets ---- */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid-reverse .about-image { order: 0; }
  .about-grid-reverse .about-content { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .wedding-step { grid-template-columns: 1fr; gap: 40px; }
  .wedding-step:nth-child(even) { direction: ltr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid-3col { grid-template-columns: repeat(2, 1fr); }
  .page-banner { height: 40vh; min-height: 300px; }
  .page-banner h1 { font-size: clamp(32px, 5vw, 56px); }
  .hero-content { padding: 0 30px; }
  .cta-section { padding: 100px 40px; }
  .about-grid .about-image { max-width: 500px; margin: 0 auto; }
  .wedding-step-image { min-height: 250px; }

  /* Ensure about content text aligns properly on single-column */
  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }
  .about-text { text-align: center; }
  .about-features { justify-items: center; }
  .about-content .btn { display: inline-flex; margin: 0 auto; }
  .about-content { display: flex; flex-direction: column; align-items: center; }
}

/* ---- Mobile landscape / large phones ---- */
@media (max-width: 768px) {
  .section { padding: 70px 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 35px 15px; }
  .stat-number { font-size: clamp(32px, 8vw, 50px); }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card { aspect-ratio: 16/9; }
  .process-grid,
  .process-grid-3col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-card { padding: 30px 20px; }
  .team-avatar { width: 90px; height: 90px; font-size: 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px 30px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }
  .hero { min-height: 600px; min-height: 100svh; }
  .hero-content { padding: 0 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 70px 20px; }
  .cta-title { font-size: clamp(28px, 6vw, 48px); }
  .nav {
    padding: 12px 20px;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
  }
  .nav.scrolled {
    padding: 10px 20px;
    padding-top: calc(10px + env(safe-area-inset-top, 0px));
  }
  .nav-logo img { height: 45px; }
  .nav.scrolled .nav-logo img { height: 38px; }
  .cursor-dot, .cursor-ring { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .about-grid { gap: 30px; }
  .about-text { font-size: 15px; margin-bottom: 20px; }
  .page-banner { height: 35vh; min-height: 260px; }
  .page-banner h1 { font-size: clamp(28px, 7vw, 46px); }

  /* Mobile menu - safe area + better spacing */
  .mobile-menu {
    padding: env(safe-area-inset-top, 20px) 20px env(safe-area-inset-bottom, 20px);
    gap: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu a { font-size: clamp(24px, 6vw, 36px); }

  .wedding-step { padding: 50px 0; gap: 30px; }
  .wedding-step h3 { font-size: clamp(22px, 5vw, 32px); }
  .wedding-step p { font-size: 14px; }
  .wedding-step-image { min-height: 200px; }
  .wedding-services-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
  .wedding-service-item { padding: 12px 14px; font-size: 13px; min-height: 44px; }
  .contact-info h3 { font-size: clamp(22px, 5vw, 28px); }
  .contact-detail { gap: 12px; margin-bottom: 20px; }
  .contact-detail-icon { width: 44px; height: 44px; }
  .faq-question { font-size: 16px; padding: 20px 0; min-height: 48px; }
  .faq-answer-inner { font-size: 14px; }
  .process-card { padding: 40px 25px; }
  .btn { padding: 14px 28px; font-size: 11px; min-height: 48px; }
  .marquee-logo-item img { height: 32px; max-height: 32px; max-width: 100px; }
  .marquee-logo-item span { font-size: 15px; }
  .text-scroll-item { font-size: clamp(36px, 8vw, 80px); padding: 0 20px; }
  .legal-content { padding: 60px 20px; }
  .legal-content h2 { font-size: 22px; margin: 30px 0 12px; }

  /* Form inputs larger touch targets */
  .form-group input, .form-group textarea, .form-group select {
    padding: 18px 20px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* Gallery filters scroll horizontally */
  .gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 20px 15px;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }

  /* WhatsApp button safe area */
  .whatsapp-float {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 20px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }

  /* Lightbox mobile improvements */
  .lightbox img {
    max-width: 95vw;
    max-height: 85vh;
  }
  .lightbox-close {
    top: calc(15px + env(safe-area-inset-top, 0px));
    right: 15px;
  }

  /* Testimonials better mobile */
  .testimonial-text {
    font-size: clamp(18px, 4vw, 24px);
    padding: 0 10px;
  }
  .testimonial-nav {
    gap: 20px;
  }
  .testimonial-dot {
    width: 12px;
    height: 12px;
  }

  /* Scroll indicator hide on mobile */
  .hero-scroll { display: none; }

  /* Contact detail text wrapping */
  .contact-detail p, .contact-detail a {
    font-size: 14px;
    word-break: break-word;
  }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201, 169, 110, 0.15); padding: 30px 15px; }
  .stat-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .team-card { padding: 25px 15px; }
  .team-avatar { width: 70px; height: 70px; font-size: 22px; }
  .team-name { font-size: 16px; }
  .team-role { font-size: 10px; letter-spacing: 1.5px; }
  .hero { min-height: 550px; min-height: 100svh; }
  .hero-tag { font-size: 10px; letter-spacing: 3px; margin-bottom: 20px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 30px; }
  .page-banner { height: 30vh; min-height: 220px; }
  .section-tag { font-size: 10px; letter-spacing: 3px; }
  .cta-section { padding: 60px 16px; }
  .cta-desc { font-size: 15px; }
  .footer-main { padding: 35px 16px 25px; }
  .footer-brand p { font-size: 13px; }
  .footer-col a { font-size: 13px; padding: 8px 0; }
  .footer-bottom { font-size: 12px; padding: 16px; }
  .about-image-border { inset: 10px; }
  .wedding-step { padding: 40px 0; }
  .wedding-services-grid { grid-template-columns: 1fr 1fr; }
  .contact-detail p, .contact-detail a { font-size: 14px; }
  .services-grid .service-card { aspect-ratio: 4/3; }
  .service-card-overlay { padding: 25px; }
  .service-card h3 { font-size: 18px; }
  .service-card-icon { width: 40px; height: 40px; }
  .marquee-logo-item { padding: 0 10px; }
  .marquee-logo-item img { height: 28px; max-height: 28px; max-width: 80px; }
  .marquee-logo-item span { font-size: 13px; }
  .process-card { padding: 35px 20px; }
  .process-card h3 { font-size: 18px; }
  .process-card p { font-size: 13px; }

  /* Service card arrow always visible on small screens */
  .service-card-arrow {
    opacity: 0.5;
    transform: translate(0, 0);
  }

  /* Better CTA button width */
  .cta-section .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Contact form submit full width */
  .form-submit {
    align-self: stretch;
  }
  .form-submit .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer social centered */
  .footer-brand { text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-col { text-align: center; }
}

/* ---- Very small phones (320px) ---- */
@media (max-width: 360px) {
  .section { padding: 50px 14px; }
  .nav { padding: 10px 14px; }
  .nav.scrolled { padding: 8px 14px; }
  .nav-logo img { height: 38px; }
  .hero-content { padding: 0 14px; }
  .btn { padding: 12px 22px; font-size: 10px; letter-spacing: 1.5px; }
  .team-grid { grid-template-columns: 1fr; }
  .wedding-services-grid { grid-template-columns: 1fr; }
  .page-banner { min-height: 200px; }
  .footer-main { padding: 30px 14px 20px; }
  .mobile-menu a { font-size: 22px; }
  .mobile-menu { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---- Landscape phones ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-content { padding: 0 40px; }
  .hero-title { font-size: clamp(28px, 5vw, 50px); }
  .hero-subtitle { font-size: 14px; margin-bottom: 20px; }
  .hero-tag { margin-bottom: 15px; }
  .hero-btns { flex-direction: row; }
  .hero-btns .btn { width: auto; }
  .hero-scroll { display: none; }
  .page-banner { min-height: 200px; height: 40vh; }
  .mobile-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .mobile-menu a { font-size: 20px; }
}

/* ---- Print ---- */
@media print {
  .nav, .mobile-menu, .whatsapp-float, .cursor-dot, .cursor-ring,
  .cursor-dots-reveal, .preloader, .scroll-progress, .hero-particles { display: none !important; }
  body { background: white; color: black; }
  .section-dark, .section-dark-2, .section-dark-3 { background: white; color: black; }
  .section-tag, .stat-number, .team-role { color: #666; }
  a { color: #333; }
}
