/* EDIT SHUSHIL — Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@100;300;400;600&display=swap');

:root {
  --primary: #804A8A;
  --primary-glow: rgba(128, 74, 138, 0.4);
  --primary-dark: #5e3666;
  --accent: #F8D299;
  --accent-glow: rgba(248, 210, 153, 0.3);
  --accent-dark: #e6b96a;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --black: #050505;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(128, 74, 138, 0.2);
  --text: #f0f0f0;
  --text-muted: rgba(240,240,240,0.6);
  --radius: 12px;
  --transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

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

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

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* Video BG */
.video-bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.video-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(128, 74, 138, 0.4) 0%, rgba(5,5,5,0.7) 50%, rgba(0,0,0,0.9) 100%);
}

/* Glass card */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

/* Navbar */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 48px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,5,5,0.55); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(128, 74, 138, 0.15); transition: var(--transition);
}
nav.scrolled { padding: 12px 48px; background: rgba(5,5,5,0.92); }
.nav-logo a {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.08em; text-decoration: none; cursor: pointer;
}
.nav-logo span { font-weight: 300; font-style: italic; color: var(--white); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase; transition: var(--transition);
  position: relative; cursor: pointer;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hamburger Menu */
.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-ham span { display: block; width: 26px; height: 2px; background: var(--accent); transition: var(--transition); }

/* Mobile Menu - White Background */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; inset: 0; top: 60px;
    background: #ffffff; backdrop-filter: none; align-items: center; justify-content: center;
    gap: 32px; z-index: 999; padding: 40px 20px;
  }
  .nav-links.open a { color: #111111; font-size: 1rem; font-weight: 500; }
  .nav-links.open a:hover, .nav-links.open a.active { color: var(--primary); }
  .nav-links.open a::after { background: var(--primary); }
  .nav-ham { display: flex; }
}

/* Section styles */
.section-label {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 32px;
  font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; border-radius: 4px; cursor: pointer;
  transition: var(--transition); text-decoration: none; border: none;
}
.btn-electric {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white); font-weight: 600; box-shadow: 0 4px 24px rgba(128, 74, 138, 0.35);
}
.btn-electric:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 36px rgba(128, 74, 138, 0.55); transform: translateY(-2px);
}
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); }

/* Landing Page */
.landing-body { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.landing-container { width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.landing-hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 40px 24px; position: relative;
}
.landing-content { max-width: 900px; margin: 0 auto; }
.landing-badge {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 30px; animation: fadeUp 1s ease 0.2s both;
}
.landing-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}
.landing-line1 { display: block; color: var(--white); animation: fadeUp 1s ease 0.4s both; }
.landing-line2 { display: block; color: var(--accent); font-style: italic; font-size: 1.2em; animation: fadeUp 1s ease 0.6s both; }
.landing-line3 { display: block; color: var(--white); animation: fadeUp 1s ease 0.8s both; }
.landing-divider {
  width: 100px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 30px auto; animation: fadeUp 1s ease 1s both;
}
.landing-subtitle {
  font-size: 0.9rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px; animation: fadeUp 1s ease 1.1s both;
}
.landing-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic;
  color: var(--text-muted); margin-bottom: 40px; animation: fadeUp 1s ease 1.2s both;
}
.landing-cta {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px; animation: fadeUp 1s ease 1.3s both;
}
.landing-stats {
  display: flex; gap: 60px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease 1.4s both;
}
.landing-stat { text-align: center; }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--accent); }
.stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  text-align: center; animation: fadeUp 1s ease 1.6s both;
}
.scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); display: block; margin-bottom: 10px;
}
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto; animation: scrollPulse 2s ease infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Page Content */
.page-content { padding-top: 80px; min-height: 100vh; }

/* HOME PAGE */
.hero {
  min-height: 90vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 40px 24px;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300; line-height: 0.95; color: var(--white); margin-bottom: 12px;
}
.hero-title .electric { color: var(--accent); font-style: italic; }
.hero-subtitle {
  font-size: clamp(0.8rem, 2vw, 1rem); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Slideshow */
.slideshow-section { padding: 80px 48px; }
.slideshow-wrapper {
  position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 16/7;
  border: 1px solid var(--glass-border);
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background: var(--dark3); }
.slide.active { opacity: 1; }
.slide img, .slide video { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.slide-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--accent); transform: scale(1.3); }
.slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border); color: var(--accent); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.5rem; transition: var(--transition); z-index: 10;
  backdrop-filter: blur(8px);
}
.slide-nav:hover { background: rgba(128, 74, 138, 0.3); }
.slide-nav.prev { left: 16px; }
.slide-nav.next { right: 16px; }

