/* ==========================================
   PEACH BOUTIQUE – GLOBAL STYLESHEET
   ========================================== */

:root {
  --peach: #f5a58a;
  --peach-deep: #e8855f;
  --peach-light: #fff0e8;
  --peach-pale: #fff8f5;
  --gold: #c9952a;
  --gold-light: #e8c47a;
  --black: #1a1008;
  --dark: #2d1a0e;
  --text: #4a2e1a;
  --text-light: #7a5a46;
  --white: #ffffff;
  --soft: #fff8f5;
  --radius: 18px;
  --shadow: 0 8px 40px rgba(229,133,95,0.15);
  --shadow-deep: 0 20px 60px rgba(229,133,95,0.25);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

@font-face {
    font-family: 'Buttershine';
    src: url('fonts/Buttershine-Script.woff2') format('woff2'),
        url('fonts/Buttershine-Script.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--peach-pale); }
::-webkit-scrollbar-thumb { background: var(--peach); border-radius: 6px; }

/* ══════════════════ NAVBAR ══════════════════ */
.pb-navbar {
  background: rgba(255,248,245,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,165,138,0.2);
/*  padding: 12px 0;*/
padding: 0px 0;
  transition: all 0.4s ease;
}
.pb-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(229,133,95,0.15);
}
.nav-logo { width: 135px; height: 135px; border-radius: 50%; object-fit: cover; border: 2px solid var(--peach); }
.brand-text { font-family: 'Buttershine'; font-size: 4.25rem; color: var(--dark); letter-spacing: 0.5px;font-weight:bold; }
.brand-text span { color: var(--peach-deep); }
.navbar-nav .nav-link { font-size: 0.875rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text) !important; padding: 8px 14px; border-radius: 8px; transition: all 0.3s; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--peach-deep) !important; background: var(--peach-light); }
.btn-contact { background: var(--peach-deep) !important; color: var(--white) !important; border-radius: 50px !important; padding: 8px 22px !important; }
.btn-contact:hover { background: var(--gold) !important; }
.toggler-icon { color: var(--peach-deep); font-size: 1.2rem; }
.navbar-toggler { border: none; box-shadow: none !important; }

/* ══════════════════ HERO ══════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #fff4ee 0%, #ffe8db 40%, #ffd6c4 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,165,138,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-petals {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(245,165,138,0.25) 0%, transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(201,149,42,0.15) 0%, transparent 25%);
  pointer-events: none;
}
.hero-content { padding-top: 3rem; }
.hero-tagline { font-size: 0.8rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--peach-deep); margin-bottom: 1rem; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.2; color: var(--dark); margin-bottom: 1.5rem; }
.hero-title em { color: var(--peach-deep); font-style: italic; }
.hero-sub { font-size: 1.1rem; font-weight: 300; color: var(--text-light); line-height: 1.8; }
.hero-stats { margin-top: 2rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); font-weight: 700; }
.stat-label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
.stat-divider { width: 1px; background: rgba(229,133,95,0.4); }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }

/* Hero Logo */
.hero-logo-wrap { position: relative; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center;margin-top:2em; }
.hero-logo-img { width: 320px; height: 320px; border-radius: 50%; object-fit: cover; position: relative; z-index: 2; box-shadow: 0 20px 60px rgba(229,133,95,0.4); animation: floatLogo 6s ease-in-out infinite; }
.logo-glow-ring { position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 2px dashed rgba(201,149,42,0.5); animation: spin 20s linear infinite; }
.logo-float-icon { position: absolute; width: 44px; height: 44px; border-radius: 50%; background: white; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; color: var(--peach-deep); font-size: 1rem; z-index: 3; animation: floatLogo 4s ease-in-out infinite; }
.ic1 { top: 10px; right: 30px; animation-delay: 0s; }
.ic2 { bottom: 30px; left: 10px; animation-delay: 1.5s; }
.ic3 { bottom: 10px; right: 40px; animation-delay: 3s; }

@keyframes floatLogo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ══════════════════ BUTTONS ══════════════════ */
.btn-peach-primary {
  background: linear-gradient(135deg, var(--peach-deep), var(--peach));
  color: white; border: none; border-radius: 50px;
  padding: 13px 32px; font-size: 0.875rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  box-shadow: 0 8px 25px rgba(232,133,95,0.4);
  transition: all 0.3s;
}
.btn-peach-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(232,133,95,0.5); color: white; background: linear-gradient(135deg, var(--gold), var(--peach-deep)); }
.btn-peach-outline { background: transparent; color: var(--peach-deep); border: 2px solid var(--peach-deep); border-radius: 50px; padding: 11px 30px; font-size: 0.875rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.3s; }
.btn-peach-outline:hover { background: var(--peach-deep); color: white; transform: translateY(-2px); }

