/* ==========================================================================
   MKS PHOTOGRAPHY - LUXURY 3D PORTFOLIO STYLESHEET
   Author: Durga Prasad (MKS Photography)
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --bg-main: #070709;
  --bg-secondary: #0e0e13;
  --bg-card: rgba(20, 20, 28, 0.7);
  --bg-glass: rgba(16, 16, 24, 0.65);
  --bg-glass-heavy: rgba(10, 10, 14, 0.92);

  --accent-color: #e6af45;
  --accent-light: #f7cb73;
  --accent-glow: rgba(230, 175, 69, 0.28);
  --accent-gradient: linear-gradient(135deg, #f7cb73 0%, #e6af45 50%, #c48b26 100%);
  --cyan-accent: #38ef7d;

  --text-primary: #ffffff;
  --text-secondary: #a3a3b5;
  --text-muted: #6f6f82;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(230, 175, 69, 0.35);

  --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-3d: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 0 25px rgba(230, 175, 69, 0.25);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-3d: 0.15s ease-out;

  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Ambient Glows */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.15;
}

.ambient-top-left {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
}

.ambient-bottom-right {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
}

/* Typography & General Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #0c0b08;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 175, 69, 0.45);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(230, 175, 69, 0.1);
  border: 1px solid rgba(230, 175, 69, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}


/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.navbar.scrolled {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1010;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(230, 175, 69, 0.2), rgba(230, 175, 69, 0.05));
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.25rem;
  transition: transform var(--transition-smooth);
}

.brand-logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.08);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--accent-light);
  font-weight: 600;
  margin-top: 3px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1010;
}

/* Audio SFX Toggle */
.sound-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.sound-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-light);
  border-color: var(--border-accent);
}

.sound-toggle-btn.muted {
  color: var(--text-muted);
}

.sound-tooltip {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  font-size: 0.72rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sound-toggle-btn:hover .sound-tooltip {
  opacity: 1;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Mobile Hamburger */
.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1020;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================================================
   HERO SECTION & 3D WEBGL CANVAS
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--navbar-height) + 40px) 24px 60px 24px;
  overflow: hidden;
}

/* Three.js canvas container */
.three-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

/* Camera Lens Viewfinder Overlay */
.viewfinder-overlay {
  position: absolute;
  top: calc(var(--navbar-height) + 20px);
  left: 20px;
  right: 20px;
  bottom: 30px;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.viewfinder-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(255, 255, 255, 0.25);
  border-style: solid;
}

.viewfinder-corner.top-left {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.viewfinder-corner.top-right {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.viewfinder-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.viewfinder-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

.viewfinder-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(230, 175, 69, 0.35);
  border-radius: 50%;
}

.viewfinder-center::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 300;
  opacity: 0.6;
}

.viewfinder-hud {
  position: absolute;
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  gap: 20px;
}

.top-hud {
  top: 14px;
  left: 16px;
}

.bottom-hud {
  bottom: 14px;
  right: 16px;
  color: var(--accent-light);
}

/* Hero Main Layout Container */
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  pointer-events: none; /* Let Three.js canvas receive mouse moves in open areas */
}

.hero-container > * {
  pointer-events: auto; /* Re-enable pointer events for interactive content */
}

/* Left Column: Hero Text Content */
.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 20, 28, 0.85);
  border: 1px solid var(--border-accent);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent-light);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 22px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 580px;
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Metrics */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(14, 14, 20, 0.82);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.2;
}

.metric-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-top: 2px;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

/* Right Column: Hero Portrait Side Spotlight Card */
.hero-portrait-column {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-portrait-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 540px;
  border-radius: var(--radius-lg);
  perspective: 1000px;
  user-select: none;
}

/* Atmospheric Glow behind Portrait */
.portrait-glow-ring {
  position: absolute;
  inset: -14px;
  background: radial-gradient(circle at 65% 35%, rgba(230, 175, 69, 0.38), rgba(99, 102, 241, 0.22), transparent 70%);
  filter: blur(28px);
  border-radius: calc(var(--radius-lg) + 12px);
  z-index: 0;
  opacity: 0.7;
  transition: opacity var(--transition-smooth);
}