/* Services Grid - No Emojis, Clean Design */
.services-strip { padding: 80px 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  display: block; padding: 40px 28px; text-align: center; text-decoration: none;
  transition: var(--transition); background: linear-gradient(135deg, rgba(128, 74, 138, 0.03), rgba(0,0,0,0.2));
  border: 1px solid rgba(128, 74, 138, 0.15); border-radius: 12px; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px); border-color: var(--accent);
  background: linear-gradient(135deg, rgba(128, 74, 138, 0.08), rgba(0,0,0,0.3));
  box-shadow: 0 20px 40px rgba(128, 74, 138, 0.1);
}
.service-card:hover::before { opacity: 1; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400;
  color: var(--accent); margin-bottom: 12px; letter-spacing: 0.05em;
}
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* CTA Section */
.cta-section { padding: 60px 48px; text-align: center; }
.cta-box { max-width: 700px; margin: 0 auto; padding: 48px 40px; }
.cta-box p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-strip { padding: 60px 20px; }
}

/* Shoot pills */
.shoot-types { display: flex; flex-wrap: wrap; gap: 10px; }
.shoot-pill {
  padding: 8px 18px; border-radius: 50px; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; border: 1px solid rgba(128, 74, 138, 0.3);
  background: rgba(128, 74, 138, 0.05); color: var(--text-muted); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.shoot-pill:hover, .shoot-pill.selected {
  background: rgba(128, 74, 138, 0.18); border-color: var(--accent); color: var(--accent);
}

/* Input fields */
.input-group { position: relative; margin-bottom: 22px; }
.input-group label {
  display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.input-group input, .input-group textarea, .input-group select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(128, 74, 138, 0.2);
  border-radius: 6px; padding: 13px 16px; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem; color: var(--text); letter-spacing: 0.05em; outline: none;
  transition: var(--transition);
}
.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
  border-color: var(--accent); background: rgba(128, 74, 138, 0.06);
  box-shadow: 0 0 0 3px rgba(128, 74, 138, 0.1);
}
.input-group input::placeholder, .input-group textarea::placeholder { color: rgba(240,240,240,0.3); }
.input-group textarea { resize: vertical; min-height: 100px; }

/* Footer */
footer {
  background: rgba(5,5,5,0.95); border-top: 1px solid rgba(128, 74, 138, 0.15);
  padding: 40px 48px 24px; text-align: center; margin-top: 60px;
}
.footer-logo a {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--accent);
  margin-bottom: 16px; text-decoration: none;
}
.footer-logo span { font-style: italic; font-weight: 300; color: var(--white); }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; transition: var(--transition); cursor: pointer;
}
.footer-links a:hover { color: var(--accent); }
.copyright { font-size: 0.68rem; color: rgba(240,240,240,0.3); letter-spacing: 0.12em; margin-top: 16px; }

/* Toast */
.toast {
  position: fixed; bottom: 32px; right: 32px; padding: 14px 24px;
  background: linear-gradient(135deg, rgba(128, 74, 138, 0.15), rgba(248, 210, 153, 0.08));
  border: 1px solid var(--accent); border-radius: 8px; color: var(--accent);
  font-size: 0.8rem; letter-spacing: 0.1em; z-index: 9999; backdrop-filter: blur(12px);
  transform: translateY(100px); opacity: 0; transition: all 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PORTFOLIO */
.portfolio-header { text-align: center; padding: 60px 48px 40px; }
.portfolio-desc { font-size: 0.88rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 20px; }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; border: 1px solid rgba(128, 74, 138, 0.3); background: transparent;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--accent); color: var(--black); border-color: var(--accent); }
.portfolio-section { padding: 40px 48px; }
.portfolio-section h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300;
  color: var(--accent); margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.portfolio-section h2::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(248, 210, 153, 0.4), transparent);
}

/* Video Grid - Thumbnails Visible */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-bottom: 48px; }
.video-card {
  position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/10;
  background: var(--dark3); border: 2px solid var(--glass-border); cursor: pointer;
  transition: var(--transition); box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.video-card:hover { transform: scale(1.02); border-color: var(--accent); box-shadow: 0 12px 30px rgba(128, 74, 138, 0.2); }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.video-card .play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); transition: var(--transition);
}
.video-card:hover .play-overlay { background: rgba(0,0,0,0.5); }
.play-btn {
  width: 60px; height: 60px; border-radius: 50%; background: rgba(248, 210, 153, 0.85);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  color: var(--black); transition: var(--transition); box-shadow: 0 4px 15px rgba(248, 210, 153, 0.3);
}
.video-card:hover .play-btn { transform: scale(1.1); background: var(--accent); }
.video-label {
  position: absolute; bottom: 12px; left: 12px; font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  padding: 6px 14px; border-radius: 4px; border-left: 3px solid var(--accent);
  color: var(--white); font-weight: 400;
}

