/* ===== LOTUS NAIL SALON - DREAMY PINK THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Noto+Sans+TC:wght@300;400;500;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --pink-light: #FFF0F5;
  --pink-soft: #FFD6E7;
  --pink-main: #FFB6C1;
  --pink-deep: #FF85A1;
  --rose: #C9728A;
  --rose-dark: #A0526A;
  --gold: #D4AF87;
  --gold-light: #F0D9B5;
  --white: #FFFFFF;
  --text-dark: #4A3040;
  --text-mid: #7A5A68;
  --text-light: #A08090;
  --gradient-pink: linear-gradient(135deg, #FFB6C1 0%, #FFC8D8 50%, #FFD6E7 100%);
  --gradient-hero: linear-gradient(135deg, #FFF0F8 0%, #FFE4EF 30%, #FFDAE9 60%, #FFB6C1 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF87 0%, #F0D9B5 50%, #D4AF87 100%);
  --shadow-soft: 0 8px 32px rgba(201, 114, 138, 0.15);
  --shadow-hover: 0 16px 48px rgba(201, 114, 138, 0.25);
  --border-radius: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
  background-color: var(--pink-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pink-soft); }
::-webkit-scrollbar-thumb { background: var(--pink-deep); border-radius: 10px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.3);
  box-shadow: 0 4px 20px rgba(201, 114, 138, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 65px;
  box-shadow: 0 4px 30px rgba(201, 114, 138, 0.2);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(255, 133, 161, 0.4);
}

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

.logo-text .main-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: 2px;
}

.logo-text .sub-name {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.navbar-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 25px;
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-links a:hover {
  color: var(--rose);
  background: var(--pink-soft);
}

.navbar-links a.active {
  color: var(--rose);
  background: var(--pink-soft);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gradient-pink);
  color: var(--rose-dark);
  border: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 133, 161, 0.3);
  font-family: 'Noto Sans TC', sans-serif;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 133, 161, 0.45);
}

.btn-book-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(160, 82, 106, 0.35);
  font-family: 'Noto Sans TC', sans-serif;
}

.btn-book-nav:hover {
  transform: translateY(-2px);
  background: var(--rose-dark);
  box-shadow: 0 8px 25px rgba(160, 82, 106, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 75px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.4) 0%, transparent 70%);
  animation: floatGlow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 135, 0.2) 0%, transparent 70%);
  animation: floatGlow 8s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 133, 161, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  color: var(--rose);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '✦';
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--rose);
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--rose);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  display: block;
}

.stat-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 36px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(160, 82, 106, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans TC', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--rose-dark);
  box-shadow: 0 12px 35px rgba(160, 82, 106, 0.5);
}

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--pink-deep);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans TC', sans-serif;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--pink-soft);
  border-color: var(--rose);
}

/* Hero Image */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-img-main {
  width: 100%;
  max-width: 480px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-hover);
  border: 6px solid white;
  animation: morphBorder 8s ease-in-out infinite;
}

@keyframes morphBorder {
  0%, 100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  25% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
  50% { border-radius: 50% 50% 60% 40% / 50% 60% 40% 50%; }
  75% { border-radius: 40% 60% 50% 50% / 40% 50% 50% 60%; }
}

.hero-img-secondary {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 30px;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: var(--shadow-soft);
  animation: float 4s ease-in-out infinite;
}

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

.hero-flower-1 {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 2.5rem;
  animation: spin 8s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(255, 133, 161, 0.4));
}

.hero-flower-2 {
  position: absolute;
  bottom: 30px;
  right: -20px;
  font-size: 1.5rem;
  animation: float 5s ease-in-out infinite reverse;
  opacity: 0.7;
}

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

/* Floating elements */
.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 15%;
  left: -10%;
  animation-delay: 1s;
}

.floating-card.card-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2.5s;
  background: linear-gradient(135deg, #fff, #FFF0F5);
}

.floating-card .card-icon {
  font-size: 1.5rem;
}

.floating-card .card-info span {
  display: block;
  font-size: 11px;
  color: var(--text-light);
}

.floating-card .card-info strong {
  font-size: 13px;
  color: var(--text-dark);
}

/* ===== SECTION BASE ===== */
section {
  padding: 100px 0;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--pink-soft);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-title .italic {
  font-style: italic;
  color: var(--rose);
}