.hero-portrait-card:hover .portrait-glow-ring {
  opacity: 1;
  filter: blur(34px);
}

/* 3D Tilt Card Inner */
.hero-portrait-card .card-tilt-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(230, 175, 69, 0.45);
  background: var(--bg-card);
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.9), 0 0 35px rgba(230, 175, 69, 0.2);
  transform-style: preserve-3d;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  z-index: 1;
}

.hero-portrait-card:hover .card-tilt-inner {
  border-color: rgba(230, 175, 69, 0.85);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.95), 0 0 45px rgba(230, 175, 69, 0.35);
}

/* Image Container */
.hero-img-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Card Tilt Glare Effect */
.hero-portrait-card .card-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
  transition: background 0.15s ease-out;
}

/* Viewfinder overlay on image */
.portrait-viewfinder-grid {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  z-index: 3;
}

.vf-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(247, 203, 115, 0.7);
  border-style: solid;
}

.vf-corner.vf-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.vf-corner.vf-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.vf-corner.vf-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.vf-corner.vf-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.vf-crosshair {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border: 1px dashed rgba(247, 203, 115, 0.5);
  border-radius: 50%;
  opacity: 0.65;
}

/* Top Status Pill */
.portrait-badge-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(10, 10, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.online-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseAnimation 2s infinite;
}

/* Bottom Glassmorphism Footer Bar */
.portrait-glass-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 7, 10, 0.88) 30%, rgba(7, 7, 10, 0.98) 100%);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.artist-title {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 2px;
}

.artist-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.1;
}

.artist-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.artist-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.artist-tags i {
  color: var(--accent-color);
  font-size: 0.75rem;
}

/* Interactive Camera Shutter Button */
.shutter-snap-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: none;
  color: #0c0b08;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--accent-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.shutter-snap-btn:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 6px 24px rgba(230, 175, 69, 0.65);
}

.shutter-snap-btn:active {
  transform: scale(0.92);
}

/* Shutter Flash Visual Animation */
.shutter-flash-fx {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 15;
  transition: opacity 0.05s ease;
}

.shutter-flash-fx.flashing {
  opacity: 0.95;
  transition: none;
}

/* Floating Micro Badges with Parallax */
.hero-floating-pill {
  position: absolute;
  background: rgba(16, 16, 24, 0.92);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(16px);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-gold);
  z-index: 5;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-floating-pill:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 30px rgba(230, 175, 69, 0.4);
}

.pill-experience {
  top: 60px;
  left: -28px;
  animation: floatSlow1 4.5s ease-in-out infinite;
}

.pill-shoots {
  bottom: 80px;
  right: -24px;
  animation: floatSlow2 5s ease-in-out infinite;
}

@keyframes floatSlow1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatSlow2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(230, 175, 69, 0.16);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

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

.pill-text strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.1;
}

.pill-text span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--accent-light);
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 3px;
  height: 7px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}


/* ==========================================================================
   3D SPOTLIGHT CAROUSEL SECTION
   ========================================================================== */
.showcase-section {
  padding: 100px 24px 120px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-main) 0%, #0d0d12 50%, var(--bg-main) 100%);
}

.carousel-3d-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  perspective: 1200px;
}

.carousel-3d-stage {
  position: relative;
  width: 100%;
  height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.carousel-3d-card {
  position: absolute;
  width: 390px;
  height: 535px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  cursor: pointer;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.65s ease, filter 0.65s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #070709;
}

.carousel-3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease;
  display: block;
}

.carousel-3d-card:hover img {
  transform: scale(1.05);
}

/* Glass overlay on cards */
.card-glass-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(7, 7, 9, 0.94) 0%, rgba(7, 7, 9, 0.55) 60%, transparent 100%);
  backdrop-filter: blur(8px);
  color: #fff;
  transform: translateY(0);
  transition: transform var(--transition-smooth);
}

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 6px;
}

.card-glass-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.card-glass-overlay p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

/* 3D Perspective States */
.carousel-3d-card.active {
  transform: translate3d(0, 0, 110px) scale(1.03);
  opacity: 1;
  z-index: 10;
  border-color: var(--border-accent);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px var(--accent-glow);
}

