/* ============================
   HAYAL PARK CAFE - Design System
   Childish, Alive, Stunning
   ============================ */

:root {
  /* Primary Candy Palette */
  --pink: #FF6B8A;
  --pink-light: #FFB3C6;
  --pink-glow: rgba(255, 107, 138, 0.3);
  --mint: #4ECDC4;
  --mint-light: #A8E6CF;
  --mint-glow: rgba(78, 205, 196, 0.3);
  --yellow: #FFE66D;
  --yellow-light: #FFF3B0;
  --yellow-glow: rgba(255, 230, 109, 0.3);
  --purple: #B47AEA;
  --purple-light: #D4A5FF;
  --purple-glow: rgba(180, 122, 234, 0.3);
  --orange: #FF9F43;
  --blue: #74B9FF;

  /* Backgrounds */
  --bg-main: #FFF5FB;
  --section-bg-1: #FFF0F5;
  --section-bg-2: #F0FFF4;
  --footer-bg: #2D1B69;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-strong: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px rgba(180, 122, 234, 0.08);

  /* Text */
  --text-dark: #2D1B4E;
  --text-medium: #5A4478;
  --text-light: #8E7AAF;
  --text-white: #FFFFFF;

  /* Fonts */
  --font-heading: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;

  /* Spacing */
  --section-padding: 6rem 5%;
  --container-max: 1200px;

  /* Borders */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 100px;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, .logo-text {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================
   BACKGROUND CANVAS
   ============================ */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============================
   CURSOR TRAIL
   ============================ */
#cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: screen;
}

body:hover #cursor-trail {
  opacity: 0.6;
}

/* ============================
   FLOATING DECORATIONS
   ============================ */
.bg-decorations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.deco {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  filter: blur(0.5px);
}

.deco-star { top: 8%; left: 5%; animation: decoFloat 8s ease-in-out infinite; }
.deco-heart { top: 15%; right: 8%; animation: decoFloat 10s ease-in-out infinite 2s; font-size: 1.5rem; }
.deco-candy { top: 40%; left: 3%; animation: decoFloat 12s ease-in-out infinite 1s; }
.deco-balloon1 { top: 25%; right: 15%; animation: decoBalloon 15s ease-in infinite; font-size: 2.5rem; }
.deco-balloon2 { top: 55%; left: 8%; animation: decoBalloon 18s ease-in infinite 5s; font-size: 1.8rem; }
.deco-cloud1 { top: 12%; left: 20%; animation: decoCloud 30s linear infinite; font-size: 3rem; opacity: 0.1; }
.deco-cloud2 { top: 50%; left: -5%; animation: decoCloud 40s linear infinite 10s; font-size: 4rem; opacity: 0.08; }
.deco-sparkle { top: 70%; right: 5%; animation: decoFloat 7s ease-in-out infinite 3s; }
.deco-rainbow { top: 5%; right: 25%; animation: decoFloat 15s ease-in-out infinite 4s; font-size: 2.5rem; opacity: 0.12; }
.deco-lollipop { top: 80%; left: 12%; animation: decoFloat 9s ease-in-out infinite 6s; font-size: 1.8rem; }

@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  75% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes decoBalloon {
  0% { transform: translateY(0) rotate(-5deg); opacity: 0.15; }
  100% { transform: translateY(-120vh) rotate(10deg); opacity: 0; }
}

@keyframes decoCloud {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(calc(100vw + 100px)); }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 3%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: transparent;
}

.navbar.scrolled {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(180, 122, 234, 0.1);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  z-index: 1001;
}

.logo-img {
  height: 38px;
  width: auto;
  animation: logoWiggle 3s ease-in-out infinite;
}

@keyframes logoWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.logo-text {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-medium);
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
  background: var(--pink-glow);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  box-shadow: 0 4px 15px var(--pink-glow);
  transition: all 0.3s;
  z-index: 1001;
}

.nav-cta:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 25px var(--pink-glow);
}

.cta-emoji {
  animation: cteRing 2s ease-in-out infinite;
}

@keyframes cteRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(0deg); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--text-dark);
  transition: all 0.3s;
}

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

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

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

/* ============================
   SECTION COMMONS
   ============================ */
.section {
  position: relative;
  padding: var(--section-padding);
  z-index: 2;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
  animation: decoFloat 4s ease-in-out infinite;
}

