/* ==========================================================================
   PICSPOP LUXURY DESIGN SYSTEM & STYLING TOKENS
   Theme: Deep Luxury Black, Champagne Gold, Pearl White, & Soft Velvet Pink
   ========================================================================== */

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

:root {
  /* Colors */
  --bg-dark: #070709;
  --bg-surface: #0E0E13;
  --bg-card: rgba(25, 25, 33, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.04);
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-gradient: linear-gradient(135deg, #FFF6CD 0%, #D4AF37 50%, #996515 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  --pink-accent: #FFB6C1;
  --pink-deep: #E89BB6;
  --pink-glow: rgba(255, 182, 193, 0.25);
  
  --text-main: #FFFFFF;
  --text-muted: #A0A0B0;
  --text-dark: #0A0A0C;
  
  /* Borders & Shadows */
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-gold: 1px solid rgba(212, 175, 55, 0.4);
  --border-pink: 1px solid rgba(255, 182, 193, 0.3);
  
  --shadow-sm: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 15px 40px -10px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 0 30px -5px rgba(212, 175, 55, 0.3);
  --shadow-ring: 0 0 40px rgba(255, 182, 193, 0.4), inset 0 0 30px rgba(212, 175, 55, 0.3);

  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --font-editorial: 'Cormorant Garamond', serif;
  
  /* Radii & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  scroll-behavior: auto;
  overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0A0A0D;
}
::-webkit-scrollbar-thumb {
  background: #2D2D3B;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* Typography Utilities */
.font-serif {
  font-family: var(--font-editorial);
}
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-pink {
  color: var(--pink-accent);
}
.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-subtitle::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.section-title {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #FFF;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  line-height: 1.7;
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   BUTTONS & CTA STYLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  z-index: 1;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #050507;
  box-shadow: 0 6px 25px -4px rgba(212, 175, 55, 0.45);
  font-weight: 700;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #FFFFFF 0%, #F3E5AB 50%, #D4AF37 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-fast);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px -3px rgba(212, 175, 55, 0.7);
}
.btn-primary:hover::after {
  opacity: 1;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
  backdrop-filter: blur(10px);
}
.btn-whatsapp:hover {
  background: #25D366;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
  background: var(--bg-glass);
  color: #FFF;
  border: var(--border-glass);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  border-color: var(--pink-accent);
  background: rgba(255, 182, 193, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px var(--pink-glow);
}

/* ==========================================================================
   LOADING SCREEN & MOUSE AURA
   ========================================================================== */
#loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #040406;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}
.loader-logo {
  font-family: var(--font-editorial);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.loader-ring {
  width: 80px; height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid var(--gold-primary);
  border-right: 2px solid var(--pink-accent);
  border-radius: 50%;
  animation: spin 1s infinite cubic-bezier(0.5, 0.1, 0.5, 0.9);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#mouse-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, rgba(255, 182, 193, 0.04) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: transform 0.15s ease-out;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 85px;
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}
.navbar.scrolled {
  height: 70px;
  background: rgba(10, 10, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-glass);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.8);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: var(--transition-smooth);
}
.nav-logo-img:hover {
  transform: scale(1.06);
}
.footer-logo-img {
  width: 260px;
  max-width: 100%;
  height: auto;
  mix-blend-mode: screen;
  transition: var(--transition-smooth);
}
.footer-logo-img:hover {
  transform: translateY(-3px) scale(1.03);
}
.logo-text {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFF;
}
.logo-text span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
}
.nav-item a:hover, .nav-item a.active {
  color: #FFF;
}
.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
}
.nav-item a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #FFF;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(255, 182, 193, 0.05) 35%, transparent 70%);
}
.hero-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  background-image: radial-gradient(rgba(212, 175, 55, 0.4) 1px, transparent 1px), radial-gradient(rgba(255, 182, 193, 0.3) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 25px 25px;
  opacity: 0.35;
  animation: particleFloat 25s linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-50px) rotate(3deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
}
.hero-content {
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
}
.hero-title-box {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero-animated-title {
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FFF;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* Trust Badge */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.5rem;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  max-width: fit-content;
  backdrop-filter: blur(12px);
}
.trust-stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.trust-text {
  font-size: 0.9rem;
  color: #E0E0E0;
  font-weight: 500;
}
.trust-text span {
  color: var(--gold-primary);
  font-weight: 600;
}

/* 3D Rotating Booth & Floating Memories */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.kiosk-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  transform-style: preserve-3d;
  animation: boothRotate 14s ease-in-out infinite alternate;
}
@keyframes boothRotate {
  0% { transform: rotateY(-8deg) rotateX(4deg) translateY(0px); }
  50% { transform: rotateY(12deg) rotateX(-2deg) translateY(-15px); }
  100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0px); }
}
.ring-glow {
  position: absolute;
  top: 10%; left: 10%;
  width: 80%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.35) 0%, rgba(212, 175, 55, 0.25) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: ringPulse 4s infinite ease-in-out;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
