/* ============================================
   PENJAHIT TISNA - Landing Page Styles
   Color Palette: Soft & Feminine
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
  /* Primary Colors */
  --pink-50: #FFF0F5;
  --pink-100: #FCE4EC;
  --pink-200: #F8BBD0;
  --pink-300: #F48FB1;
  --pink-400: #E8A0BF;
  --pink-500: #EC407A;
  --pink-600: #D81B60;

  /* Neutral / Cream */
  --cream-50: #FFFDF9;
  --cream-100: #FFF8F0;
  --cream-200: #FAEBD7;
  --cream-300: #F5DEB3;
  --cream-400: #DBC4A0;

  /* Warm Accents */
  --gold-300: #F0D9A0;
  --gold-400: #D4A574;
  --gold-500: #C8956C;
  --rose-gold: #B76E79;

  /* Text */
  --text-dark: #3D2B2B;
  --text-medium: #6B4F4F;
  --text-light: #8E7474;
  --text-white: #FFFAF5;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(61, 43, 43, 0.06);
  --shadow-md: 0 4px 12px rgba(61, 43, 43, 0.08);
  --shadow-lg: 0 8px 30px rgba(61, 43, 43, 0.1);
  --shadow-xl: 0 16px 50px rgba(61, 43, 43, 0.12);
  --shadow-pink: 0 8px 30px rgba(232, 160, 191, 0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1140px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-200));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes stitchDash {
  to {
    stroke-dashoffset: 0;
  }
}

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

  to {
    transform: rotate(360deg);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-300));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  box-shadow: var(--shadow-pink);
}

.navbar-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.navbar-brand .brand-text span {
  color: var(--pink-500);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-300));
  transition: var(--transition-base);
  border-radius: 2px;
}

.navbar-links a:hover {
  color: var(--pink-500);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-300)) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: var(--shadow-pink);
  transition: var(--transition-base) !important;
}

.navbar-cta::after {
  display: none !important;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232, 160, 191, 0.35) !important;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(165deg, var(--cream-50) 0%, var(--pink-50) 40%, var(--cream-100) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 160, 191, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 217, 160, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 191, 0.12);
  border: 1px solid rgba(232, 160, 191, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pink-500);
  margin-bottom: 28px;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--pink-400);
  border-radius: 50%;
  animation: float 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .highlight {
  position: relative;
  color: var(--pink-500);
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(232, 160, 191, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-pink);
  transition: var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 160, 191, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  border: 1.5px solid rgba(232, 160, 191, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-secondary:hover {
  border-color: var(--pink-400);
  background: rgba(232, 160, 191, 0.08);
  transform: translateY(-3px);
}

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

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

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-500);
  display: block;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Hero Image */
.hero-image {
  position: relative;
  animation: fadeIn 1.2s ease 0.3s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(61, 43, 43, 0.08) 100%);
  pointer-events: none;
}

/* Floating decoration card */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 30px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card .card-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-float-card .card-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.hero-float-card .card-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.hero-float-card.card-2 {
  top: 40px;
  right: -20px;
  animation-delay: 1s;
}

/* Decorative sewing elements */
.deco-stitch {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
}

.deco-stitch svg {
  stroke: var(--pink-300);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  fill: none;
}

/* ============================================
   LAYANAN / SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--cream-50);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-200), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  border: 1px solid rgba(232, 160, 191, 0.08);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-300), var(--pink-400), var(--gold-300));
  opacity: 0;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(232, 160, 191, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition-base);
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, rgba(232, 160, 191, 0.12), rgba(232, 160, 191, 0.06));
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, rgba(240, 217, 160, 0.15), rgba(240, 217, 160, 0.06));
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.12), rgba(183, 110, 121, 0.06));
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.12), rgba(200, 149, 108, 0.06));
}

.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, rgba(244, 143, 177, 0.12), rgba(244, 143, 177, 0.06));
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

.service-card .service-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  background: var(--pink-50);
  color: var(--pink-500);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================
   ABOUT SECTION (Tentang Kami)
   ============================================ */
.about {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--cream-50), var(--pink-50));
  position: relative;
}

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

.about-visual {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--pink-400), var(--rose-gold));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-pink);
  animation: float 4s ease-in-out infinite;
}

.about-experience-badge .years {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
}

.about-content .about-text {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.about-feature .feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(232, 160, 191, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about-feature .feature-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ============================================
   LOCATION & HOURS SECTION
   ============================================ */
.location {
  padding: var(--section-padding);
  background: white;
  position: relative;
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-200), transparent);
}

.location .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info {
  padding-top: 20px;
}

.location-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  border: 1px solid rgba(232, 160, 191, 0.08);
}

.location-card .card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.location-card .card-header .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink-200), var(--pink-100));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.location-card .card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.location-card .info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 160, 191, 0.06);
}

.location-card .info-row:last-child {
  border-bottom: none;
}

.location-card .info-row .row-icon {
  font-size: 1.1rem;
  margin-top: 2px;
}

.location-card .info-row .row-content strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.location-card .info-row .row-content span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-map .map-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-map .map-overlay p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.location-map .map-overlay a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink-500);
  transition: var(--transition-fast);
}

.location-map .map-overlay a:hover {
  color: var(--pink-600);
}

/* ============================================
   WHATSAPP CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink-400) 0%, var(--rose-gold) 50%, var(--gold-400) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 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='%23ffffff' fill-opacity='0.05'%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;
}

.cta-section .container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  background: white;
  color: var(--pink-500);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp .wa-icon {
  width: 28px;
  height: 28px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  padding: 60px 0 30px;
  color: var(--text-white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand .brand-name span {
  color: var(--pink-300);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 250, 245, 0.6);
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--pink-200);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255, 250, 245, 0.6);
  transition: var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--pink-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 250, 245, 0.4);
}

.footer-bottom .heart {
  color: var(--pink-400);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-300));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-pink);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 35px rgba(232, 160, 191, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

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

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

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-float-card.card-1 {
    left: 10px;
  }

  .hero-float-card.card-2 {
    right: 10px;
  }

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

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
  }

  .about-features {
    justify-items: center;
  }

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

  .location-map {
    height: 350px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    z-index: 998;
  }

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

  .navbar-links a {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 999;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-image-wrapper img {
    height: 350px;
  }

  .hero-float-card {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
  }

  .hero-float-card .card-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.95rem;
  }

  .hero-float-card .card-text strong {
    font-size: 0.75rem;
  }

  .hero-float-card .card-text span {
    font-size: 0.65rem;
  }

  .hero-float-card.card-1 {
    left: 5px;
    bottom: 15px;
  }

  .hero-float-card.card-2 {
    right: 5px;
    top: 20px;
  }

  .hero-stat .stat-number {
    font-size: 1.6rem;
  }

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

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .location-card {
    padding: 24px;
  }
}