:root {
    --purple: #2D1B8E;
    --purple-light: #4A2FBF;
    --pink: #FF2D8B;
    --pink-light: #FF6BB3;
    --peach: #FFAA70;
    --white: #FFFFFF;
    --off-white: #FFF8FC;
    --light-bg: #F9F0F7;
    --dark: #1A0F50;
    --text-dark: #1A0F50;
    --text-mid: #4A3B7C;
    --text-muted: #8B7BAD;
    --border: rgba(45,27,142,0.12);
  }

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

  html { scroll-behavior: smooth; }

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

  h1, h2, h3, .logo-text { font-family: 'Staatliches', sans-serif; letter-spacing: 1px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 92px;
    transition: background 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 24px rgba(45,27,142,0.07);
  }

  .nav-logo {
    display: flex; align-items: center; text-decoration: none;
    position: relative;
  }
  /* Logo image — natural aspect ratio, never stretched or cropped, no background box */
  .nav-logo-img {
    height: 48px;            /* fixed height, width scales automatically */
    width: auto;             /* preserves aspect ratio */
    max-width: 220px;        /* safety cap on very wide viewports */
    object-fit: contain;     /* never distort */
    display: block;
    transition: opacity 0.35s ease;
  }
  /* Two stacked versions: light (for dark hero) + dark (for white scrolled navbar).
     They crossfade so the logo is always readable against the current background. */
  .nav-logo-dark { position: absolute; top: 0; left: 0; opacity: 0; }
  .nav-logo-light { opacity: 1; }
  nav.scrolled .nav-logo-light { opacity: 0; }
  nav.scrolled .nav-logo-dark  { opacity: 1; }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.88);
    text-decoration: none; letter-spacing: 0.2px;
    transition: color 0.3s ease;
    position: relative;
  }
  .nav-links a:hover { color: white; }
  nav.scrolled .nav-links a { color: var(--text-mid); }
  nav.scrolled .nav-links a:hover { color: var(--purple); }

  /* Luxury underline — slides out from centre on hover (non-dropdown links only) */
  .nav-links > li:not(.nav-dropdown) > a::after {
    content: ''; position: absolute;
    bottom: -3px; left: 50%; right: 50%;
    height: 1.5px; background: currentColor; opacity: 0.7;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1),
                right 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links > li:not(.nav-dropdown) > a:hover::after { left: 0; right: 0; }

  .nav-cta {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: white !important; border: none; border-radius: 100px;
    padding: 14px 34px; font-size: 15px; font-weight: 600;
    font-family: 'Poppins', sans-serif; letter-spacing: 0.2px;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,45,139,0.4);
    transition: box-shadow 0.3s ease, transform 0.25s ease, letter-spacing 0.25s ease;
    white-space: nowrap; flex-shrink: 0;
  }
  .nav-cta:hover {
    box-shadow: 0 8px 32px rgba(255,45,139,0.6);
    transform: translateY(-2px);
    letter-spacing: 0.5px;
  }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: white; border-radius: 2px;
    transition: all 0.3s;
  }
  nav.scrolled .hamburger span { background: var(--purple); }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--dark) 0%, #3D1A6E 50%, #6B1A5E 100%);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 100px 5% 60px;
    position: relative; overflow: hidden;
  }

  .hero-bg-circles {
    position: absolute; inset: 0; pointer-events: none;
  }
  .hero-bg-circles .c1 {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%; border: 1px solid rgba(255,45,139,0.15);
    top: -100px; right: -100px;
  }
  .hero-bg-circles .c2 {
    position: absolute; width: 400px; height: 400px;
    border-radius: 50%; border: 1px solid rgba(255,170,112,0.12);
    bottom: -80px; left: -80px;
  }
  .hero-bg-circles .c3 {
    position: absolute; width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,45,139,0.08), transparent);
    top: 30%; left: 20%;
  }

  .hero-content { position: relative; z-index: 1; max-width: 750px; }

  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,107,179,0.4);
    color: var(--pink-light); font-size: 12px; font-weight: 500;
    padding: 6px 18px; border-radius: 20px; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 24px;
  }

  .hero-title {
    font-family: 'Staatliches', sans-serif;
    font-size: clamp(52px, 9vw, 100px);
    line-height: 0.95; letter-spacing: 2px;
    color: white; margin-bottom: 8px;
  }
  .hero-title .pink { color: var(--pink); }
  .hero-title .peach { color: var(--peach); }

  .hero-tagline {
    font-size: clamp(14px, 2vw, 17px);
    color: rgba(255,255,255,0.75);
    font-weight: 300; letter-spacing: 0.3px;
    margin: 20px auto 36px; max-width: 520px; line-height: 1.7;
  }

  .hero-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  }
  .btn-whatsapp {
    background: #25D366; color: white;
    border: none; border-radius: 30px;
    padding: 14px 30px; font-size: 15px; font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer; text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

  .btn-call {
    background: transparent; color: white;
    border: 2px solid rgba(255,255,255,0.4); border-radius: 30px;
    padding: 14px 30px; font-size: 15px; font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer; text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }
  .btn-call:hover {
    border-color: var(--pink-light);
    background: rgba(255,45,139,0.15);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: flex; gap: 40px; justify-content: center;
    margin-top: 56px; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Staatliches', sans-serif;
    font-size: 40px; color: white; letter-spacing: 1px; line-height: 1;
  }
  .stat-num span { color: var(--pink); }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; margin-top: 4px; line-height: 1.5; }

  /* ── SECTION BASE ── */
  section { padding: 90px 5%; }

  .section-eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--pink);
    display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--pink); opacity: 0.5;
  }
  .section-eyebrow::before { display: none; }

  .section-title {
    font-family: 'Staatliches', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text-dark); line-height: 1; margin-bottom: 16px;
  }
  .section-title .pink { color: var(--pink); }
  .section-subtitle {
    font-size: 15px; color: var(--text-muted); font-weight: 300;
    max-width: 520px; line-height: 1.7; margin-bottom: 48px;
  }

  /* ── PORTFOLIO ── */
  #portfolio { background: var(--light-bg); }

  .portfolio-tabs {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
  }
  .tab-btn {
    padding: 8px 20px; border-radius: 25px;
    border: 1.5px solid var(--border);
    background: white; color: var(--text-mid);
    font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
  }
  .tab-btn.active, .tab-btn:hover {
    background: var(--purple); color: white; border-color: var(--purple);
  }

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

  .portfolio-card {
    border-radius: 16px; overflow: hidden;
    position: relative; aspect-ratio: 3/4;
    background: linear-gradient(135deg, #2D1B8E, #8B1A6E);
    cursor: pointer;
  }
  .portfolio-card.wide { grid-column: span 2; aspect-ratio: 16/9; }

  .portfolio-card-inner {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 20px; position: relative;
  }

  /* Placeholder photo patterns */
  .photo-w1 { background: linear-gradient(160deg,#1a0f50 0%,#6b1a5e 60%,#ff2d8b22 100%); }
  .photo-w2 { background: linear-gradient(160deg,#3d1a6e 0%,#2d1b8e 100%); }
  .photo-e1 { background: linear-gradient(160deg,#4a2fbf 0%,#ff2d8b33 100%); }
  .photo-m1 { background: linear-gradient(160deg,#6b1a5e 0%,#ffaa7033 100%); }
  .photo-b1 { background: linear-gradient(160deg,#2d1b8e 0%,#ff6bb333 100%); }
  .photo-f1 { background: linear-gradient(160deg,#1a0f50 0%,#4a2fbf 100%); }

  .photo-icon {
    font-size: 48px; opacity: 0.35; margin-bottom: 12px;
  }
  .photo-label {
    font-family: 'Staatliches', sans-serif;
    font-size: 22px; color: rgba(255,255,255,0.5); letter-spacing: 1px;
  }
  .photo-sublabel {
    font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 4px; font-weight: 300;
  }

  .portfolio-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,15,80,0.92), transparent);
    padding: 28px 20px 20px;
    transform: translateY(100%); transition: transform 0.3s ease;
  }
  .portfolio-card:hover .portfolio-card-overlay { transform: translateY(0); }
  .overlay-title { font-family: 'Staatliches', sans-serif; font-size: 22px; color: white; }
  .overlay-sub { font-size: 12px; color: var(--pink-light); font-weight: 300; margin-top: 2px; }

  /* ── PACKAGES ── */
  #packages { background: white; }

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

  .pkg-card {
    border-radius: 20px; padding: 36px 28px;
    border: 1.5px solid var(--border);
    position: relative; transition: transform 0.2s, box-shadow 0.2s;
    background: white;
  }
  .pkg-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(45,27,142,0.1); }
  .pkg-card.featured {
    background: linear-gradient(160deg, var(--purple), #6B1A5E);
    border-color: transparent; color: white;
  }
  .pkg-popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--pink); color: white;
    font-size: 11px; font-weight: 600; letter-spacing: 1px;
    padding: 4px 16px; border-radius: 20px; white-space: nowrap;
  }

  .pkg-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--light-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
  }
  .pkg-card.featured .pkg-icon { background: rgba(255,255,255,0.15); }

  .pkg-name {
    font-family: 'Staatliches', sans-serif;
    font-size: 28px; letter-spacing: 1px; margin-bottom: 4px;
    color: var(--text-dark);
  }
  .pkg-card.featured .pkg-name { color: white; }

  .pkg-desc {
    font-size: 13px; color: var(--text-muted); font-weight: 300; margin-bottom: 24px;
  }
  .pkg-card.featured .pkg-desc { color: rgba(255,255,255,0.65); }

  .pkg-price {
    margin-bottom: 28px;
  }
  .pkg-from { font-size: 12px; color: var(--text-muted); font-weight: 300; }
  .pkg-card.featured .pkg-from { color: rgba(255,255,255,0.55); }
  .pkg-amount {
    font-family: 'Staatliches', sans-serif;
    font-size: 46px; color: var(--purple); line-height: 1;
  }
  .pkg-card.featured .pkg-amount { color: var(--peach); }
  .pkg-unit { font-size: 13px; color: var(--text-muted); font-weight: 300; }
  .pkg-card.featured .pkg-unit { color: rgba(255,255,255,0.55); }

  .pkg-features { list-style: none; margin-bottom: 32px; }
  .pkg-features li {
    font-size: 13px; font-weight: 300;
    color: var(--text-mid); padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px;
  }
  .pkg-features li:last-child { border-bottom: none; }
  .pkg-card.featured .pkg-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }
  .pkg-features .check { color: var(--pink); font-size: 15px; }
  .pkg-card.featured .pkg-features .check { color: var(--peach); }

  .btn-pkg {
    width: 100%; padding: 13px; border-radius: 25px;
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
    cursor: pointer; text-decoration: none; display: block; text-align: center;
    transition: all 0.2s;
  }
  .btn-pkg-outline {
    background: transparent;
    border: 1.5px solid var(--purple); color: var(--purple);
  }
  .btn-pkg-outline:hover { background: var(--purple); color: white; }
  .btn-pkg-filled {
    background: linear-gradient(135deg, var(--pink), #FF6B35);
    color: white; border: none;
  }
  .btn-pkg-filled:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ── ABOUT ── */
  #about { background: var(--light-bg); }

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

  .about-visual {
    position: relative;
  }
  .about-img-main {
    width: 100%; aspect-ratio: 4/5; border-radius: 24px;
    background: linear-gradient(160deg, var(--purple), #8B1A6E);
    display: flex; align-items: center; justify-content: center;
  }
  .about-img-float {
    position: absolute; bottom: -24px; right: -24px;
    width: 140px; height: 140px; border-radius: 20px;
    background: linear-gradient(135deg, var(--pink), var(--peach));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 12px 40px rgba(255,45,139,0.35);
  }
  .float-num {
    font-family: 'Staatliches', sans-serif;
    font-size: 46px; color: white; line-height: 1;
  }
  .float-label { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 500; letter-spacing: 0.5px; }

  .about-content .section-subtitle { margin-bottom: 28px; }

  .about-points { list-style: none; margin-bottom: 36px; }
  .about-points li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--border);
  }
  .about-points li:last-child { border-bottom: none; }
  .about-point-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; margin-top: 2px;
  }
  .about-point-text strong {
    display: block; font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 2px;
  }
  .about-point-text span { font-size: 13px; color: var(--text-muted); font-weight: 300; }

  /* ── REVIEWS ── */
  #reviews { background: white; }

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

  .review-card {
    background: var(--light-bg); border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: transform 0.2s;
  }
  .review-card:hover { transform: translateY(-3px); }
  .review-card.featured-review {
    background: linear-gradient(160deg, var(--purple), #6B1A5E);
    border-color: transparent;
  }

  .review-stars {
    color: #FFB800; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px;
  }
  .review-text {
    font-size: 14px; font-weight: 300; line-height: 1.75;
    color: var(--text-mid); margin-bottom: 20px; font-style: italic;
  }
  .review-card.featured-review .review-text { color: rgba(255,255,255,0.8); }

  .review-author {
    display: flex; align-items: center; gap: 12px;
  }
  .review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 14px; color: white; flex-shrink: 0;
  }
  .review-card.featured-review .review-avatar {
    background: rgba(255,255,255,0.2);
  }
  .review-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }
  .review-card.featured-review .review-name { color: white; }
  .review-occasion { font-size: 12px; color: var(--text-muted); font-weight: 300; margin-top: 2px; }
  .review-card.featured-review .review-occasion { color: rgba(255,255,255,0.55); }

  .google-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--light-bg); border: 1px solid var(--border);
    border-radius: 25px; padding: 10px 20px; font-size: 13px;
    font-weight: 500; color: var(--text-mid); margin-bottom: 36px;
    text-decoration: none;
  }
  .google-g {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC04, #34A853);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 12px; font-weight: 700;
  }

  /* ── CONTACT ── */
  #contact { background: linear-gradient(160deg, var(--dark) 0%, #3D1A6E 100%); }
  #contact .section-eyebrow { color: var(--pink-light); }
  #contact .section-title { color: white; }
  #contact .section-subtitle { color: rgba(255,255,255,0.6); }

  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  }

  .contact-info { display: flex; flex-direction: column; gap: 20px; }

  .contact-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 20px;
    text-decoration: none; transition: background 0.2s, transform 0.2s;
  }
  .contact-item:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }

  .contact-icon {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
  }
  .contact-icon.whatsapp { background: rgba(37,211,102,0.2); }
  .contact-icon.phone { background: rgba(255,45,139,0.2); }
  .contact-icon.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  }
  .contact-icon.map { background: rgba(255,170,112,0.2); }

  .contact-item-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 3px; }
  .contact-item-value { font-size: 15px; font-weight: 500; color: white; }
  .contact-item-sub { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; margin-top: 2px; }

  .map-embed {
    width: 100%; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1); margin-top: 4px;
    background: rgba(255,255,255,0.06);
    height: 180px; display: flex; align-items: center; justify-content: center;
  }
  .map-placeholder { color: rgba(255,255,255,0.35); font-size: 13px; font-weight: 300; text-align: center; }

  .inquiry-form {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 36px 32px;
  }

  .form-title {
    font-family: 'Staatliches', sans-serif;
    font-size: 28px; color: white; letter-spacing: 1px; margin-bottom: 24px;
  }

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

  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block; font-size: 12px; color: rgba(255,255,255,0.5);
    font-weight: 400; margin-bottom: 6px; letter-spacing: 0.3px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
    padding: 12px 14px; font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 300; color: white;
    transition: border-color 0.2s, background 0.2s; outline: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-group select option { background: #3D1A6E; color: white; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--pink-light); background: rgba(255,255,255,0.12);
  }
  .form-group textarea { height: 100px; resize: none; }

  .btn-submit {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--pink), var(--peach));
    color: white; border: none; border-radius: 25px;
    font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 500;
    cursor: pointer; letter-spacing: 0.3px;
    transition: opacity 0.2s, transform 0.15s; margin-top: 8px;
  }
  .btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 36px 5%; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-logo {
    font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 600;
    margin-bottom: 8px;
  }
  .footer-logo .purple { color: var(--purple-light); }
  .footer-logo .pink { color: var(--pink); }
  footer p { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 300; }

  /* ── FLOATING ACTIONS ── */
  .floating-actions {
    position: fixed; bottom: 30px; right: 24px; z-index: 999;
    display: flex; flex-direction: column; gap: 12px;
  }
  .fab {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; text-decoration: none; border: none;
    cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
  .fab-wa { background: #25D366; }
  .fab-call { background: var(--pink); }


  /* ── NAV DROPDOWN ── */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
  .nav-dropdown > a::after {
    content: ''; display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.7;
    transition: transform 0.25s ease;
  }
  .nav-dropdown:hover > a::after { transform: rotate(-180deg); }

  .nav-drop-menu {
    position: absolute; top: calc(100% + 18px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: white; border-radius: 16px; padding: 8px;
    min-width: 230px;
    box-shadow: 0 20px 60px rgba(45,27,142,0.18), 0 2px 8px rgba(45,27,142,0.08);
    border: 1px solid var(--border);
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
  }
  .nav-dropdown:hover .nav-drop-menu,
  .nav-dropdown:focus-within .nav-drop-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-drop-menu a {
    display: block; padding: 10px 16px; border-radius: 10px;
    color: var(--text-mid) !important; font-size: 13px; font-weight: 400 !important;
    text-decoration: none; transition: background 0.15s, color 0.15s;
    letter-spacing: 0.3px;
  }
  .nav-drop-menu a:hover { background: var(--light-bg); color: var(--purple) !important; }
  .drop-label {
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-muted); padding: 8px 16px 4px; display: block;
  }

  /* ── MOBILE PORTFOLIO DROPDOWN — Premium Glassmorphism ── */
  .nav-drop-mobile { display: none; }

  .nav-links.nav-open .nav-drop-menu  { display: none !important; }
  .nav-links.nav-open .nav-dropdown > a::after { display: none; }

  .nav-links.nav-open .nav-drop-mobile {
    display: flex; flex-direction: column; gap: 3px;
    /* glassmorphism card */
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 18px;
    box-shadow:
      0 4px 24px rgba(45,27,142,0.09),
      inset 0 1px 0 rgba(255,255,255,0.9);
    padding: 8px;
    margin: 0 -4px; /* slightly wider than parent padding */
  }

  /* Individual item */
  .dm-item {
    display: flex; align-items: center; gap: 13px;
    padding: 13px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 500; letter-spacing: 0.1px;
    min-height: 52px; /* comfortable tap target */
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    position: relative; overflow: hidden;
    /* stagger-in animation — reset each time menu opens */
    opacity: 0;
    animation: dmSlideIn 0.32s cubic-bezier(0.22,1,0.36,1) forwards;
  }

  /* Stagger delays */
  .dm-item:nth-child(1) { animation-delay: 0.04s; }
  .dm-item:nth-child(2) { animation-delay: 0.08s; }
  .dm-item:nth-child(3) { animation-delay: 0.12s; }
  .dm-item:nth-child(4) { animation-delay: 0.16s; }
  .dm-item:nth-child(5) { animation-delay: 0.20s; }
  .dm-item:nth-child(6) { animation-delay: 0.24s; }
  .dm-item:nth-child(7) { animation-delay: 0.28s; }
  .dm-item:nth-child(8) { animation-delay: 0.32s; }

  .dm-item:hover {
    background: rgba(45,27,142,0.06);
    transform: translateX(3px);
    color: var(--purple);
  }
  .dm-item:active {
    background: rgba(45,27,142,0.1);
    transform: translateX(1px) scale(0.99);
  }

  /* Active / selected item */
  .dm-item.dm-active {
    background: linear-gradient(135deg,
      rgba(45,27,142,0.1) 0%,
      rgba(255,45,139,0.07) 100%);
    color: var(--purple);
    border: 1px solid rgba(45,27,142,0.12);
  }
  .dm-item.dm-active .dm-icon {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(255,45,139,0.35);
  }
  .dm-item.dm-active .dm-label { font-weight: 600; color: var(--purple); }

  /* Icon badge */
  .dm-icon {
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    background: rgba(45,27,142,0.07);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; line-height: 1;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  }
  .dm-item:hover .dm-icon {
    background: rgba(45,27,142,0.12);
    transform: scale(1.08);
  }

  /* Label */
  .dm-label {
    flex: 1;
    transition: color 0.2s ease;
  }

  /* Slide-in keyframe */
  @keyframes dmSlideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links { display: none; } .nav-cta { display: flex; }
    .hamburger { display: flex; }

    /* Logo: slightly smaller on mobile, still natural aspect ratio */
    .nav-logo-img { height: 40px; max-width: 170px; }

    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-card.wide { grid-column: span 2; }

    .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 360px; }
    .about-img-float { bottom: -16px; right: -12px; width: 110px; height: 110px; }
    .float-num { font-size: 36px; }

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

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

    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-card.wide { grid-column: span 1; aspect-ratio: 16/9; }
    section { padding: 70px 5%; }
    .hero-stats { gap: 24px; }
  }

  .hero-slideshow {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center top;
    opacity: 0; transition: opacity 1.5s ease-in-out;
  }
  .hero-slide.active { opacity: 1; }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(160deg, rgba(26,15,80,0.82) 0%, rgba(61,26,110,0.78) 50%, rgba(107,26,94,0.75) 100%);
  }
  .hero-bg-circles, .hero-content { position: relative; z-index: 1; }


  .photo-strip::-webkit-scrollbar { height: 4px; }
  .photo-strip::-webkit-scrollbar-track { background: var(--light-bg); border-radius: 2px; }
  .photo-strip::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }
  .strip-photo {
    flex-shrink: 0; width: 200px; height: 260px;
    border-radius: 12px; overflow: hidden;
  }
  .strip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.3s; }
  .strip-photo:hover img { transform: scale(1.04); }


  /* Baby Shower Section */
  .bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
  }
  .bs-card {
    position: relative; border-radius: 14px; overflow: hidden;
    aspect-ratio: 3/4; cursor: pointer;
  }
  .bs-card.bs-wide { grid-column: span 2; aspect-ratio: 16/9; }
  .bs-card img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    transition: transform 0.4s ease;
  }
  .bs-card:hover img { transform: scale(1.05); }
  .bs-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(232,93,154,0.7), transparent);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 16px;
  }
  .bs-card:hover .bs-overlay { opacity: 1; }
  .bs-overlay span {
    font-family: Poppins, sans-serif; font-size: 13px;
    font-weight: 500; color: white; letter-spacing: 0.3px;
  }
  .bs-strip {
    display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px;
  }
  .bs-strip::-webkit-scrollbar { height: 4px; }
  .bs-strip::-webkit-scrollbar-thumb { background: #e85d9a; border-radius: 2px; }
  .bs-strip-item {
    flex-shrink: 0; width: 160px; height: 210px;
    border-radius: 12px; overflow: hidden;
  }
  .bs-strip-item img { width:100%; height:100%; object-fit:cover; object-position:center top; transition: transform 0.3s; }
  .bs-strip-item:hover img { transform: scale(1.05); }

  @media(max-width:900px) {
    .bs-grid { grid-template-columns: repeat(2,1fr); }
    .bs-card.bs-wide { grid-column: span 2; }
  }
  @media(max-width:600px) {
    .bs-grid { grid-template-columns: 1fr 1fr; }
  }
/* ============================================================
   ADDITIONS — Hamburger, Filter, Lightbox, Accessibility
   ============================================================ */

/* ── Hamburger open state ── */
.nav-links.nav-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 92px; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  padding: 16px 5% 24px;
  gap: 2px;
  border-bottom: 1px solid rgba(45,27,142,0.07);
  box-shadow: 0 16px 40px rgba(45,27,142,0.07);
  z-index: 999;
  animation: slideDown 0.28s cubic-bezier(0.22,1,0.36,1);
}
/* Top-level items only — not dm-items inside the portfolio list */
.nav-links.nav-open > li > a:not(.dm-item) {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 500; color: var(--text-dark);
  padding: 15px 4px;
  border-bottom: 1px solid rgba(45,27,142,0.07);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-links.nav-open > li > a:not(.dm-item):hover { color: var(--purple); padding-left: 6px; }
.nav-links.nav-open > li:last-child > a:not(.dm-item) { border-bottom: none; }
/* Remove the old catch-all rule below to prevent it from corrupting dm-item layout */
.nav-links.nav-open a:not(.dm-item) { }

/* Hamburger animated to X */
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform 0.3s ease, opacity 0.2s; }