.kiosk-image {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.9), 0 0 0 1px rgba(212,175,55,0.3);
  overflow: hidden;
}

/* Floating Photo Strips & Polaroids */
.floating-item {
  position: absolute;
  background: #FFF;
  padding: 8px 8px 24px 8px;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.65), 0 0 15px rgba(212,175,55,0.2);
  z-index: 3;
  transition: var(--transition-smooth);
}
.floating-item img {
  border-radius: 2px;
  width: 140px;
  height: 140px;
  object-fit: cover;
}
.polaroid-caption {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.85rem;
  color: #111;
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
}
.float-1 {
  top: 8%; left: -8%;
  transform: rotate(-12deg);
  animation: floatAnim1 6s ease-in-out infinite;
}
.float-2 {
  bottom: 12%; right: -6%;
  transform: rotate(10deg);
  animation: floatAnim2 7s ease-in-out infinite;
}
.float-3 {
  bottom: -5%; left: 15%;
  transform: rotate(-6deg);
  animation: floatAnim3 8s ease-in-out infinite;
}
@keyframes floatAnim1 {
  0%, 100% { transform: translateY(0px) rotate(-12deg); }
  50% { transform: translateY(-14px) rotate(-8deg); }
}
@keyframes floatAnim2 {
  0%, 100% { transform: translateY(0px) rotate(10deg); }
  50% { transform: translateY(-18px) rotate(15deg); }
}
@keyframes floatAnim3 {
  0%, 100% { transform: translateY(0px) rotate(-6deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

/* ==========================================================================
   ABOUT SECTION ("Who We Are")
   ========================================================================== */
.about {
  background: var(--bg-surface);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 5rem;
}
.about-image-stack {
  position: relative;
}
.about-main-img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}
.about-stats-card {
  position: absolute;
  bottom: -25px; right: -25px;
  background: rgba(14, 14, 20, 0.9);
  border: var(--border-gold);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat-num {
  font-family: var(--font-editorial);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.highlight-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-text h4 {
  font-size: 1.05rem;
  color: #FFF;
  margin-bottom: 4px;
}
.highlight-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HOW IT WORKS (Animated Timeline)
   ========================================================================== */
.how-it-works {
  position: relative;
}
.timeline-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.timeline-container::before {
  content: '';
  position: absolute;
  top: 45px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,175,55,0.1), var(--gold-primary), var(--pink-accent), rgba(255,182,193,0.1));
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.8rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px -10px rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.step-number {
  width: 65px; height: 65px;
  border-radius: 50%;
  background: #111116;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
}
.step-card:hover .step-number {
  background: var(--gold-gradient);
  color: #050507;
  transform: scale(1.1) rotate(10deg);
}
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.8rem;
}
.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WHY CHOOSE PICSPop (13 Feature Cards Grid)
   ========================================================================== */
.why-choose {
  background: radial-gradient(circle at 15% 50%, rgba(255, 182, 193, 0.06) 0%, transparent 60%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}
.feature-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.feature-card:hover {
  border-color: rgba(255, 182, 193, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px -10px var(--pink-glow);
  background: rgba(255, 255, 255, 0.07);
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-icon-wrapper {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}
.feature-card:hover .feature-icon-wrapper {
  background: var(--pink-accent);
  color: #050507;
  border-color: var(--pink-accent);
  transform: scale(1.1);
}
.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   EVENTS SECTION (15 Animated Event Cards + Lightbox Modal)
   ========================================================================== */
.events-section {
  background: var(--bg-surface);
  border-top: var(--border-glass);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.event-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  cursor: default;
  border: var(--border-glass);
  transition: var(--transition-smooth);
}
.event-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.event-card:hover .event-card-img {
  transform: scale(1.1);
}
.event-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(7, 7, 10, 0.95) 15%, rgba(7, 7, 10, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: var(--transition-fast);
}
.event-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px -5px rgba(212, 175, 55, 0.35);
  transform: translateY(-5px);
}
.event-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.event-title {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.3rem;
}

/* Event Gallery Popup Modal */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(4, 4, 7, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-backdrop.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: #111117;
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.modal-close:hover {
  background: var(--pink-accent);
  color: #000;
}
.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.modal-gallery-img {
  border-radius: var(--radius-sm);
  border: var(--border-glass);
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}
.modal-gallery-img:hover {
  transform: scale(1.03);
  border-color: var(--gold-primary);
}

/* ==========================================================================
   PHOTO & VIDEO GALLERIES (Pinterest Masonry + Reels)
   ========================================================================== */
.photo-gallery {
  padding-bottom: 4rem;
}
.masonry-grid {
  column-count: 4;
  column-gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 1100px) { .masonry-grid { column-count: 3; } }
@media (max-width: 768px) { .masonry-grid { column-count: 2; } }
@media (max-width: 480px) { .masonry-grid { column-count: 1; } }

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border: var(--border-glass);
  transition: var(--transition-smooth);
}
.masonry-item img {
  width: 100%;
  transition: transform 0.5s ease;
}
.masonry-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.25);
  transform: translateY(-5px);
}
.masonry-item:hover img {
  transform: scale(1.06);
}
.masonry-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 10, 14, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}
.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

/* Video Reels Gallery */
.reels-section {
  padding-top: 2rem;
  background: radial-gradient(circle at 85% 60%, rgba(212, 175, 55, 0.07) 0%, transparent 60%);
}
.reels-container {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  padding: 1rem 0 2rem 0;
  scroll-snap-type: x mandatory;
}
.reel-card {
  flex: 0 0 280px;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: #111;
}
.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--pink-accent);
  box-shadow: 0 15px 35px -5px var(--pink-glow);
}
.reel-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-tag {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(15, 15, 20, 0.85);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: var(--border-glass);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   OUR PACKAGES (Pricing Section)
   ========================================================================== */
.packages-section {
  background: var(--bg-surface);
  border-top: var(--border-glass);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  align-items: center;
}
.pricing-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  backdrop-filter: blur(16px);
  position: relative;
  transition: var(--transition-smooth);
}
.pricing-card.featured {
  background: linear-gradient(145deg, rgba(25, 25, 33, 0.9) 0%, rgba(15, 15, 20, 0.95) 100%);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 20px 50px -10px rgba(212, 175, 55, 0.35);
  transform: scale(1.05);
  z-index: 2;
}
.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--pink-accent);
  box-shadow: 0 20px 45px -10px var(--pink-glow);
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}
.popular-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #050507;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.package-name {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.5rem;
}
.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.package-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.feature-list {
  margin-bottom: 2.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #E0E0E0;
}
.feature-item i {
  color: #25D366;
}