.carousel-3d-card.prev {
  transform: translate3d(-310px, 0, -80px) rotateY(26deg) scale(0.86);
  opacity: 0.65;
  filter: brightness(0.65);
  z-index: 5;
}

.carousel-3d-card.next {
  transform: translate3d(310px, 0, -80px) rotateY(-26deg) scale(0.86);
  opacity: 0.65;
  filter: brightness(0.65);
  z-index: 5;
}

.carousel-3d-card.hidden-left {
  transform: translate3d(-490px, 0, -180px) scale(0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.carousel-3d-card.hidden-right {
  transform: translate3d(490px, 0, -180px) scale(0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-glow);
}


/* ==========================================================================
   PORTFOLIO 3D TILT GALLERY SECTION
   ========================================================================== */
.portfolio-section {
  padding: 100px 24px;
  max-width: 1360px;
  margin: 0 auto;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--accent-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-item {
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

/* 3D Tilt Card Component */
.card-3d-tilt {
  position: relative;
  border-radius: var(--radius-md);
  perspective: 1000px;
  transform-style: preserve-3d;
  height: 420px;
}

.card-tilt-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-3d), box-shadow var(--transition-3d), border-color var(--transition-smooth);
  transform-style: preserve-3d;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.card-tilt-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 0.6s ease;
}

.card-3d-tilt:hover .card-tilt-inner {
  border-color: var(--border-accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 25px var(--accent-glow);
}

.card-3d-tilt:hover img {
  transform: scale(1.06) translateZ(20px);
}

/* Dynamic Glare Reflection Effect */
.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
  z-index: 5;
}

.card-3d-tilt:hover .card-glare {
  opacity: 1;
}

/* Card Content Overlay */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(8, 8, 11, 0.95) 0%, rgba(8, 8, 11, 0.6) 60%, transparent 100%);
  backdrop-filter: blur(6px);
  z-index: 4;
  transform: translateZ(30px);
  transition: transform 0.3s ease;
}

.card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(230, 175, 69, 0.15);
  border: 1px solid rgba(230, 175, 69, 0.3);
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.card-meta i {
  color: var(--accent-light);
  margin-right: 4px;
}

/* Expand View Button */
.expand-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-8px) translateZ(40px);
  transition: all var(--transition-fast);
  cursor: pointer;
  z-index: 6;
}

.card-3d-tilt:hover .expand-btn {
  opacity: 1;
  transform: translateY(0) translateZ(40px);
}

.expand-btn:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
}


/* ==========================================================================
   FULLSCREEN LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 6, 0.95);
  backdrop-filter: blur(25px);
}

.lightbox-dialog {
  position: relative;
  z-index: 10;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2020;
}

.lightbox-close:hover {
  background: var(--accent-color);
  color: #000;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20, 20, 28, 0.85);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2020;
}

.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

.lightbox-nav:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-media-container {
  position: relative;
  max-width: 82vw;
  max-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media-container img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s ease;
}

.lightbox-spinner {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.lightbox-info {
  margin-top: 18px;
  text-align: center;
  background: rgba(20, 20, 28, 0.7);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.lightbox-header h3 {
  font-size: 1.1rem;
}

.lightbox-counter {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--accent-light);
}

.lightbox-specs {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-left: 1px solid var(--border-subtle);
  padding-left: 20px;
}

.lightbox-specs i {
  color: var(--accent-light);
  margin-right: 4px;
}


/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--bg-main) 0%, #0d0d14 50%, var(--bg-main) 100%);
  position: relative;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  height: 540px;
}

.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  backdrop-filter: blur(16px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-gold);
  transform: translateZ(50px);
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 600;
  margin-top: 4px;
}

.about-content-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lead-text {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 18px;
}

.about-desc {
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px 0;
  width: 100%;
}

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.highlight-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-accent);
  transform: translateX(6px);
}

.highlight-box i {
  font-size: 1.3rem;
  color: var(--accent-light);
  margin-top: 3px;
}

.highlight-box h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.highlight-box p {
  font-size: 0.88rem;
  margin: 0;
}

.about-action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ==========================================================================
   MKS CREATIVE TEAM SECTION
   ========================================================================== */
