/* ==========================================================================
   L-Stories Photography Website - Modern Theme
   ========================================================================== */

/* Base Reset & Variables */
:root {
  /* Wedding Photography Theme - Elegant Rose Gold & Ivory */
  --color-bg: #0d0b0c;
  --color-bg-alt: #141113;
  --color-text: #faf8f5;
  --color-text-muted: #b8a9a0;
  --color-accent: #c9a86c;
  --color-accent-hover: #dfc18a;
  --color-accent-soft: #e8d4b8;
  --color-rose: #d4a5a5;
  --color-blush: #f5e6e0;
  --color-surface: rgba(201, 168, 108, 0.04);
  --color-border: rgba(201, 168, 108, 0.12);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
  --font-elegant: "Cormorant Garamond", Georgia, serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

html {
  overflow-x: hidden;
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* Glitter overlay for all sections */
.section {
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 10% 20%, rgba(255, 223, 138, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(212, 165, 165, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 108, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: shimmerOverlay 8s ease-in-out infinite;
}

.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 223, 138, 0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
    radial-gradient(2px 2px at 80% 60%, rgba(201, 168, 108, 0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 10% 80%, rgba(255, 250, 240, 0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 40%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 50%, rgba(255, 223, 138, 0.6) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 10%, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  animation: sparkleMove 20s linear infinite;
}

@keyframes shimmerOverlay {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

@keyframes sparkleMove {
  0% { background-position: 0 0; }
  100% { background-position: 300px 300px; }
}

.section-alt::before {
  background: 
    radial-gradient(ellipse at 80% 30%, rgba(255, 223, 138, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 70%, rgba(232, 212, 184, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 40%, rgba(212, 165, 165, 0.06) 0%, transparent 40%);
}

/* Layout Helpers */
.container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}

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

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--color-text), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border-radius: 0;
  border: 1px solid var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

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

.btn.primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

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

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

.btn.ghost {
  background: transparent;
  color: var(--color-text);
}

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

.btn.full-width {
  width: 100%;
}

/* ========================================================================
   HEADER - Professional Camera Menu
   ======================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  z-index: 10001;
}

.logo-img {
  background-color: white;
  transform: scale(1.3);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.logo-text small {
  font-family: var(--font-elegant);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  font-weight: 300;
}

/* Camera Icon Navigation Toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.8rem;
  color: var(--color-text);
  z-index: 10001;
  transition: var(--transition-smooth);
}

.nav-toggle:hover {
  color: var(--color-accent);
}

.camera-icon {
  width: 2rem;
  height: 2rem;
  transition: var(--transition-smooth);
}

.nav-toggle:hover .camera-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px var(--color-accent));
}

.menu-text {
  font-family: var(--font-elegant);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  font-weight: 400;
  position: relative;
}

.menu-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-toggle:hover .menu-text::after {
  width: 100%;
}

/* Main Navigation - Overlay Style */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0d0b0c 0%, #1a1618 50%, #0d0b0c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 9999;
}

.main-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 108, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.main-nav.open {
  opacity: 1;
  visibility: visible;
}

.nav-close-area {
  position: absolute;
  inset: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  position: relative;
  z-index: 1;
}

.main-nav ul::before {
  content: '— L-Stories —';
  font-family: var(--font-elegant);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.main-nav li {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.main-nav.open li {
  opacity: 1;
  transform: translateY(0);
}

.main-nav.open li:nth-child(1) { transition-delay: 0.1s; }
.main-nav.open li:nth-child(2) { transition-delay: 0.15s; }
.main-nav.open li:nth-child(3) { transition-delay: 0.2s; }
.main-nav.open li:nth-child(4) { transition-delay: 0.25s; }
.main-nav.open li:nth-child(5) { transition-delay: 0.3s; }
.main-nav.open li:nth-child(6) { transition-delay: 0.35s; }

.main-nav a {
  font-family: var(--font-elegant);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 400;
  text-decoration: none;
  color: var(--color-text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.5rem 1rem;
}

.main-nav a::before {
  content: '✦';
  position: absolute;
  left: -1.5rem;
  opacity: 0;
  color: var(--color-accent);
  font-size: 0.6em;
  transition: var(--transition-smooth);
  transform: translateX(-10px);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transition: var(--transition-smooth);
}

.main-nav a:hover {
  color: var(--color-accent);
  text-shadow: 0 0 30px rgba(201, 168, 108, 0.3);
}

.main-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--color-accent);
}

.main-nav a.active::before {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================================================
   HERO SECTION - Split Layout
   ======================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-bg);
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--color-bg) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--color-accent);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

/* ========================================================================
   FILMS SECTION
   ======================================================================== */

.films-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.films-text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.styled-list {
  list-style: none;
  margin: 1.5rem 0;
}

.styled-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-muted);
}

.styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.films-video-placeholder {
  display: flex;
  justify-content: flex-end;
}

.video-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-border);
}

.video-cta {
  align-self: center;
}

/* ========================================================================
   ABOUT SECTION
   ======================================================================== */

.about-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-photo-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 auto;
  background: transparent;
}