/* ==========================================================================
   CUSTOM TEMPLATES (Photo Strips Carousel)
   ========================================================================== */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.template-card {
  background: rgba(15, 15, 20, 0.8);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.template-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 25px rgba(212, 175, 55, 0.25);
}
.strip-preview {
  background: #FFF;
  padding: 15px 12px 35px 12px;
  border-radius: var(--radius-sm);
  margin: 1rem auto 1.5rem;
  max-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  position: relative;
}
.strip-images {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strip-images img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 2px;
}
.strip-footer {
  font-family: var(--font-editorial);
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-top: 12px;
}

/* ==========================================================================
   TESTIMONIALS (Auto-Sliding Carousel)
   ========================================================================== */
.testimonials-section {
  background: var(--bg-surface);
  border-top: var(--border-glass);
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollTestimonials 35s linear infinite;
  margin-top: 4rem;
}
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonials-track:hover {
  animation-play-state: paused;
}
.testimonial-card {
  width: 400px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(14px);
}
.test-stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
}
.test-text {
  font-size: 1.05rem;
  color: #F0F0F5;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 55px; height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}
.author-info h4 {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 2px;
}
.author-info span {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 500;
}

/* ==========================================================================
   FAQ SECTION (Animated Accordion)
   ========================================================================== */
.faq-section {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.faq-item {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-item.open {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px -10px rgba(212, 175, 55, 0.2);
}
.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-header h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFF;
  transition: var(--transition-fast);
}
.faq-item.open .faq-header h4 {
  color: var(--gold-primary);
}
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.faq-item.open .faq-icon {
  background: var(--gold-primary);
  color: #050507;
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-content {
  padding: 0 2rem 1.8rem 2rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
}

/* ==========================================================================
   BOOK NOW SECTION (Interactive Reservation Form)
   ========================================================================== */
.booking-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.09) 0%, rgba(255, 182, 193, 0.05) 40%, #07070A 100%);
  position: relative;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.booking-info-box {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 2rem;
}
.info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-text h4 {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 4px;
}
.info-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Booking Form */
.booking-form-card {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(20px);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full {
  grid-column: span 2;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #E0E0E0;
}
.form-group label span {
  color: var(--pink-accent);
}
.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #FFF;
  font-size: 1rem;
  transition: var(--transition-fast);
}
.form-input:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

/* ==========================================================================
   FLOATING ACTION DOCK
   ========================================================================== */
.floating-dock {
  position: fixed;
  bottom: 25px; right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dock-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  transition: var(--transition-smooth);
  position: relative;
}
.dock-wa {
  background: #25D366;
  color: #FFF;
}
.dock-wa:hover {
  background: #1EBE5D;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
.dock-call {
  background: var(--gold-gradient);
  color: #050507;
}
.dock-call:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}
.dock-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFF;
}
.dock-insta:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.5);
}
.dock-top {
  background: #22222D;
  color: #FFF;
  border: var(--border-glass);
}
.dock-top:hover {
  background: var(--pink-accent);
  color: #000;
  transform: translateY(-4px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #050507;
  border-top: var(--border-glass);
  padding: 5rem 0 2rem 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .logo-text {
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.footer-pop-tag {
  font-family: var(--font-editorial);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-accent);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-links li a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.footer-links li a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   iOS & ANDROID NATIVE TOUCH & PERFORMANCE OPTIMIZATIONS
   ========================================================================== */
*, *::before, *::after {
  -webkit-tap-highlight-color: transparent !important;
}
html, body {
  -webkit-overflow-scrolling: touch;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
button, a, input, select, textarea, .event-card, .masonry-item, .faq-header, .feature-card, .reel-card {
  touch-action: manipulation;
}
.mobile-bottom-nav {
  display: none; /* Hidden on desktop screens */
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (iOS & Android Mobile Perfection)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .booking-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .timeline-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-container::before {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 4rem auto 0;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  /* Top Navbar on Mobile: Clear safe-area notch & streamline buttons */
  .navbar {
    padding-top: max(0.5rem, env(safe-area-inset-top));
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-actions .btn-whatsapp {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.82rem !important;
  }
  .nav-actions .btn-primary {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }
  .logo-text {
    font-size: 1.8rem;
  }
  .nav-logo-img {
    height: 42px;
  }
  .footer-logo-img {
    width: 200px;
  }

  /* Reveal iOS & Android App-Style Bottom Tab Bar */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    height: calc(65px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(10, 10, 16, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.9);
    z-index: 99999;
    justify-content: space-around;
    align-items: center;
  }
  .mobile-nav-item {
    background: none;
    border: none;
    color: #9090A0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    padding: 6px 10px;
    transition: var(--transition-fast);
    cursor: pointer;
    width: 20%;
  }
  .mobile-nav-item.active,
  .mobile-nav-item:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
  }
  .mobile-nav-item.active i {
    color: var(--gold-primary);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
  }

  /* Lift Floating Dock Above Mobile Bottom Nav Bar */
  .floating-dock {
    bottom: calc(75px + env(safe-area-inset-bottom));
    right: 15px;
    gap: 10px;
  }
  .dock-btn {
    width: 46px; height: 46px;
    font-size: 1.2rem;
  }

  /* Ensure Footer is never masked by bottom navigation */
  .footer {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Hero Mobile Adaptations */
  .hero {
    padding: 110px 0 3rem 0;
  }
  .hero-animated-title {
    font-size: clamp(2.8rem, 8.5vw, 4rem);
    min-height: 85px;
  }
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 1.1rem !important;
    font-size: 1.05rem;
    min-height: 52px; /* Touch target standards */
  }

  /* Floating Polaroid Story overlays scaled for phones */
  .floating-item {
    padding: 6px 6px 18px 6px;
  }
  .floating-item img {
    width: 95px; height: 95px;
  }
  .float-1 {
    top: 4%; left: 2%;
  }
  .float-2 {
    bottom: 8%; right: 2%;
  }
  .float-3 {
    bottom: -3%; left: 25%;
  }

  /* Form & Interactive Grid Restructuring */
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .booking-form-card {
    padding: 2rem 1.2rem;
  }
  .timeline-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-stats-card {
    position: relative;
    bottom: 0; right: 0;
    margin-top: 1rem;
    justify-content: center;
  }
  
  /* Modal Lightbox on Phone Screens (Full Screen Bottom Sheet) */
  .modal-content {
    width: 95%;
    max-height: 85vh;
    padding: 2rem 1.2rem;
    border-radius: var(--radius-md);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .modal-gallery-img {
    height: 150px;
  }
}

/* Compact Smartphones & Foldables (e.g., iPhone SE, Galaxy Fold external) */
@media (max-width: 480px) {
  .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .hero-animated-title {
    font-size: 2.6rem;
    min-height: 75px;
  }
  .masonry-grid {
    column-count: 1;
    column-gap: 0;
  }
  .masonry-item {
    margin-bottom: 1rem;
  }
  
  /* Instagram Reels Studio Touch Swiping Deck */
  .reels-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 15px;
    scrollbar-width: none;
  }
  .reels-container::-webkit-scrollbar {
    display: none;
  }
  .reel-card {
    flex: 0 0 260px;
    scroll-snap-align: center;
  }

  /* Testimonials Kinetic Card Carousel */
  .testimonials-track {
    gap: 1rem;
  }
  .testimonial-card {
    flex: 0 0 290px;
    padding: 1.5rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .floating-item img {
    width: 80px; height: 80px;
  }
}