.team-section {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Main Hero Showcase Card */
.team-hero-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  perspective: 1200px;
}

.team-glow-aura {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 30%, rgba(230, 175, 69, 0.25), rgba(56, 189, 248, 0.18), transparent 70%);
  filter: blur(35px);
  border-radius: calc(var(--radius-lg) + 16px);
  z-index: 0;
  opacity: 0.85;
  transition: opacity var(--transition-smooth);
}

.team-hero-card:hover .team-glow-aura {
  opacity: 1;
}

.team-photo-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: var(--shadow-3d);
}

.team-showcase-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-hero-card:hover .team-showcase-img {
  transform: scale(1.025);
}

.team-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 9, 0.35) 0%,
    transparent 35%,
    rgba(7, 7, 9, 0.5) 60%,
    rgba(7, 7, 9, 0.95) 100%
  );
  pointer-events: none;
}

/* Top Floating Badges */
.team-top-badges {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 5;
  flex-wrap: wrap;
}

.team-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 16, 0.85);
  border: 1px solid rgba(230, 175, 69, 0.4);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.team-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.team-phone-pill:hover {
  background: var(--accent-color);
  color: #070709;
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
}

/* Bottom Glass Bar */
.team-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: rgba(10, 10, 16, 0.88);
  border-top: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  z-index: 5;
  flex-wrap: wrap;
}

.team-subtext {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 6px;
}

.team-headline {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-subdesc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.5;
}

.team-stats-strip {
  display: flex;
  gap: 28px;
  align-items: center;
}

.team-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
}

.team-stat-item .stat-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Team Roles & Specialties Grid */
.team-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-role-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.team-role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.team-role-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md), 0 0 25px var(--accent-glow);
}

.team-role-card:hover::before {
  opacity: 1;
}

.team-role-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(230, 175, 69, 0.1);
  border: 1px solid rgba(230, 175, 69, 0.25);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: transform var(--transition-smooth);
}

.team-role-card:hover .team-role-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-gradient);
  color: #070709;
}

.role-badge {
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-role-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.role-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}


/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-main) 0%, #0d0d12 50%, var(--bg-main) 100%);
}

.testimonials-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
}

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.quote-text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: #d1d1dc;
  margin-bottom: 28px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7cb73, #c48b26);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.client-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(14px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(28, 26, 20, 0.85) 0%, rgba(18, 17, 14, 0.95) 100%);
  border: 2px solid var(--accent-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--accent-glow);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.pkg-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pkg-desc {
  font-size: 0.88rem;
  margin-bottom: 24px;
  min-height: 44px;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-light);
}

.amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.duration {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #d1d1dc;
}

.pkg-features i {
  color: var(--accent-light);
  margin-top: 4px;
  font-size: 0.85rem;
}


/* ==========================================================================
   BOOKING & CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 24px 140px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  backdrop-filter: blur(16px);
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.info-intro,
.form-intro {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

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

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(230, 175, 69, 0.1);
  border: 1px solid rgba(230, 175, 69, 0.25);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.info-val {
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  display: block;
}

.info-link:hover {
  color: var(--accent-light);
}

.info-subval {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* WhatsApp Card */
.whatsapp-card {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.whatsapp-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.whatsapp-icon {
  font-size: 2rem;
  color: #25D366;
}

.whatsapp-content h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.whatsapp-content p {
  font-size: 0.8rem;
  color: #c9e8d4;
}

.social-links-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 4px 15px var(--accent-glow);
}

/* Booking Form Elements */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #e2e2ea;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.input-with-icon input,
.input-with-icon select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: rgba(10, 10, 14, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-group textarea {
  padding-left: 16px;
  resize: vertical;
  min-height: 100px;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(230, 175, 69, 0.2);
  background: rgba(14, 14, 20, 0.95);
}

.input-with-icon input:focus + i,
.input-with-icon select:focus ~ i {
  color: var(--accent-light);
}

.input-with-icon select option {
  background: #121218;
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 10px;
}

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 30px 24px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links-group h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links-group a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-3px);
}