.about-photo-container:has(.about-photo-slide.active) {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Slideshow for about section with directional animations */
.about-photo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
}

.about-photo-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Top to bottom animation */
.about-photo-slide.slide-top {
  animation: slideFromTop 1.5s ease-out forwards;
}

@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bottom to top animation */
.about-photo-slide.slide-bottom {
  animation: slideFromBottom 1.5s ease-out forwards;
}

@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left to right animation */
.about-photo-slide.slide-left {
  animation: slideFromLeft 1.5s ease-out forwards;
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Right to left animation */
.about-photo-slide.slide-right {
  animation: slideFromRight 1.5s ease-out forwards;
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Exit animations */
.about-photo-slide.exit {
  z-index: 1;
  animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .about-photo-slide {
    animation: none !important;
    transition: opacity 0.3s ease;
  }
  .about-photo-slide.active {
    opacity: 1;
  }
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-text), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Quote Section */
.quote-section {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.quote-section::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
}

.quote-section p {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text);
}

.quote-footer {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-accent);
}

/* ========================================================================
   SERVICES SECTION
   ======================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-accent);
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.tag {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-accent);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ========================================================================
   TESTIMONIALS SECTION
   ======================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.5;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-card:hover {
  border-color: var(--color-accent);
}

.testimonial-card p {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

/* ========================================================================
   CONTACT SECTION - Professional Clean Design
   ======================================================================== */

.contact-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: flex-start;
}

.contact-form {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
}

.field {
  margin-bottom: 1.8rem;
  position: relative;
}

.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--color-text);
  font-weight: 500;
}

.field label .icon {
  display: none;
}

.required {
  color: var(--color-accent);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  background: transparent;
  color: var(--color-text);
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.field.two-cols > div {
  display: flex;
  flex-direction: column;
}

.field.two-cols label {
  margin-bottom: 0.8rem;
}

.error-message {
  display: block;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.4rem;
  min-height: 1.2rem;
}

/* Submit button */
.contact-form .btn.primary {
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--color-bg);
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 1.2rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.contact-form .btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent-hover);
  transition: var(--transition-smooth);
}