/* ── Portfolio filter transition ── */
.portfolio-card {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.portfolio-card[style*="display: none"] {
  pointer-events: none;
}

/* ── FadeIn keyframe ── */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Lightbox ── */
#lightbox { display: none; }
#lb-close:hover, #lb-prev:hover, #lb-next:hover {
  background: rgba(255,45,139,0.5) !important;
  transform: scale(1.1);
  transition: all 0.2s;
}
#lb-prev:hover { transform: translateY(-50%) scale(1.1); }
#lb-next:hover { transform: translateY(-50%) scale(1.1); }

/* ── Accessibility: Focus indicators ── */
*:focus-visible {
  outline: 3px solid var(--pink) !important;
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--pink) !important;
}

/* ── Form validation states ── */
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #FF2D8B !important;
  background: rgba(255,45,139,0.08) !important;
}
.form-group input:valid:not(:placeholder-shown) {
  border-color: #25D366 !important;
}

/* ── Lazy loading fade-in ── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded, img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* ── Skip link accessibility ── */
.skip-link:focus {
  top: 0 !important;
  outline: 3px solid white;
}

/* ============================================================
   PREMIUM PORTFOLIO — Masonry Redesign
   ============================================================ */
.pf-filters{
  display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:44px;
}
.pf-pill{
  padding:10px 24px;border-radius:100px;border:1px solid var(--border);
  background:transparent;color:var(--text-mid);
  font-family:'Poppins',sans-serif;font-size:13px;font-weight:400;letter-spacing:0.3px;
  cursor:pointer;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);white-space:nowrap;
}
.pf-pill:hover{border-color:var(--purple);color:var(--purple)}
.pf-pill.active{
  background:var(--text-dark);color:#fff;border-color:var(--text-dark);
}