/* Image Grid */
.image-grid { columns: 3; column-gap: 20px; margin-bottom: 48px; }
.image-card {
  break-inside: avoid; margin-bottom: 20px; border-radius: 12px; overflow: hidden;
  border: 2px solid var(--glass-border); cursor: pointer; transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.image-card:hover { transform: scale(1.02); border-color: var(--accent); box-shadow: 0 12px 30px rgba(128, 74, 138, 0.2); }
.image-card img { width: 100%; display: block; background: var(--dark3); }
.portfolio-cta { text-align: center; padding: 20px 48px 60px; }

@media (max-width: 992px) { .image-grid { columns: 2; } }
@media (max-width: 576px) {
  .image-grid { columns: 1; }
  .video-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center; backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; border-radius: 12px; overflow: hidden; }
.lightbox-content img, .lightbox-content video { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
  background: rgba(128, 74, 138, 0.15); border: 1px solid var(--accent); color: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.4rem; transition: var(--transition);
}
.lightbox-close:hover { background: var(--accent); color: var(--black); }

/* ABOUT */
.about-hero { padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual-inner {
  aspect-ratio: 4/5; background: var(--dark3); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--glass-border);
}
.about-visual-inner img, .about-visual-inner video { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px;
  border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  box-shadow: 0 10px 30px rgba(128, 74, 138, 0.3);
}
.about-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--white); line-height: 1; }
.about-badge .label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }
.about-text p { font-size: 1rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 20px; }
.about-quote { color: var(--accent); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; }
.about-actions { margin-top: 28px; display: flex; gap: 12px; }
.about-stats-wrapper { padding: 0 48px 60px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.stat { text-align: center; padding: 30px 20px; }
.stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--accent); }
.stat .label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

@media (max-width: 768px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* CONTACT */
.contact-header { padding: 40px 48px 20px; text-align: center; }
.contact-header p { font-size: 0.88rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.contact-wrapper { padding: 40px 48px 80px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 28px; }
.contact-info h3 em { color: var(--accent); font-style: italic; }
.contact-item {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding: 18px;
  border-radius: 10px; cursor: pointer; transition: var(--transition);
}
.contact-item:hover { background: var(--glass); border-color: var(--accent); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(128, 74, 138, 0.1);
  border: 1px solid rgba(128, 74, 138, 0.25); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem;
}
.contact-item-text .clabel { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.contact-item-text .cval { font-size: 0.9rem; word-break: break-all; color: var(--white); }
.call-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  background: linear-gradient(135deg, #5e3666, #804A8A); border-radius: 50px; color: white;
  font-size: 0.85rem; letter-spacing: 0.12em; text-decoration: none; margin-top: 24px;
  transition: var(--transition);
}
.call-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(128, 74, 138, 0.2); }
.whatsapp-btn { background: linear-gradient(135deg, #075e54, #25d366); margin-top: 10px; }
.ig-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); border-radius: 50px;
  color: white; font-size: 0.85rem; letter-spacing: 0.12em; text-decoration: none;
  margin-top: 12px; transition: var(--transition);
}
.ig-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(252,176,69,0.3); }
.quick-message { padding: 24px; border-radius: 12px; margin-top: 28px; }
.quick-message h4 { font-family: 'Cormorant Garamond', serif; margin-bottom: 16px; color: var(--accent); }
.booking-form { padding: 36px; }
.booking-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin-bottom: 8px; }
.booking-form h3 em { color: var(--accent); font-style: italic; }
.booking-form p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.shoot-select-row { margin-bottom: 22px; }
.shoot-select-row label { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.custom-shoot-input { margin-top: 10px; display: none; }
.custom-shoot-input.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.location-input-wrap { position: relative; }
.location-input-wrap .loc-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--accent); }
.submit-row { margin-top: 24px; }
.submit-row .btn { width: 100%; }
#form-status { margin-top: 16px; font-size: 0.85rem; text-align: center; color: var(--accent); }

@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-wrapper { max-width: 850px; margin: 0 auto; padding: 40px 48px 80px; }
.faq-header { text-align: center; margin-bottom: 48px; padding-top: 40px; }
.faq-list { margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid rgba(128, 74, 138, 0.15); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; padding: 22px 0; cursor: pointer;
  font-size: 1rem; color: var(--text); gap: 20px; font-weight: 400;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(128, 74, 138, 0.3);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  transition: transform 0.3s; font-size: 1.2rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 22px; font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); }
.faq-cta { text-align: center; margin-top: 48px; }
.faq-cta .btn-outline { margin-left: 12px; }

/* Particles */
.glass-particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 74, 138, 0.15), transparent);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* Video rotation fix for landscape videos */
.video-card video.landscape-fix {
  object-fit: cover !important;
  transform: rotate(0deg) !important;
  width: 100% !important;
  height: 100% !important;
}

/* Ensure video cards display properly */
.video-card {
  background: #000;
  position: relative;
}

.video-card video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Smooth transitions for filters */
.portfolio-item {
  transition: opacity 0.3s ease;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}