.section-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto;
  width: fit-content;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: var(--gradient-pink);
}

.divider-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: white;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  width: 85%;
  border-radius: var(--border-radius);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 50%;
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  object-fit: cover;
  border: 5px solid white;
  box-shadow: var(--shadow-hover);
}

.experience-badge {
  position: absolute;
  top: 30px;
  right: -15px;
  background: var(--rose);
  color: white;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(160, 82, 106, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.experience-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-content {
  padding: 20px 0;
}

.about-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.feature-text span {
  font-size: 12px;
  color: var(--text-light);
}

.info-card {
  background: var(--pink-light);
  border-radius: var(--border-radius);
  padding: 24px;
  border-left: 4px solid var(--rose);
}

.info-card h4 {
  font-size: 14px;
  color: var(--rose);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-mid);
}

.info-row .icon {
  font-size: 1rem;
  width: 20px;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--pink-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-pink);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--rose);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== DESIGNERS SECTION ===== */
.designers {
  background: white;
}

.designers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.designer-card {
  background: var(--pink-light);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.designer-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-pink);
  transform: scaleX(0);
  transition: var(--transition);
}

.designer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: white;
}

.designer-card:hover::after {
  transform: scaleX(1);
}

.designer-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--rose-dark);
  box-shadow: 0 4px 12px rgba(255, 133, 161, 0.4);
}

.designer-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 16px;
  border: 4px solid white;
  box-shadow: 0 6px 20px rgba(255, 133, 161, 0.3);
  transition: var(--transition);
}

.designer-card:hover .designer-avatar {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 133, 161, 0.5);
}

.designer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.designer-title {
  font-size: 11px;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.designer-specialty {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.designer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.tag {
  background: var(--pink-soft);
  color: var(--rose);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}

/* Large designer card for row 2 (3 cards) */
.designers-grid-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background: var(--pink-light);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 24px;
  border-radius: 30px;
  border: 2px solid var(--pink-main);
  background: transparent;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans TC', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(160, 82, 106, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content h4 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.gallery-item.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: white;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--pink-light);
  border-radius: var(--border-radius);
  padding: 30px;
  width: 320px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 182, 193, 0.3);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.author-info strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
}

.author-info span {
  font-size: 11px;
  color: var(--text-light);
}

/* ===== BOOKING SECTION ===== */
.booking {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFB6C1' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.booking-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.booking-info p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.contact-method:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.method-icon.line { background: linear-gradient(135deg, #00B900, #00D800); }
.method-icon.phone { background: var(--gradient-pink); }
.method-icon.ig { background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45); }
.method-icon.fb { background: linear-gradient(135deg, #1877F2, #42A5F5); }

.method-info span {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.method-info strong {
  font-size: 14px;
  color: var(--text-dark);
}

.booking-form-card {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(201, 114, 138, 0.2);
}

.booking-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(255, 182, 193, 0.4);
  border-radius: 14px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--pink-light);
  transition: var(--transition);
  font-family: 'Noto Sans TC', sans-serif;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  background: white;
  box-shadow: 0 0 0 4px rgba(201, 114, 138, 0.1);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

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

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans TC', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(160, 82, 106, 0.4);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 6px;
}

.footer-brand .footer-logo span {
  color: var(--pink-main);
  font-style: italic;
}

.footer-brand .footer-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  color: var(--pink-main);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--rose);
  transform: translateY(-3px);
  border-color: var(--rose);
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--pink-main);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item .ci-icon {
  font-size: 1rem;
  color: var(--pink-main);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item .ci-text span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer-contact-item .ci-text strong {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--pink-main);
  text-decoration: none;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 20px 5%;
  box-shadow: 0 8px 30px rgba(201, 114, 138, 0.15);
  border-bottom: 1px solid rgba(255, 182, 193, 0.3);
  flex-direction: column;
  gap: 8px;
}

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

.mobile-nav a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--pink-soft);
  color: var(--rose);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(160, 82, 106, 0.4);
  transition: var(--transition);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--rose-dark);
}

/* ===== ANIMATIONS ON SCROLL ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .designers-grid { grid-template-columns: repeat(3, 1fr); }
  .designers-grid-row2 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .designers-grid { grid-template-columns: repeat(2, 1fr); }
  .designers-grid-row2 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .designers-grid { grid-template-columns: 1fr 1fr; }
  .designers-grid-row2 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .about-feature-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