/* Masonry via CSS columns */
.pf-masonry{
  column-count:3;column-gap:16px;
}
@media(max-width:1024px){.pf-masonry{column-count:2}}
@media(max-width:640px){.pf-masonry{column-count:1;column-gap:0}}

.pf-item{
  break-inside:avoid;margin-bottom:16px;border-radius:12px;overflow:hidden;
  position:relative;cursor:pointer;background:var(--light-bg);
  opacity:0;transform:translateY(20px);
  transition:opacity 0.6s ease,transform 0.6s ease;
}
.pf-item.revealed{opacity:1;transform:translateY(0)}
.pf-item img{
  width:100%;height:auto;display:block;
  transition:transform 0.7s cubic-bezier(0.2,0,0.2,1);
  will-change:transform;
}
/* Safety net: the width/height attributes on <img> are the thumbnail's native
   size; this guarantees the browser always scales them to the column width and
   never renders a tile at 0px height. */
.pf-item img{max-width:100%;}
.pf-item:hover img{transform:scale(1.06)}
.pf-item::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(26,15,80,0.12),transparent 40%);
  opacity:0;transition:opacity 0.4s ease;pointer-events:none;
}
.pf-item:hover::after{opacity:1}

/* Load more */
.pf-loadmore-wrap{text-align:center;margin-top:44px}
.pf-loadmore{
  padding:14px 44px;border-radius:100px;border:1px solid var(--text-dark);
  background:transparent;color:var(--text-dark);
  font-family:'Poppins',sans-serif;font-size:14px;font-weight:500;letter-spacing:0.5px;
  cursor:pointer;transition:all 0.3s ease;
}
.pf-loadmore:hover{background:var(--text-dark);color:#fff;transform:translateY(-2px)}
.pf-loadmore.hidden{display:none}

/* Premium fullscreen lightbox */
.pf-lb{
  position:fixed;inset:0;z-index:10000;
  background:rgba(12,8,30,0.97);backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transition:opacity 0.4s ease,visibility 0.4s ease;
}
.pf-lb.open{opacity:1;visibility:visible}
.pf-lb-img{
  max-width:90vw;max-height:88vh;object-fit:contain;border-radius:6px;
  opacity:0;transform:scale(0.94);
  transition:opacity 0.45s cubic-bezier(0.2,0,0.2,1),transform 0.45s cubic-bezier(0.2,0,0.2,1);
  box-shadow:0 30px 80px rgba(0,0,0,0.5);
}
.pf-lb.open .pf-lb-img{opacity:1;transform:scale(1)}
.pf-lb-btn{
  position:absolute;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.15);
  color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;
  border-radius:50%;transition:all 0.25s ease;backdrop-filter:blur(10px);
}
.pf-lb-btn:hover{background:rgba(255,255,255,0.2);transform:scale(1.08)}
.pf-lb-close{top:24px;right:24px;width:48px;height:48px;font-size:22px}
.pf-lb-prev,.pf-lb-next{top:50%;transform:translateY(-50%);width:56px;height:56px;font-size:26px}
.pf-lb-prev{left:24px}
.pf-lb-next{right:24px}
.pf-lb-prev:hover,.pf-lb-next:hover{transform:translateY(-50%) scale(1.08)}
.pf-lb-counter{
  position:absolute;bottom:28px;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,0.6);font-family:'Poppins',sans-serif;font-size:13px;letter-spacing:1px;
}
@media(max-width:640px){
  .pf-lb-prev,.pf-lb-next{width:44px;height:44px;font-size:20px}
  .pf-lb-prev{left:12px}.pf-lb-next{right:12px}
  .pf-lb-close{top:16px;right:16px;width:42px;height:42px}
}