.footer-copy-text {
  font-size: 0.85rem;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.back-to-top:hover {
  color: var(--accent-light);
}


/* ==========================================================================
   RESPONSIVE DESIGN (Laptops, Tablets & Mobiles)
   ========================================================================== */

/* Laptops & Tablets (< 1100px) */
@media screen and (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text-content {
    align-items: center;
    text-align: center;
  }

  .hero-text-content .hero-title,
  .hero-text-content .hero-description {
    text-align: center;
  }

  .hero-text-content .hero-buttons {
    justify-content: center;
  }

  .hero-portrait-card {
    max-width: 380px;
    height: 480px;
    margin: 0 auto;
  }

  .pill-experience {
    left: -12px;
  }

  .pill-shoots {
    right: -12px;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

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

  .about-image-wrapper {
    height: 420px;
    max-width: 600px;
    margin: 0 auto;
  }

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

/* Tablets (< 900px) */
@media screen and (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  .carousel-3d-stage {
    height: 520px;
  }

  .carousel-3d-card {
    width: 320px;
    height: 450px;
  }

  .carousel-3d-card.prev {
    transform: translate3d(-200px, 0, -80px) rotateY(20deg) scale(0.85);
  }

  .carousel-3d-card.next {
    transform: translate3d(200px, 0, -80px) rotateY(-20deg) scale(0.85);
  }
}

/* Mobile Devices (< 768px) */
@media screen and (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }

  /* Hamburger & Mobile Menu Drawer */
  .hamburger-btn {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background: #0d0d14;
    border-left: 1px solid var(--border-subtle);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 36px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1005;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
  }

  /* Hero adjustments */
  .hero-section {
    padding-top: calc(var(--navbar-height) + 20px);
    padding-bottom: 50px;
  }

  .hero-container {
    gap: 36px;
  }

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

  .hero-description {
    font-size: 0.96rem;
    margin-bottom: 24px;
  }

  .hero-buttons {
    margin-bottom: 30px;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 20px;
  }

  .metric-divider {
    width: 80%;
    height: 1px;
  }

  .hero-portrait-card {
    max-width: 310px;
    height: 410px;
  }

  .hero-floating-pill {
    padding: 7px 12px;
    gap: 8px;
  }

  .pill-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .pill-text strong {
    font-size: 0.82rem;
  }

  .pill-text span {
    font-size: 0.65rem;
  }

  .pill-experience {
    top: 15px;
    left: -8px;
  }

  .pill-shoots {
    bottom: 25px;
    right: -8px;
  }

  .viewfinder-overlay {
    top: calc(var(--navbar-height) + 10px);
    left: 10px;
    right: 10px;
    bottom: 20px;
  }

  /* Carousel Mobile */
  .carousel-3d-stage {
    height: 460px;
  }

  .carousel-3d-card {
    width: min(84vw, 300px);
    height: 410px;
  }

  .carousel-3d-card.prev {
    transform: translate3d(-85px, 0, -80px) scale(0.82);
    opacity: 0.35;
  }

  .carousel-3d-card.next {
    transform: translate3d(85px, 0, -80px) scale(0.82);
    opacity: 0.35;
  }

  /* Gallery Single Column */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card-3d-tilt {
    height: 380px;
  }

  .team-roles-grid {
    grid-template-columns: 1fr;
  }

  .team-showcase-img {
    max-height: 400px;
  }

  .team-top-badges {
    top: 14px;
    left: 14px;
    right: 14px;
    gap: 8px;
  }

  .team-badge-pill,
  .team-phone-pill {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .team-caption-bar {
    position: relative;
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .team-stats-strip {
    width: 100%;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .contact-info-card,
  .contact-form-card {
    padding: 28px 20px;
  }

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

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 16px; right: 16px; width: 42px; height: 42px; }
  .lightbox-info {
    flex-direction: column;
    gap: 8px;
    border-radius: var(--radius-md);
  }
  .lightbox-specs {
    border-left: none;
    padding-left: 0;
  }
}
