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

:root {
  --gold: #B8962E;
  --pink: #E8547A;
  --coral: #F08070;
  --white: #ffffff;
  --dark: #1a1a2e;
  --text: #333333;
  --gray: #666666;
  --light-gray: #f8f8f8;
  --light-pink: #FADADD;
  --border: #e8e8e8;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; line-height: 1.3; }

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #9e7c1f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,150,46,0.4); }
.btn-white-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--dark); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 65px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text); transition: color 0.2s; }
.nav-links a:hover { color: var(--pink); }
.nav-links a.active-link { color: var(--pink); font-weight: 600; }
.btn-book {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.btn-book:hover { background: #9e7c1f !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(184,150,46,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero-home {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 15s ease-in-out infinite;
}
.slide-1 { background-image: url('./Images/hero-woman-pink-orchids-profile.jpg'); animation-delay: 0s; }
.slide-2 { background-image: url('./Images/stock-stylist-applying-color-vanity-mirror.jpg'); animation-delay: 5s; }
.slide-3 { background-image: url('./Images/stock-stylist-blowdry-round-brush.jpg'); animation-delay: 10s; }
@keyframes heroFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero-home::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.52); z-index: 1; }
.hero-home .hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-home h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); margin-bottom: 1rem; }
.hero-home p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; }

.hero-page {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hero-page::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-page .hero-content { position: relative; z-index: 1; }
.hero-page h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 0.75rem; }
.hero-page p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto; }

/* ── WHO WE ARE ── */
.who-section { padding: 80px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.photo-grid-wrapper { position: relative; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.photo-grid img { width: 100%; height: 255px; object-fit: cover; border-radius: 8px; }
.grid-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 112px; height: 112px;
  background: var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 20px rgba(232,84,122,0.45);
  z-index: 2;
  padding: 10px;
}

.who-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--pink); margin-bottom: 1rem; }
.who-text p { color: var(--gray); margin-bottom: 1.75rem; font-size: 0.97rem; line-height: 1.78; }
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.icon-circle {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.icon-circle svg { width: 20px; height: 20px; fill: var(--white); }
.feature-item h4 { font-family: 'Inter', sans-serif; font-size: 0.93rem; font-weight: 700; margin-bottom: 3px; }
.feature-item p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.65; }

/* ── SERVICE CARDS ── */
.services-section { padding: 80px 0; background: var(--light-gray); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); color: var(--pink); max-width: 600px; margin: 0 auto; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-header { padding: 20px 16px; border-radius: 8px 8px 0 0; }
.card-header.pink-tint { background: rgba(232,84,122,0.07); border-bottom: 2px solid rgba(232,84,122,0.15); border-top: 3px solid #E8547A; }
.card-header.gold-solid { background: var(--gold); border-top: 3px solid #B8962E; }
.card-header h3 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.card-header.pink-tint h3 { color: var(--pink); }
.card-header.gold-solid h3 { color: var(--white); }
.card-body { padding: 18px 22px; }
.card-body ul { display: flex; flex-direction: column; gap: 7px; }
.card-body ul li { font-size: 15px; color: #333333; line-height: 1.8; padding-left: 20px; position: relative; }
.card-body ul li::before { content: '✓'; position: absolute; left: 0; color: #B8962E; font-weight: 600; }

.services-cta { text-align: center; margin-top: 40px; }
.services-cta a { color: var(--pink); font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.services-cta a:hover { color: var(--gold); gap: 10px; }

/* ── CTA BANNER ── */
.cta-banner { position: relative; padding: 100px 0; background-size: cover; background-position: center; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.60); }
.cta-banner .container { position: relative; z-index: 1; }
.cta-content { max-width: 580px; }
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.cta-banner p { font-size: 0.98rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; line-height: 1.78; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 80px 0; }
.testimonials .section-header { margin-bottom: 48px; }
.testimonials h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--pink); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--pink);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stars { color: #f4b400; font-size: 1rem; margin-bottom: 12px; letter-spacing: 1px; }
.testimonial-card blockquote { font-size: 0.93rem; color: var(--gray); line-height: 1.72; margin-bottom: 16px; font-style: italic; }
.reviewer { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--text); }

/* ── WHY CHOOSE US ── */
.why-section { position: relative; padding: 100px 0; background-size: cover; background-position: center; }
.why-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.why-section .container { position: relative; z-index: 1; }
.why-section .two-col { gap: 60px; align-items: center; }
.why-text .section-kicker { color: var(--gold); }
.why-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); color: var(--white); margin-bottom: 1rem; }
.why-text p { color: rgba(255,255,255,0.82); font-size: 0.97rem; line-height: 1.78; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.15);
}
.feature-card .icon-circle { width: 50px; height: 50px; min-width: 50px; background: var(--gold); margin-bottom: 12px; }
.feature-card .icon-circle svg { width: 22px; height: 22px; fill: var(--white); }
.feature-card h4 { font-family: 'Inter', sans-serif; font-size: 0.93rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.62; }