/* ============================================================
   INSTAGRAM — Premium Minimal
   ============================================================ */

/* ── Section ── */
.ig-section {
  padding: 96px 5%;
  background: white;
  text-align: center;
}
.ig-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Large Instagram icon */
.ig-section > .ig-inner > .ig-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-bottom: 22px;
  transition: transform 0.35s cubic-bezier(0.2,0,0.2,1),
              box-shadow  0.35s cubic-bezier(0.2,0,0.2,1);
}
.ig-section > .ig-inner > .ig-icon svg { width: 26px; height: 26px; }
.ig-section:hover .ig-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 36px rgba(225,48,108,0.35);
}

.ig-sub {
  font-size: 12px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 18px;
}

.ig-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 300; line-height: 1.45;
  color: var(--text-dark); letter-spacing: -0.3px;
  margin-bottom: 36px;
}

/* Instagram follow button */
.ig-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 75%, #FCAF45 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: white; text-decoration: none;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.2px;
  transition: background-position 0.5s ease,
              box-shadow 0.35s ease,
              transform 0.25s ease;
  box-shadow: 0 6px 24px rgba(225,48,108,0.3);
}
.ig-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.ig-btn:hover {
  background-position: 100% 50%;
  box-shadow: 0 10px 36px rgba(225,48,108,0.5);
  transform: translateY(-3px);
}