.section-header h2 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 600;
  max-width: 550px;
  margin: 0 auto;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(150deg, #FFF5FB 0%, #F8E8FF 30%, #E8F4FD 60%, #FFF0F5 100%);
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 7rem 5% 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px var(--yellow-glow);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.title-line:first-child {
  font-size: 4.2rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-word {
  position: relative;
  display: inline-block;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -5px;
  right: -5px;
  height: 35%;
  background: var(--yellow);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.6;
  transform: rotate(-1deg);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-desc strong {
  color: var(--pink);
  background: var(--pink-glow);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #FF4081);
  color: white;
  box-shadow: 0 6px 20px var(--pink-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px var(--pink-glow);
}

.btn-secondary {
  background: var(--glass-bg-strong);
  color: var(--text-dark);
  border: 2px solid var(--pink-light);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  background: white;
  border-color: var(--pink);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-bounce {
  animation: btnBounce 3s ease-in-out infinite;
}

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

.btn-bounce:hover {
  animation: none;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--glass-bg-strong);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(15px);
  max-width: fit-content;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stat-icon {
  font-size: 1.6rem;
}

.stat-item strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.stat-item small {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

.stat-divider {
  width: 2px;
  height: 35px;
  background: linear-gradient(to bottom, transparent, var(--pink-light), transparent);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(180, 122, 234, 0.2);
  border: 4px solid white;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
}

.hero-image-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.float-animation {
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.hero-floating-emojis {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.fe {
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.fe-1 { top: -5%; left: -5%; animation: decoFloat 5s ease-in-out infinite; }
.fe-2 { top: 10%; right: -10%; animation: decoFloat 6s ease-in-out infinite 1s; }
.fe-3 { bottom: 5%; left: -8%; animation: decoFloat 7s ease-in-out infinite 2s; }
.fe-4 { bottom: -5%; right: -5%; animation: decoFloat 4s ease-in-out infinite 3s; font-size: 2.5rem; }

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
  background: var(--section-bg-1);
}

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

.about-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(180, 122, 234, 0.15);
  border: 4px solid white;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: rotate(-2deg);
}

.about-image-wrap:hover {
  transform: rotate(0deg) scale(1.03);
}

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

.about-text h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-medium);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.feature-chip:hover {
  border-color: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--pink-glow);
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: height 0.3s;
}

.service-card[data-color="pink"]::before { background: linear-gradient(90deg, var(--pink), var(--pink-light)); }
.service-card[data-color="mint"]::before { background: linear-gradient(90deg, var(--mint), var(--mint-light)); }
.service-card[data-color="yellow"]::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.service-card[data-color="purple"]::before { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--glass-border);
}

.service-card:hover::before {
  height: 6px;
}

.service-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, white, transparent);
}

.service-body {
  padding: 1.5rem;
  text-align: center;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  animation: none;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  animation: decoFloat 1s ease-in-out infinite;
}

.service-body h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.6;
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.gi-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gi-1 img { min-height: 280px; }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(45, 27, 78, 0.8), transparent);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 20px rgba(131, 58, 180, 0.3);
  transition: all 0.3s;
}

.btn-instagram:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
}

/* ============================
   REVIEWS SECTION
   ============================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--pink-light);
  line-height: 1;
  opacity: 0.5;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--pink-light);
  box-shadow: 0 10px 30px var(--pink-glow);
}

.review-stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.review-author small {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: var(--pink-light);
  box-shadow: 0 5px 20px var(--pink-glow);
}

.contact-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.contact-card a {
  color: var(--pink);
  font-weight: 700;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--purple);
}

.btn-directions {
  background: linear-gradient(135deg, var(--mint), #00B894);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 5px 20px var(--mint-glow);
  transition: all 0.3s;
  margin-top: 0.5rem;
  text-align: center;
  justify-content: center;
}

.btn-directions:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px var(--mint-glow);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 4px solid white;
  min-height: 400px;
  height: 100%;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  position: relative;
  z-index: 2;
}

.footer-wave {
  position: relative;
  top: 2px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-content {
  background: var(--footer-bg);
  padding: 3rem 5%;
  text-align: center;
  color: white;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.footer-tagline {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.2);
}

.footer-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-3px) scale(1.1);
}

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

/* ============================
   FLOATING CTAs
   ============================ */
.floating-ctas {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: all 0.3s;
  position: relative;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: floatBtnPulse 2s ease-in-out infinite;
}

.phone-btn {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  animation: floatBtnPulse 2s ease-in-out infinite 0.5s;
}

@keyframes floatBtnPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
  50% { transform: scale(1.08); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
}

.float-btn:hover {
  transform: scale(1.15) translateY(-3px) !important;
  animation: none;
}

/* ============================
   CONFETTI CANVAS
   ============================ */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }
.reveal.delay-4 { transition-delay: 0.6s; }
.reveal.delay-5 { transition-delay: 0.75s; }

/* Entrance Animations */
.bounce-in {
  opacity: 0;
  transform: scale(0.3);
  animation: bounceInAnim 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.3s;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpAnim 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

.slide-up.delay-1 { animation-delay: 0.65s; }
.slide-up.delay-2 { animation-delay: 0.8s; }

.fade-in {
  opacity: 0;
  animation: fadeInAnim 0.6s ease-out forwards;
}

.fade-in.delay-3 { animation-delay: 1s; }
.fade-in.delay-4 { animation-delay: 1.2s; }
.fade-in.delay-5 { animation-delay: 1.5s; }

@keyframes bounceInAnim {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

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

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

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

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-desc {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin: 0 auto;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image {
    max-width: 400px;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile & Tablet - Show Hamburger */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .title-line {
    font-size: 2.4rem;
  }

  .title-line:first-child {
    font-size: 2.8rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }

  .stat-divider {
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--pink-light), transparent);
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-emoji {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gi-1 {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

  .section {
    padding: 4rem 4%;
  }

  .about-image-wrap img {
    height: 250px;
  }

  .deco { display: none; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .title-line {
    font-size: 1.9rem;
  }

  .title-line:first-child {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gi-1 {
    grid-column: 1;
  }

  .hero-image {
    max-width: 300px;
  }

  .hero-badge {
    font-size: 0.85rem;
  }
}