/* ══════════════════ SECTIONS ══════════════════ */
.section-pad { padding: 90px 0; }
.bg-soft { background: var(--soft); }
.section-eyebrow { font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--peach-deep); font-weight: 500; margin-bottom: 0.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--dark); line-height: 1.3; }
.section-title em { color: var(--peach-deep); font-style: italic; }
.title-ornament { color: var(--gold); letter-spacing: 8px; font-size: 0.85rem; margin-top: 10px; margin-bottom: 10px; }

/* ══════════════════ INTRO STRIP ══════════════════ */
.intro-strip { background: linear-gradient(135deg, var(--peach-deep), #c97050);margin-top:-4em;position:relative;z-index:999; }
.strip-inner { flex-wrap: wrap; }
.strip-item { color: white; font-size: 0.85rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.strip-dot { color: rgba(255,255,255,0.5); font-size: 0.6rem; }

/* ══════════════════ SERVICE CARDS ══════════════════ */
.service-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  border: 1px solid rgba(245,165,138,0.2);
  transition: all 0.4s; height: 100%;
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--peach), var(--peach-deep)); transform: scaleX(0); transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); border-color: rgba(245,165,138,0.4); }
.service-card.featured { background: linear-gradient(135deg, var(--peach-light), white); border-color: var(--peach); }
.sc-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--peach-light), white); display: flex; align-items: center; justify-content: center; color: var(--peach-deep); font-size: 1.4rem; margin-bottom: 20px; transition: all 0.3s; }
.service-card:hover .sc-icon { background: linear-gradient(135deg, var(--peach-deep), var(--peach)); color: white; }
.service-card h5 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.sc-link { color: var(--peach-deep); text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; transition: gap 0.3s; }
.sc-link:hover { gap: 10px; color: var(--gold); }

/* ══════════════════ WHY SECTION ══════════════════ */
.why-section { background: white; }
.why-img-wrap { position: relative; display: inline-block; }
.why-img { width: 100%; 
/*  max-width: 420px; */
  border-radius: 30px; object-fit: cover; box-shadow: var(--shadow-deep); }
.why-badge { position: absolute; bottom: 24px; left: -20px; background: linear-gradient(135deg, var(--peach-deep), var(--gold)); color: white; padding: 12px 20px; border-radius: 12px; font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow); }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: var(--peach-light); color: var(--peach-deep); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.why-item h6 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.why-item p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ══════════════════ TESTIMONIALS ══════════════════ */
.testi-card { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid rgba(245,165,138,0.15); transition: transform 0.3s; height: 100%; }
.testi-card:hover { transform: translateY(-5px); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testi-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: black; line-height: 1.7; font-style: italic;    font-weight: bold; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--peach), var(--gold)); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ══════════════════ CTA SECTION ══════════════════ */
.cta-section { background: linear-gradient(135deg, var(--dark) 0%, #3d2010 100%); padding: 60px 0; color: white; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-sub { font-size: 1.05rem; color: rgba(255,248,245,0.75); }
.btn-cta-white { background: white; color: var(--dark); border-radius: 50px; padding: 14px 32px; font-weight: 500; letter-spacing: 1px; text-decoration: none; display: inline-block; transition: all 0.3s; }
.btn-cta-white:hover { background: var(--peach-light); transform: translateY(-2px); }
.btn-cta-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); border-radius: 50px; padding: 12px 30px; font-weight: 500; letter-spacing: 1px; text-decoration: none; display: inline-block; transition: all 0.3s; }
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ══════════════════ FOOTER ══════════════════ */
.pb-footer { background: var(--dark); color: rgba(255,248,245,0.75); }
.footer-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--peach); }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: white; }
.footer-about { font-size: 0.875rem; line-height: 1.7; color: rgba(255,248,245,0.65); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(245,165,138,0.15); color: var(--peach); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1rem; transition: all 0.3s; }
.footer-social a:hover { background: var(--peach-deep); color: white; }
.footer-heading { font-family: 'Playfair Display', serif; color: white; font-size: 1rem; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--peach); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,248,245,0.65); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--peach); }
.footer-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,248,245,0.65); }
.footer-contact i { color: var(--peach); width: 16px; }
.footer-contact a { color: rgba(255,248,245,0.65); text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: var(--peach); }
.footer-bottom { border-top: 1px solid rgba(245,165,138,0.15); padding: 10px 0; text-align: center; font-size: 0.8rem; color: rgba(255,248,245,0.45); }

/* ══════════════════ WHATSAPP FAB ══════════════════ */
.whatsapp-fab { position: fixed; bottom: 28px; left: 28px; z-index: 9999; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); animation: waPulse 2.5s infinite; transition: transform 0.3s; }
.whatsapp-fab:hover { transform: scale(1.12); color: white; }