/* ── Nav Instagram icon ── */
.nav-ig {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  text-decoration: none; flex-shrink: 0;
  transition: color 0.3s, background 0.25s, transform 0.2s;
  margin-right: 4px;
}
.nav-ig svg { width: 18px; height: 18px; }
.nav-ig:hover {
  color: white;
  background: rgba(225,48,108,0.18);
  transform: scale(1.1);
}
nav.scrolled .nav-ig {
  color: var(--text-muted);
}
nav.scrolled .nav-ig:hover {
  color: #E1306C;
  background: rgba(225,48,108,0.08);
}
/* Hide on mobile to keep header clean */
@media (max-width: 900px) { .nav-ig { display: none; } }

/* ── Footer Instagram link ── */
.footer-ig {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 400;
  margin-top: 14px;
  transition: color 0.25s;
}
.footer-ig svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-ig:hover { color: #E1306C; }

/* ============================================================
   30-DAY GUARANTEE — Premium full-width section
   Placed between Packages and About/Reviews
   ============================================================ */
.guarantee-section {
  position: relative;
  padding: 100px 5%;
  background: linear-gradient(160deg, var(--dark) 0%, #3D1A6E 55%, #6B1A5E 100%);
  overflow: hidden;
}

/* Ambient glow behind the card */
.guarantee-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(255,45,139,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 85% 75%, rgba(45,27,142,0.22) 0%, transparent 65%);
}

.guarantee-card {
  position: relative; z-index: 1;
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 36px;
  padding: 52px 56px;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(22px) saturate(1.7);
  -webkit-backdrop-filter: blur(22px) saturate(1.7);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.45s ease,
              border-color 0.4s ease;
}

.guarantee-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,45,139,0.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    0 0 60px rgba(255,45,139,0.12),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Shield icon */
.guarantee-icon {
  flex-shrink: 0;
  width: 92px; height: 92px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 8px 28px rgba(255,45,139,0.22),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.guarantee-card:hover .guarantee-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow:
    0 12px 36px rgba(255,45,139,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.guarantee-content { flex: 1; min-width: 0; }

.guarantee-title {
  font-family: 'Staatliches', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: white; letter-spacing: 1px; line-height: 1.1;
  margin: 8px 0 20px;
}
.guarantee-title .pink { color: var(--pink); }

.guarantee-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin-bottom: 28px;
}

/* Badges row */
.guarantee-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 30px;
}
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.85);
  letter-spacing: 0.2px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}