.contact-form .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-form .btn.primary:hover::before {
  left: 0;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.form-status.error {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* Contact Info */
.contact-info {
  background: var(--color-surface);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.contact-info > p:first-of-type {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-lines {
  margin-bottom: 2rem;
}

.contact-lines span {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-left: 0;
}

.contact-lines span:last-child {
  margin-bottom: 0;
}

.contact-lines a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-lines a:hover {
  color: var(--color-accent-hover);
}

.contact-info .note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  padding: 1.2rem;
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  font-style: italic;
}

/* ========================================================================
   SOCIAL LINKS SECTION
   ======================================================================== */

.social-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 2rem 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  min-width: 160px;
}

.social-link:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.social-icon {
  width: 48px;
  height: 48px;
  transition: var(--transition-smooth);
}

.social-link:hover .social-icon {
  transform: scale(1.15);
}

.social-link.instagram .social-icon { color: #E4405F; }
.social-link.instagram-alt .social-icon { color: #C13584; }
.social-link.facebook .social-icon { color: #1877F2; }
.social-link.youtube .social-icon { color: #FF0000; }

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

/* ========================================================================
   FOOTER - Professional Design
   ======================================================================== */

.site-footer {
  padding: 5rem 0 2rem;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Use same logo styling in footer as in header */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0;
  z-index: auto;
  position: relative;
}

.footer-brand .logo-img {
  background-color: white;
  transform: scale(1.3);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
  transition: var(--transition-smooth);
}

.footer-brand .logo:hover .logo-img {
  transform: scale(1.35);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-brand .logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-brand .logo-text small {
  font-family: var(--font-elegant);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  font-weight: 300;
}

/* Legacy footer styles (keep for backward compatibility) */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav-column h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.footer-nav-column ul {
  list-style: none;
}

.footer-nav-column li {
  margin-bottom: 0.8rem;
}

.footer-nav-column a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-nav-column a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-credits p {
  margin: 0;
}

.footer-credits a {
  color: var(--color-accent);
  text-decoration: none;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: var(--transition-smooth);
}

.back-to-top:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ========================================================================
   ANIMATIONS - Glitter & Shine Effects
   ======================================================================== */

/* Fade In Animation */
.animate-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fadeIn.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle float animation for images */
@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.portfolio-card:hover .image-wrap img,
.service-card:hover {
  animation: subtleFloat 3s ease-in-out infinite;
}

/* Text shimmer animation */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.section-header h2 {
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
  will-change: background-position;
}

/* Glitter shine effect */
@keyframes glitterShine {
  0%, 100% { 
    box-shadow: 
      0 0 20px rgba(201, 168, 108, 0.2),
      0 0 40px rgba(201, 168, 108, 0.1),
      inset 0 0 20px rgba(255, 255, 255, 0.05);
  }
  50% { 
    box-shadow: 
      0 0 30px rgba(201, 168, 108, 0.4),
      0 0 60px rgba(201, 168, 108, 0.2),
      inset 0 0 30px rgba(255, 255, 255, 0.1);
  }
}

.btn.primary {
  animation: glitterShine 2s ease-in-out infinite;
  position: relative;
}

.btn.primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: buttonShine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buttonShine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Card glitter effect */
@keyframes cardGlitter {
  0%, 100% { 
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(201, 168, 108, 0.1);
  }
  25% {
    box-shadow: 
      0 12px 35px rgba(0, 0, 0, 0.18),
      0 0 20px rgba(201, 168, 108, 0.15),
      0 0 0 1px rgba(201, 168, 108, 0.2);
  }
  50% { 
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.2),
      0 0 30px rgba(201, 168, 108, 0.2),
      0 0 0 1px rgba(201, 168, 108, 0.3);
  }
  75% {
    box-shadow: 
      0 12px 35px rgba(0, 0, 0, 0.18),
      0 0 20px rgba(201, 168, 108, 0.15),
      0 0 0 1px rgba(201, 168, 108, 0.2);
  }
}

.service-card,
.testimonial-card {
  animation: cardGlitter 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.service-card::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: cardShine 5s ease-in-out infinite;
}

@keyframes cardShine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.service-card:nth-child(2),
.testimonial-card:nth-child(2) {
  animation-delay: -1.3s;
}

.service-card:nth-child(2)::after,
.testimonial-card:nth-child(2)::after {
  animation-delay: -1.7s;
}

.service-card:nth-child(3),
.testimonial-card:nth-child(3) {
  animation-delay: -2.6s;
}

.service-card:nth-child(3)::after,
.testimonial-card:nth-child(3)::after {
  animation-delay: -3.4s;
}

.service-card:nth-child(4) { animation-delay: -0.5s; }
.service-card:nth-child(5) { animation-delay: -1.8s; }
.service-card:nth-child(6) { animation-delay: -3s; }

/* Logo golden glow */
@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(201, 168, 108, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(201, 168, 108, 0.8)) drop-shadow(0 0 40px rgba(255, 223, 138, 0.4));
  }
}

.logo-img {
  animation: logoGlow 3s ease-in-out infinite;
}

/* Flowing gradient for hero */
@keyframes flowingGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(201, 168, 108, 0.05) 0%,
    rgba(212, 165, 165, 0.04) 25%,
    rgba(232, 212, 184, 0.05) 50%,
    rgba(201, 168, 108, 0.04) 75%,
    rgba(245, 230, 224, 0.05) 100%);
  background-size: 400% 400%;
  animation: flowingGradient 12s ease infinite;
  pointer-events: none;
  z-index: 1;
}

/* Sparkle dots on hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(3px 3px at 15% 25%, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 35% 65%, rgba(255, 223, 138, 0.6) 50%, transparent 50%),
    radial-gradient(3px 3px at 55% 15%, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
    radial-gradient(2px 2px at 75% 75%, rgba(201, 168, 108, 0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 85% 35%, rgba(255, 250, 240, 0.6) 50%, transparent 50%),
    radial-gradient(3px 3px at 25% 85%, rgba(255, 223, 138, 0.4) 50%, transparent 50%);
  background-size: 400px 400px;
  animation: heroSparkle 25s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0.8;
}

@keyframes heroSparkle {
  0% { background-position: 0 0; }
  100% { background-position: 400px 400px; }
}

/* Quote glowing effect */
@keyframes quoteGlow {
  0%, 100% {
    opacity: 0.4;
    text-shadow: 0 0 15px rgba(201, 168, 108, 0.3);
  }
  50% {
    opacity: 0.7;
    text-shadow: 0 0 30px rgba(201, 168, 108, 0.6);
  }
}

.quote-section::before {
  animation: quoteGlow 3s ease-in-out infinite;
}

/* Border shimmer for contact forms */
@keyframes borderGlitter {
  0%, 100% {
    border-color: rgba(201, 168, 108, 0.15);
    box-shadow: 0 0 15px rgba(201, 168, 108, 0.1);
  }
  50% {
    border-color: rgba(201, 168, 108, 0.4);
    box-shadow: 0 0 30px rgba(201, 168, 108, 0.2);
  }
}

.contact-form,
.contact-info {
  animation: borderGlitter 4s ease-in-out infinite;
  position: relative;
}

.contact-form::before,
.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 60%
  );
  animation: formShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes formShine {
  0%, 100% { transform: translateX(-100%) translateY(-100%); }
  50% { transform: translateX(100%) translateY(100%); }
}

/* Social link glitter effect */
.social-link {
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.social-link::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover::after {
  transform: translateX(100%);
}

/* Footer sparkle overlay */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
    radial-gradient(2px 2px at 30% 60%, rgba(201, 168, 108, 0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 50% 30%, rgba(255, 223, 138, 0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 70%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 40%, rgba(201, 168, 108, 0.4) 50%, transparent 50%);
  background-size: 250px 250px;
  animation: footerSparkle 15s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes footerSparkle {
  0% { background-position: 0 0; }
  100% { background-position: 250px 250px; }
}

/* Input field focus glow */
.field input:focus,
.field textarea:focus {
  box-shadow: 
    0 0 0 2px rgba(201, 168, 108, 0.2),
    0 0 20px rgba(201, 168, 108, 0.15),
    0 0 40px rgba(201, 168, 108, 0.1);
}

/* Nav menu glitter background */
.main-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 20%, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
    radial-gradient(3px 3px at 50% 40%, rgba(201, 168, 108, 0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 80% 30%, rgba(255, 223, 138, 0.4) 50%, transparent 50%),
    radial-gradient(3px 3px at 30% 70%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 80%, rgba(201, 168, 108, 0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 10% 60%, rgba(255, 223, 138, 0.4) 50%, transparent 50%),
    radial-gradient(3px 3px at 90% 50%, rgba(255, 255, 255, 0.3) 50%, transparent 50%);
  background-size: 350px 350px;
  animation: navSparkle 18s linear infinite;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

@keyframes navSparkle {
  0% { background-position: 0 0; }
  100% { background-position: 350px 350px; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .section-header h2,
  .btn.primary,
  .btn.primary::after,
  .service-card,
  .service-card::after,
  .testimonial-card,
  .testimonial-card::after,
  .logo-img,
  .hero::before,
  .hero::after,
  .quote-section::before,
  .contact-form,
  .contact-form::before,
  .contact-info,
  .contact-info::before,
  .section::before,
  .section::after,
  .site-footer::before,
  .main-nav::after {
    animation: none;
  }
}

/* Performance optimization for mobile - reduce animations */
@media (max-width: 768px) {
  .section::after,
  .hero::after,
  .site-footer::before,
  .main-nav::after {
    animation: none;
    opacity: 0.4;
  }
  
  .service-card,
  .testimonial-card {
    animation: none;
  }
  
  .service-card::after,
  .testimonial-card::after {
    display: none;
  }
  
  .btn.primary {
    animation: none;
  }
  
  .btn.primary::after {
    display: none;
  }
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-image-container {
    height: 50vh;
  }
  
  .hero-image-container::after {
    background: linear-gradient(to bottom, transparent 50%, var(--color-bg) 100%);
  }
  
  .hero-content {
    padding: 3rem 2rem 4rem;
    text-align: center;
    align-items: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .films-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-photo-container {
    max-width: 400px;
  }
  
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  
  .logo-text {
    display: none;
  }
  
  .hero-image-container {
    height: 40vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 2rem 1.5rem 3rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .field.two-cols {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .social-links-container {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 80%;
    flex-direction: row;
    justify-content: center;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-photo-container {
    max-width: 350px;
  }
  
  .quote-section {
    padding: 1.5rem;
  }
  
  .quote-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 2rem);
  }
  
  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .video-container iframe {
    max-width: 100%;
  }
  
  .films-video-placeholder {
    width: 100%;
  }
  
  .contact-form::before,
  .contact-form::after {
    display: none;
  }
  
  .about-photo-container {
    max-width: 300px;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 1.8rem 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.15rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-info h3 {
    font-size: 1.3rem;
  }
  
  .styled-list li {
    font-size: 0.9rem;
  }
  
  .films-text p {
    font-size: 0.95rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .container {
    width: calc(100% - 1.5rem);
  }
  
  .hero h1 {
    font-size: 1.7rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .quote-section {
    padding: 1.2rem;
  }
  
  .quote-section p {
    font-size: 0.95rem;
  }
  
  .service-card {
    padding: 1.5rem 1.2rem;
  }
  
  .nav-toggle {
    padding: 0.6rem;
  }
  
  .camera-icon {
    width: 1.8rem;
    height: 1.8rem;
  }
  
  .menu-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }
}

/* Hidden class for menu toggle */
.main-nav.open ~ .nav-toggle .menu-text::before {
  content: 'CLOSE';
}

/* ========================================================================
   SMOOTH IMAGE LOADING
   ======================================================================== */

/* Image loading animation */
img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.loaded,
img[src*="logo"] {
  opacity: 1;
}

/* Ensure logo is always visible */
.logo-img,
.loader-logo {
  opacity: 1 !important;
}

/* Lazy load placeholder effect */
.hero-image,
.about-photo-slide {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

/* Hero image should be visible immediately */
.hero-image {
  opacity: 1 !important;
}

/* ========================================================================
   WHATSAPP FLOATING BUTTON
   ======================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 
    0 4px 15px rgba(37, 211, 102, 0.4),
    0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 
    0 6px 20px rgba(37, 211, 102, 0.5),
    0 12px 40px rgba(0, 0, 0, 0.25);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-text {
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 
      0 4px 15px rgba(37, 211, 102, 0.4),
      0 8px 30px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(37, 211, 102, 0.6),
      0 8px 35px rgba(0, 0, 0, 0.25),
      0 0 0 8px rgba(37, 211, 102, 0.15);
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .whatsapp-icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 14px;
    border-radius: 50%;
    animation: none; /* Disable animation on mobile for performance */
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 360px) {
  .whatsapp-float {
    bottom: 12px;
    right: 12px;
    padding: 12px;
  }
  
  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}