.call-fab{ position: fixed; bottom: 90px; left: 28px; z-index: 9999; width: 56px; height: 56px; border-radius: 50%; background: #0d6efd; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); animation: waPulse 2.5s infinite; transition: transform 0.3s; }
.call-fab:hover { transform: scale(1.12); color: white; }


@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 35px rgba(37,211,102,0.6); } }

/* ══════════════════ PAGE HERO (INNER PAGES) ══════════════════ */
.page-hero {     padding: 160px 0 30px; background: linear-gradient(135deg, #fff4ee 0%, #ffd6c4 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(245,165,138,0.3), transparent); }
.page-hero-eyebrow { font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--peach-deep); font-weight: 500; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--dark); margin: 10px 0; }
.page-hero-title em { color: var(--peach-deep); font-style: italic; }
.page-hero-sub { font-size: 1rem; color: var(--text-light); max-width: 540px; margin: 0 auto; }

/* ══════════════════ GALLERY PAGE ══════════════════ */
.gallery-filter .btn-filter { background: white; border: 2px solid rgba(245,165,138,0.3); border-radius: 50px; padding: 8px 22px; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); cursor: pointer; transition: all 0.3s; }
.gallery-filter .btn-filter.active, .gallery-filter .btn-filter:hover { background: var(--peach-deep); border-color: var(--peach-deep); color: white; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,26,14,0.7), transparent); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ══════════════════ PROCESS STEPS ══════════════════ */
.process-step { text-align: center; position: relative; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--peach-deep), var(--gold)); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 0 auto 20px; box-shadow: var(--shadow); }
.process-step h5 { font-family: 'Playfair Display', serif; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 0.875rem; color: var(--text-light); }

/* ══════════════════ CONTACT ══════════════════ */
.contact-card { background: white; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 1px solid rgba(245,165,138,0.15); text-align: center; height: 100%; }
.contact-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--peach-light); color: var(--peach-deep); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 20px; }
.contact-card h5 { font-family: 'Playfair Display', serif; color: var(--dark); margin-bottom: 10px; }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--text-light); text-decoration: none; }
.contact-card a:hover { color: var(--peach-deep); }
.form-label { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text); font-weight: 500; margin-bottom: 6px; }
.form-control, .form-select { border: 1.5px solid rgba(245,165,138,0.35); border-radius: 12px; padding: 12px 16px; font-size: 0.9rem; color: var(--text); transition: border-color 0.3s; }
.form-control:focus, .form-select:focus { border-color: var(--peach-deep); box-shadow: 0 0 0 3px rgba(232,133,95,0.15); }

/* ══════════════════ ABOUT ══════════════════ */
.about-img { border-radius: 30px; width: 100%; object-fit: cover; box-shadow: var(--shadow-deep); }
.milestone-card { text-align: center; padding: 28px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); border-bottom: 3px solid var(--peach); }
.milestone-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--peach-deep); font-weight: 700; }
.milestone-label { font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }

/* ══════════════════ SCROLL REVEAL ══════════════════ */
.reveal-item { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* ══════════════════ SERVICE DETAIL CARDS ══════════════════ */
.service-detail-card { background: white; border-radius: var(--radius); padding: 36px; border: 1px solid rgba(245,165,138,0.2); 
/*  display: flex; */
  gap: 24px; height: 100%; transition: all 0.3s; }
.service-detail-card:hover { box-shadow: var(--shadow-deep); transform: translateY(-4px); border-color: rgba(245,165,138,0.5); }
.service-detail-card.featured-sdc { background: linear-gradient(135deg, var(--peach-light), white); border-color: var(--peach); }
.sdc-icon { width: 56px; height: 56px; min-width: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--peach-deep), var(--peach)); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.sdc-body h4 { font-family: 'Playfair Display', serif; color: var(--dark); margin-bottom: 12px; font-size: 1.25rem; }
.sdc-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.sdc-features { list-style: none; padding: 0; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sdc-features li { font-size: 0.875rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.sdc-features li i { color: var(--peach-deep); font-size: 0.85rem; }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 991px) {
  .hero-content { padding-top: 2rem; }
  .section-pad { padding: 60px 0; }
  .hero-logo-wrap { width: 260px; height: 260px; }
  .hero-logo-img { width: 220px; height: 220px; }
  .logo-glow-ring { width: 250px; height: 250px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .why-badge { left: 0; }
  .strip-dot { display: none; }
}

@media (min-width: 992px){
.navbar-expand-lg .navbar-nav .nav-link {
     padding-right: 1em; 
    padding-left: 1em; 
}
}

.footer-bottom p{
  margin-bottom: 0em;
}


@media screen and (min-width: 200px) and (max-width: 767px) {
 

.nav-logo{
      width: 110px;
    height: 110px;
}

.brand-text{
  font-size: 2.60rem;
}


}