:root {
  --pink-1: #ffb6d9;
  --pink-2: #ff7eb3;
  --pink-3: #ff4d9d;
  --blue-1: #a8d8ff;
  --blue-2: #7cb8ff;
  --blue-3: #4d9dff;
  --light: #fff7fb;
  --dark: #4a2b52;
  --gradient: linear-gradient(135deg, #ff7eb3 0%, #a8d8ff 100%);
  --shadow: 0 20px 40px rgba(255, 77, 157, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #5a4a5e;
  background: var(--light);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: rgba(255, 247, 251, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 77, 157, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
}

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

.brand em {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: #6a5a6e;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--pink-3);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--pink-3);
  border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #fff7fb 0%, #eaf4ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(255, 77, 157, 0.25);
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.05rem;
  color: #6a5a6e;
  max-width: 500px;
  margin-bottom: 30px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 77, 157, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 77, 157, 0.4);
}

.btn-outline {
  border: 2px solid var(--blue-2);
  color: var(--blue-3);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue-2);
  color: #fff;
}

.btn-block {
  width: 100%;
}

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

.nail-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.nail {
  filter: drop-shadow(0 18px 25px rgba(255, 77, 157, 0.25));
  animation: float 4s ease-in-out infinite;
}
.nail-1 { width: 190px; animation-delay: 0s; }
.nail-2 { width: 175px; animation-delay: 0.6s; }
.nail-3 { width: 165px; animation-delay: 1.2s; }

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

.hero-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(2px);
  animation: blob 6s ease-in-out infinite;
}
.b1 { width: 90px; height: 90px; background: var(--pink-1); top: 5%; left: 4%; }
.b2 { width: 60px; height: 60px; background: var(--blue-2); bottom: 10%; right: 2%; animation-delay: 1s; }
.b3 { width: 40px; height: 40px; background: var(--pink-2); top: 20%; right: 18%; animation-delay: 2s; }

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

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  color: var(--pink-3);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-nail {
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(77, 157, 255, 0.25));
  border-radius: 24px;
}

.about-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gradient);
  color: #fff;
  padding: 20px 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.about-label {
  font-size: 0.85rem;
  line-height: 1.3;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #6a5a6e;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-list {
  list-style: none;
}
.about-list li {
  padding: 8px 0;
  color: #5a4a5e;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: linear-gradient(160deg, #eaf4ff 0%, #fff7fb 100%);
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.section-head p {
  color: #6a5a6e;
}

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

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 77, 157, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink-1);
  box-shadow: 0 20px 40px rgba(255, 77, 157, 0.15);
}

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

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  color: #6a5a6e;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.price {
  display: inline-block;
  background: linear-gradient(135deg, #ffe0f0, #e0f0ff);
  color: var(--pink-3);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
}

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

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 77, 157, 0.1);
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(160deg, #fff7fb 0%, #eaf4ff 100%);
}

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

.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: #6a5a6e;
  margin-bottom: 28px;
}

.contact-list {
  list-style: none;
}
.contact-list li {
  padding: 12px 0;
  color: #5a4a5e;
  font-weight: 500;
  border-bottom: 1px dashed #e8d8f0;
}

.contact-form {
  background: #fff;
  padding: 34px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 2px solid #f0e0f5;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  background: #fffafd;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pink-2);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  font-weight: 500;
  color: #22a06b;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--dark);
  color: #e8d8f0;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .brand-text {
  color: #fff;
}
.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.1);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.socials a:hover {
  background: var(--gradient);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-container,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 120px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 70%;
    height: calc(100vh - 70px);
    padding: 40px 30px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s;
  }
  .nav-links.open {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 550px) {
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .nail-1 { width: 140px; }
  .nail-2 { width: 125px; }
  .nail-3 { width: 115px; }
  .about-card {
    left: 0;
  }
}