.guarantee-badge:hover {
  background: rgba(255,45,139,0.12);
  border-color: rgba(255,45,139,0.3);
  transform: translateY(-2px);
}
.gb-check {
  color: var(--pink); font-weight: 700; font-size: 13px;
}

/* Divider */
.guarantee-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  margin-bottom: 18px;
}

/* Disclaimer note */
.guarantee-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1px;
  max-width: 700px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .guarantee-card {
    flex-direction: column; align-items: flex-start;
    padding: 40px 32px; gap: 24px;
  }
  .guarantee-icon { width: 76px; height: 76px; }
}

@media (max-width: 600px) {
  .guarantee-section { padding: 70px 5%; }
  .guarantee-card {
    padding: 32px 22px; border-radius: 22px; gap: 20px;
  }
  .guarantee-icon { width: 64px; height: 64px; border-radius: 18px; }
  .guarantee-icon svg { width: 32px; height: 32px; }
  .guarantee-title { font-size: 26px; margin: 4px 0 14px; }
  .guarantee-desc { font-size: 14px; margin-bottom: 20px; }
  .guarantee-badges { gap: 8px; margin-bottom: 22px; }
  .guarantee-badge { padding: 7px 14px; font-size: 11.5px; }
  .guarantee-note { font-size: 11px; }
}