/* ── OUR VALUE (about page) ── */
.our-value { padding: 80px 0; background: var(--light-pink); }
.our-value .section-header { margin-bottom: 48px; }
.our-value h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); color: var(--pink); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-card .icon-circle { width: 62px; height: 62px; min-width: 62px; background: var(--gold); margin: 0 auto 16px; }
.value-card .icon-circle svg { width: 28px; height: 28px; fill: var(--white); }
.value-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ── CONTACT ── */
.contact-section { padding: 80px 0; }
.contact-section .two-col { align-items: start; }
.contact-info h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--pink); margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); margin-bottom: 2rem; line-height: 1.75; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .icon-circle { width: 46px; height: 46px; min-width: 46px; }
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 0.93rem; color: var(--text); line-height: 1.55; }
.contact-item a:hover { color: var(--pink); }

.social-follow { border-top: 1px solid var(--border); padding-top: 22px; }
.social-follow p { font-size: 0.88rem; font-weight: 600; color: var(--gray); margin-bottom: 12px; }
.social-icons { display: flex; gap: 10px; }
.social-icon-link {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-icon-link:hover { background: var(--pink); transform: translateY(-2px); }
.social-icon-link svg { width: 18px; height: 18px; fill: var(--white); }

.contact-photo img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); }

.map-section { height: 440px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ── */
footer { background: var(--coral); color: var(--white); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 52px;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 16px; }
.footer-about p { font-size: 0.88rem; line-height: 1.78; color: #3a1a00; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.38); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }

.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; color: #3a1a00; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: #3a1a00; transition: color 0.2s; }
.footer-col ul li a:hover { color: #3a1a00; }

.footer-support-list { display: flex; flex-direction: column; gap: 14px; }
.footer-support-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-support-item svg { width: 15px; height: 15px; fill: #3a1a00; min-width: 15px; margin-top: 3px; }
.footer-support-item span, .footer-support-item a { font-size: 0.86rem; color: #3a1a00; line-height: 1.55; }
.footer-support-item a:hover { color: #3a1a00; }

.footer-bottom {
  border-top: 1px solid rgba(58,26,0,0.2);
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p, .footer-bottom a { font-size: 0.82rem; color: rgba(58,26,0,0.6); }
.footer-bottom a:hover { color: #3a1a00; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section .two-col { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    z-index: 999;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 13px 24px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .btn-book { margin: 12px 24px 0 !important; padding: 12px 24px !important; display: block !important; text-align: center; border-bottom: none !important; }

  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .photo-grid img { height: 175px; }
  .grid-badge { width: 90px; height: 90px; font-size: 0.8rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-photo img { height: 280px; }
  .hero-home { min-height: 85vh; }
  .cta-banner { padding: 70px 0; }
  .why-section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-page { min-height: 300px; }
  .map-section { height: 320px; }
}