/* ============================================================
   PREMIUM UPGRADE — Why Us, Process, FAQ, Final CTA, Sticky,
   Accessibility & Mobile refinements
   ============================================================ */

/* Accessibility: visible keyboard focus */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.pf-item:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 2px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* WHY CHOOSE US */
#why-us { padding: 80px 5%; background: var(--off-white); text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1080px; margin: 44px auto 0; }
.why-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:32px 26px; text-align:left; transition:transform .3s ease, box-shadow .3s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(45,27,142,.12); }
.why-icon { font-size:34px; margin-bottom:14px; }
.why-card h3 { font-family:'Poppins',sans-serif; font-weight:600; font-size:18px; color:var(--purple); margin-bottom:8px; }
.why-card p { font-size:14px; line-height:1.75; color:var(--text-mid); font-weight:300; }

/* BOOKING PROCESS */
.process-section { padding:80px 5%; text-align:center; }
.process-timeline { list-style:none; display:grid; grid-template-columns:repeat(5,1fr); gap:18px; max-width:1080px; margin:44px auto 0; }
.process-step { position:relative; padding:0 8px; }
.process-num { width:54px; height:54px; margin:0 auto 16px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Staatliches',sans-serif; font-size:24px; color:#fff; background:linear-gradient(135deg,var(--purple),var(--pink)); box-shadow:0 8px 20px rgba(255,45,139,.3); }
.process-step h3 { font-family:'Poppins',sans-serif; font-weight:600; font-size:15px; color:var(--purple); margin-bottom:6px; }
.process-step p { font-size:13px; line-height:1.6; color:var(--text-mid); font-weight:300; }

/* FAQ */
#faq { padding:80px 5%; background:var(--off-white); text-align:center; }
.faq-list { max-width:760px; margin:40px auto 0; text-align:left; }
.faq-item { background:#fff; border:1px solid var(--border); border-radius:14px; margin-bottom:14px; overflow:hidden; }
.faq-item summary { list-style:none; cursor:pointer; padding:20px 24px; font-family:'Poppins',sans-serif; font-weight:500; font-size:16px; color:var(--purple); display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-chev { font-size:24px; color:var(--pink); transition:transform .3s ease; flex-shrink:0; }
.faq-item[open] .faq-chev { transform:rotate(45deg); }
.faq-answer { padding:0 24px 22px; }
.faq-answer p { font-size:14px; line-height:1.8; color:var(--text-mid); font-weight:300; }

/* FINAL CTA */
.final-cta { padding:90px 5%; text-align:center; background:linear-gradient(160deg,var(--dark) 0%,#3D1A6E 55%,#6B1A5E 100%); position:relative; overflow:hidden; }
.final-cta-inner { position:relative; z-index:1; max-width:680px; margin:0 auto; }
.final-cta-eyebrow { display:inline-block; background:rgba(255,255,255,.1); border:1px solid rgba(255,170,112,.4); color:var(--peach); font-size:13px; font-weight:500; letter-spacing:.5px; padding:8px 20px; border-radius:100px; margin-bottom:22px; }
.final-cta-title { font-family:'Staatliches',sans-serif; font-size:clamp(36px,6vw,64px); color:#fff; letter-spacing:1px; margin-bottom:16px; }
.final-cta-sub { color:rgba(255,255,255,.78); font-size:16px; line-height:1.8; font-weight:300; margin-bottom:32px; }
.final-cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-call-light { background:rgba(255,255,255,.12); color:#fff !important; border:1px solid rgba(255,255,255,.3); }

/* STICKY MOBILE CTA */
.sticky-cta { display:none; }
@media (max-width:768px) {
  .sticky-cta { display:flex; position:fixed; bottom:0; left:0; right:0; z-index:9000; background:#fff; box-shadow:0 -4px 20px rgba(0,0,0,.12); padding:10px 12px calc(10px + env(safe-area-inset-bottom)); gap:10px; }
  .sticky-cta-btn { flex:1; display:flex; align-items:center; justify-content:center; gap:8px; min-height:50px; border-radius:12px; text-decoration:none; font-family:'Poppins',sans-serif; font-weight:600; font-size:15px; }
  .sticky-call { flex:0 0 32%; background:rgba(45,27,142,.08); color:var(--purple); }
  .sticky-book { background:linear-gradient(135deg,var(--purple),var(--pink)); color:#fff; }
  .floating-actions { bottom:78px; }
  footer { padding-bottom:80px; }
}

/* Responsive: Why / Process / FAQ */
@media (max-width:900px) {
  .why-grid { grid-template-columns:1fr 1fr; }
  .process-timeline { grid-template-columns:1fr 1fr; gap:32px 18px; }
}
@media (max-width:600px) {
  .why-grid { grid-template-columns:1fr; }
  .process-timeline { grid-template-columns:1fr; }
  .faq-item summary { font-size:15px; padding:18px 18px; }
  #why-us, .process-section, #faq { padding:60px 5%; }
}
