/* =================================================================
   Astrologer — Premium Astrologer Landing
   Palette: White · Cream · Light Beige · Royal Orange · Gold · Deep Brown
   Fonts: Cormorant Garamond (headings) · Plus Jakarta Sans (body)
   ================================================================= */

:root {
  --white: #ffffff;
  --cream: #fff8ef;
  --beige: #f6ead7;
  --beige-soft: #fbf2e6;
  --orange: #e8821e;
  --orange-deep: #d96a0c;
  --gold: #f0a93f;
  --gold-soft: #f7c66b;
  --brown: #3b2410;
  --brown-soft: #6b4a2c;
  --text: #41301f;
  --muted: #8a755e;
  --line: #ecdcc4;

  --grad-gold: linear-gradient(135deg, #f0a93f 0%, #e8821e 55%, #d96a0c 100%);
  --grad-warm: linear-gradient(135deg, #fff8ef 0%, #fbedda 100%);

  --shadow-sm: 0 6px 18px rgba(101, 64, 22, 0.08);
  --shadow-md: 0 18px 45px rgba(101, 64, 22, 0.12);
  --shadow-lg: 0 30px 70px rgba(101, 64, 22, 0.16);
  --shadow-gold: 0 18px 40px rgba(232, 130, 30, 0.35);

  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { scroll-behavior: smooth; }

html { background-color: var(--cream); }

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, .section-title, .brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.2px;
}

a { text-decoration: none; transition: color 0.25s var(--ease); }
img { max-width: 100%; height: auto; }
section { position: relative; }

/* ---------- Shared utilities ---------- */
.section { padding: 6.5rem 0; }
.section-head { max-width: 680px; margin: 0 auto 3.5rem; }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; margin-bottom: 1rem; }
.section-intro { color: var(--muted); font-size: 1.06rem; }
.lead-text { color: var(--brown-soft); font-size: 1.08rem; margin-bottom: 1.8rem; text-align: justify; }
.text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  text-transform: uppercase; letter-spacing: 3px;
  font-size: 0.72rem; font-weight: 700; color: var(--orange);
  margin-bottom: 1rem;
}
.eyebrow-line { width: 34px; height: 2px; background: var(--gold); display: inline-block; border-radius: 2px; }
.eyebrow-light { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn { border-radius: 999px; font-weight: 600; padding: 0.7rem 1.6rem; transition: all 0.3s var(--ease); border: none; }
.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn-gold {
  background: var(--grad-gold); color: #fff; box-shadow: var(--shadow-gold);
}
.btn-gold:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 24px 50px rgba(232, 130, 30, 0.45); }
.btn-outline-dark-soft {
  background: transparent; color: var(--brown);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn-outline-dark-soft:hover { background: var(--brown); color: #fff; transform: translateY(-3px); }
.btn-light-gold { background: #fff; color: var(--orange-deep); box-shadow: var(--shadow-md); }
.btn-light-gold:hover { color: var(--beige); transform: translateY(-3px); background-color: var(--brown);}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--brown); color: #f3e2cc;
  font-size: 0.85rem; padding: 0.55rem 0;
}
.topbar a { color: #f3e2cc; font-size: 1rem; }
.topbar a:hover { color: var(--gold-soft); }
.topbar-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.2); }
.topbar-language{
    display:flex;
    align-items:center;
    gap:.55rem;
}

.topbar-language a{
    color:inherit;
    text-decoration:none;
    font-size:.9rem;
    font-weight:500;
    transition:.3s;
}

.topbar-language a:hover,
.topbar-language a.active{
    color:var(--gold);
}

.topbar-language span{
    opacity:.5;
}
/* ---------- Navbar ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255, 248, 239, 0.85);
  backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.site-nav.scrolled {
  background: rgba(255, 248, 239, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
  padding: 0.6rem 0;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad-gold); color: #fff;
  display: grid; place-items: center;
  text-transform: uppercase; letter-spacing: 1px;
  text-align: center;
  font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
  display: none; /* Hide the brand mark */
}
.brand-text { font-size: 1.45rem; color: var(--brown); line-height: 1; display: none; /* Hide the brand mark */}
.brand-text em { color: var(--orange); font-style:normal; }
.site-nav .nav-link {
  color: var(--brown-soft); font-weight: 600; font-size: 0.95rem;
  margin: 0 0.35rem; position: relative; padding: 0.4rem 0.2rem;
}
.site-nav .nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--grad-gold); transition: width 0.3s var(--ease);
}
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--orange-deep); }
.site-nav .nav-link:hover::after, .site-nav .nav-link.active::after { width: 100%; }
.navbar-toggler { border: none; font-size: 1.6rem; color: var(--orange); padding: 0; }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- Brand Logo ---------- */
.site-nav.scrolled .brand-logo{
    display: none;
}
.site-nav.scrolled .navbar-brand{
    position: relative;
    margin-top: 0px;
    background: none;
    backdrop-filter: none;
}
.site-nav.scrolled .brand-mark{
    display: block;
}
.site-nav.scrolled .brand-text{
    display: block;
}

.navbar-brand{
    position: absolute;
    padding: 6px;
    margin-top: 94px;
    z-index: 10;
    border-radius: 16px;
    background: rgba(255, 248, 239, 0.85);
    backdrop-filter: blur(14px);
}

.brand-logo{
    /* margin-top: 26px; */
    width: 156px;      /* 90-110 વચ્ચે રાખી શકીશ */
    height: auto;
    display: block;
    object-fit: contain;
    transition: all .35s ease;
    /* filter: drop-shadow(0 8px 18px rgba(0,0,0,.15)); */
}

.brand-logo:hover{
    transform: scale(1.05);
}

.footer-brand{
    /* position: absolute; */
    z-index: 10;
    border-radius: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    /* background: rgba(255, 248, 239, 0.85); */
    backdrop-filter: blur(14px);
}

.footer-logo{
    text-align: center;
    /* margin-top: 26px; */
    width: 156px;      /* 90-110 વચ્ચે રાખી શકીશ */
    height: auto;
    display: block;
    object-fit: contain;
    transition: all .35s ease;
    /* filter: drop-shadow(0 8px 18px rgba(0,0,0,.15)); */
}

.footer-logo:hover{
    transform: scale(1.05);
}

/* Desktop પર Logo થોડું નીચે આવશે */

/* Mobile */

@media (max-width:991px){
    .navbar-brand{
        position: relative;
        padding: 6px;
        margin-top: 6px;
        z-index: 10;
    }
    .brand-logo{
        width: 156px;      /* 90-110 વચ્ચે રાખી શકીશ */
        height: auto;
        display: block;
        object-fit: contain;
        transition: all .35s ease;
        filter: drop-shadow(0 8px 18px rgba(0,0,0,.15));
    }
}
/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-warm);
  padding: 5rem 0 7rem;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; z-index: 0;
}
.hero-glow-1 { width: 420px; height: 420px; background: rgba(240, 169, 63, 0.5); top: -120px; right: -80px; }
.hero-glow-2 { width: 360px; height: 360px; background: rgba(232, 130, 30, 0.22); bottom: -120px; left: -100px; }
.hero .container { position: relative; z-index: 2; }

.hero-title { font-size: clamp(2.5rem, 4.8vw, 3.4rem); line-height: 1.05; margin: 0.6rem 0 0.6rem; }
.hero-sub { font-size: 0.95rem; font-weight: 800; color: var(--orange-deep); margin-bottom: 0.8rem; }
.hero-desc { color: var(--brown-soft); font-size: 1.08rem; max-width: 520px; margin-bottom: 2rem; text-align: justify; }

.hero-avatars { display: flex; }
.hero-avatars img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--cream); margin-left: -14px; box-shadow: var(--shadow-sm);
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }
.hero-trust-text small { color: var(--muted); }

/* Hero visual */
.hero-visual {
  position: relative; width: 100%; max-width: 520px; margin: 0 auto;
  aspect-ratio: 1 / 1; display: grid; place-items: center;
}
.zodiac-wheel { position: absolute; inset: 0; display: grid; place-items: center; }
.zodiac-ring {
  position: absolute; border-radius: 50%; border: 1.5px dashed rgba(232, 130, 30, 0.35);
}
.ring-outer { width: 100%; height: 100%; border-style: solid; border-color: rgba(232, 130, 30, 0.18); animation: spin 60s linear infinite; }
.ring-mid { width: 82%; height: 82%; animation: spin 45s linear infinite reverse; }
.ring-inner { width: 64%; height: 64%; border-color: rgba(240, 169, 63, 0.5); animation: spin 35s linear infinite; }

.zodiac-signs { position: absolute; width: 88%; height: 88%; animation: spin 80s linear infinite; }
.zodiac-signs span {
  position: absolute; font-size: 1.15rem; color: var(--orange); opacity: 0.75; line-height: 1;
}

.hero-photo {
  position: relative; z-index: 3;
  width: 70%; aspect-ratio: 1 / 1; border-radius: 50%;
  overflow: hidden; border: 8px solid var(--white);
  box-shadow: 0 30px 60px rgba(101, 64, 22, 0.25);
  background: var(--beige);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.float-icon {
  position: absolute; z-index: 4;
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.4rem; color: var(--orange);
  background: #fff; box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.fi-1 { top: 6%; left: 4%; animation-delay: 0s; }
.fi-2 { top: 14%; right: 2%; color: var(--gold); animation-delay: 1.1s; }
.fi-3 { bottom: 18%; left: -2%; color: var(--orange-deep); animation-delay: 2s; }
.fi-4 { bottom: 6%; right: 8%; color: var(--gold); animation-delay: 0.6s; }

.hero-badge {
  position: absolute; z-index: 5; bottom: 6%; left: 50%; transform: translateX(-50%);
  background: var(--brown); color: #fff; border-radius: 18px;
  padding: 0.8rem 1.3rem; display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-lg); white-space: nowrap;
}
.hero-badge-num { font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 2.1rem; color: var(--gold-soft); line-height: 1; }
.hero-badge-label { font-size: 0.78rem; line-height: 1.2; color: #e9d7bf; }

.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 70px;
  background: var(--cream);
  -webkit-mask: radial-gradient(120% 100% at 50% 100%, transparent 70%, #000 71%);
          mask: radial-gradient(120% 100% at 50% 100%, transparent 70%, #000 71%);
}

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-media { position: relative; padding-right: 1rem; }
.about-img {
  width: 100%; border-radius: var(--radius); object-fit: cover;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.4;
}
.about-exp-card {
  position: absolute; right: -10px; bottom: -24px;
  background: #fff; border-radius: 18px; padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 0.9rem; box-shadow: var(--shadow-md);
}
.about-exp-card i { font-size: 1.8rem; color: var(--orange); }
.about-exp-card .counter { font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 700; color: var(--brown); }
.about-exp-card .plus { color: var(--orange); font-weight: 700; font-size: 1.4rem; }
.about-exp-card p { margin: 0; font-size: 0.78rem; color: var(--muted); }

.about-pillars { display: grid; gap: 1.2rem; margin: 1.8rem 0; }
.about-pillar { display: flex; gap: 1rem; align-items: center; justify-content: center;}
.pillar-icon {
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px;
  background: var(--beige-soft); color: var(--orange); display: grid; place-items: center; font-size: 1.3rem;
}
.about-pillar h3 { font-size: 1.35rem; margin-bottom: 0.2rem; }
.about-pillar p { margin: 0; color: var(--brown-soft); font-size: 0.98rem; }

.about-stats { text-align: center; padding-top: 0.5rem; border-top: 1px solid var(--line); margin-top: 1.5rem; }
.about-stats .counter { font-family: "Cormorant Garamond", serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--orange-deep); }
.about-stats .plus { color: var(--orange); font-weight: 700; }
.about-stats p { margin: 0; font-size: 0.82rem; color: var(--muted); }

/* ---------- Services ---------- */
.services { background: var(--beige-soft); }
.service-card {
  height: 100%; background: #fff; border-radius: var(--radius);
  min-height: 340px;
  padding: 2.2rem 1.8rem; border: 1px solid var(--line);
  transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; background: var(--grad-gold);
  opacity: 0; transition: opacity 0.35s var(--ease); z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.7rem; color: var(--orange); background: var(--beige-soft);
  margin-bottom: 1.3rem; transition: all 0.35s var(--ease);
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; transition: color 0.35s var(--ease); }
.service-card p { color: var(--brown-soft); font-size: 0.98rem; margin-bottom: 1.2rem; transition: color 0.35s var(--ease); }
.service-link { font-weight: 700; color: var(--orange-deep); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; position: fixed; bottom: 2rem; transition: color 0.35s var(--ease); }
.service-link i { transition: transform 0.3s var(--ease); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.25); color: #fff; }
.service-card:hover h3, .service-card:hover p { color: #fff; }
.service-card:hover .service-link { color: #fff; }
.service-card:hover .service-link i { transform: translateX(5px); }
.service-card.featured { background: var(--grad-gold); border-color: transparent; box-shadow: var(--shadow-gold); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.22); color: #fff; }
.service-card.featured h3, .service-card.featured p, .service-card.featured .service-link { color: #fff; }
.service-card.featured::before { display: none; }


/* ---------- Why ---------- */
.why { background: var(--beige-soft); }
.why-card {
  height: 100%; background: #fff; border-radius: var(--radius);
  padding: 2rem 1.6rem; border: 1px solid var(--line); text-align: center;
  transition: all 0.35s var(--ease);
}
.why-icon {
  width: 70px; height: 70px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.8rem; color: #fff;
  background: var(--grad-gold); box-shadow: var(--shadow-gold);
}
.why-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--brown-soft); font-size: 0.96rem; margin: 0; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

/* ---------- social ---------- */
.social { background: var(--cream); }
.social-card{
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    border:1px solid var(--line);
    transition:.35s;
}

.social-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
}

.social-img img{
    width:100%;
    display:block;
    border-top-left-radius:var(--radius);
    border-top-right-radius:var(--radius);
}

.content{
    padding:1rem;
}

.social-info{
    display:flex;
    align-items:center;
    gap:14px;
}

.social-icon{
    width:48px;
    height:48px;
    min-width:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20%;
    background:var(--grad-gold);
    color:#fff;

    text-decoration:none;
    font-size:1.4rem;

    box-shadow:var(--shadow-gold);

    transition:.3s;
}

.social-icon:hover{
    transform:scale(1.08);
    color:#fff;
}

.social-text{
    flex:1;
}

.social-text h3{
    font-size:1.15rem;
    margin-bottom:.35rem;
}

.social-text p{
    margin:0;
    font-size:.92rem;
    color:var(--brown-soft);
    line-height:1.6;
}

/* =========================================================
   SHOP
========================================================= */

.shop{
    background:var(--cream);
}

.shop-card{
    height:100%;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
    transition:all .35s var(--ease);
    box-shadow:var(--shadow-sm);
}

.shop-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
}

.shop-img{
    position:relative;
    overflow:hidden;
    background:#f8f6f2;
}

.shop-img img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.shop-card:hover .shop-img img{
    transform:scale(1.06);
}

/* Price Badge */

.shop-price{
    position:absolute;
    top:16px;
    right:16px;

    background:var(--grad-gold);
    color:#fff;

    padding:.45rem .9rem;

    border-radius:999px;

    font-size:.9rem;
    font-weight:700;

    box-shadow:var(--shadow-gold);
}

/* Content */

.shop-content{
    padding:1.4rem;
}

.shop-content h3{
    font-size:1.2rem;
    margin-bottom:.6rem;
    color:var(--brown-dark);
}

.shop-content p{
    margin-bottom:1.25rem;
    color:var(--brown-soft);
    line-height:1.7;
    font-size:.95rem;
}

/* Button */

.shop-content .btn{
    width:100%;
}

/* Optional Category */

.shop-category{
    display:inline-block;

    margin-bottom:.7rem;

    font-size:.8rem;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;

    color:var(--gold);
}

/* Optional Rating */

.shop-rating{
    display:flex;
    gap:3px;

    margin-bottom:.75rem;

    color:#FFC107;
    font-size:.9rem;
}

/* Mobile */

@media (max-width:991px){

    .shop-content{
        padding:1.2rem;
    }

}

@media (max-width:576px){

    .shop-content h3{
        font-size:1.08rem;
    }

    .shop-price{
        font-size:.85rem;
        padding:.4rem .75rem;
    }

}

/* ---------- Appointment ---------- */
.appointment { background: var(--cream); }
.appointment-card { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.appointment-aside {
  background: var(--brown); color: #f3e2cc;
  padding: 3rem 2.6rem; position: relative; overflow: hidden;
}
.appointment-aside::after {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,169,63,0.3), transparent 70%);
  top: -80px; right: -90px;
}
.appointment-aside .section-title { font-size: 2.1rem; margin-bottom: 1rem; }
.appointment-aside p { color: #e0cdb3; position: relative; }
.appointment-points { list-style: none; padding: 0; margin: 1.5rem 0; position: relative; }
.appointment-points li { margin-bottom: 0.7rem; color: #f3e2cc; }
.appointment-points i { color: var(--gold-soft); margin-right: 0.6rem; }
.appointment-contact { display: flex; align-items: center; gap: 0.9rem; margin-top: 2rem; position: relative; }
.appointment-contact i { font-size: 1.8rem; color: var(--gold-soft); }
.appointment-contact small { display: block; color: #c9b496; font-size: 0.78rem; }
.appointment-contact a { color: #fff; font-weight: 700; font-size: 1.1rem; }
.appointment-form-wrap { padding: 3rem 2.6rem; }
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--brown-soft); margin-bottom: 0.35rem; }
.appointment .form-control, .appointment .form-select {
  border-radius: 12px; border: 1.5px solid var(--line); padding: 0.7rem 0.95rem;
  background: var(--cream); font-size: 0.95rem; color: var(--text);
}
.appointment .form-control:focus, .appointment .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(240, 169, 63, 0.18); background: #fff;
}
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin: 0.7rem 0 0; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--beige-soft); }
.testimonial-card {
  height: 100%; background: #fff; border-radius: var(--radius);
  padding: 2.4rem 2rem 2rem; border: 1px solid var(--line); position: relative;
  box-shadow: var(--shadow-sm);
}
.quote-mark { font-size: 2.6rem; color: var(--gold-soft); opacity: 0.5; position: absolute; top: 1.2rem; right: 1.5rem; }
.t-stars { color: var(--gold); margin-bottom: 0.9rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--brown-soft); font-size: 1.02rem; font-style: italic; margin-bottom: 1.5rem; }
.t-author { display: flex; align-items: center; gap: 0.9rem; }
.t-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--beige); }
.t-author strong { display: block; color: var(--brown); font-family: "Cormorant Garamond", serif; font-size: 1.25rem; padding: 0px; margin: 0px;}
.t-author span { font-size: 0.82rem; color: var(--muted); margin: 0px; padding: 0px;}
.t-ctrl {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--orange-deep); font-size: 1.1rem; transition: all 0.3s var(--ease);
}
.t-ctrl:hover { background: var(--grad-gold); color: #fff; border-color: transparent; box-shadow: var(--shadow-gold); }
.testimonials .carousel-indicators { position: static; margin: 0; }
.testimonials .carousel-indicators button {
  width: 10px; height: 10px; border-radius: 50%; background: var(--line);
  border: none; opacity: 1; margin: 0 4px; transition: all 0.3s var(--ease);
}
.testimonials .carousel-indicators button.active { background: var(--orange); width: 26px; border-radius: 6px; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.premium-accordion .accordion-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm) !important;
  margin-bottom: 1rem; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm);
}
.premium-accordion .accordion-button {
  font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 600;
  color: var(--brown); background: #fff; padding: 1.2rem 1.4rem;
}
.premium-accordion .accordion-button:not(.collapsed) { color: var(--orange-deep); background: var(--cream); box-shadow: none; }
.premium-accordion .accordion-button:focus { box-shadow: none; }
.premium-accordion .accordion-button::after {
  background-image: none; content: "\2b"; font-family: "bootstrap-icons";
  font-size: 1rem; width: auto; height: auto; transition: transform 0.3s var(--ease); color: var(--orange);
}
.premium-accordion .accordion-button:not(.collapsed)::after { content: "\2212"; transform: none; }
.premium-accordion .accordion-body { color: var(--brown-soft); padding: 0 1.4rem 1.3rem; font-size: 0.98rem; }

/* ---------- Contact ---------- */
.contact { background: var(--beige-soft); }
.contact-info { background: #fff; border-radius: var(--radius); padding: 2.2rem; height: 100%; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item:first-child { padding-top: 0; }
.contact-icon { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px; background: var(--beige-soft); color: var(--orange); display: grid; place-items: center; font-size: 1.25rem; }
.contact-item h3 { font-size: 1.2rem; margin-bottom: 0.15rem; }
.contact-item p, .contact-item a { margin: 0; color: var(--brown-soft); }
.contact-item a:hover { color: var(--orange-deep); }
.contact-map { border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 380px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.contact-map iframe { display: block; height: 100%; min-height: 380px; filter: saturate(0.9); }

/* ---------- CTA Strip ---------- */
.cta-strip { background: var(--grad-gold); padding: 3.5rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.3rem; }
.cta-inner p { color: rgba(255,255,255,0.92); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown); color: #d9c4a8; padding: 4.5rem 0 1.5rem; }
.site-footer .brand-text { color: #fff; }
.footer-about { color: #c4ac8d; font-size: 0.95rem; max-width: 320px; text-align: justify; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; text-align: center; align-items: center; justify-content: center;}
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.08);
  color: #e6d4ba; display: grid; place-items: center; font-size: 1.05rem; transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--grad-gold); color: #fff; transform: translateY(-3px); }
.footer-title { color: #fff; font-size: 1.35rem; margin-bottom: 1.1rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #c4ac8d; font-size: 0.94rem; }
.footer-links a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer-contact li { margin-bottom: 0.7rem; color: #c4ac8d; font-size: 0.94rem; }
.footer-contact i { color: var(--gold-soft); margin-right: 0.5rem; }
.footer-contact a { color: #c4ac8d; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem;
  font-size: 0.85rem; color: #a98f6f;
}
.footer-bottom a { color: #c4ac8d; }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-legal span { margin: 0 0.4rem; opacity: 0.5; }

/* ---------- Floating buttons ---------- */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 1040;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); animation: pulse 2.4s infinite;
}
.float-whatsapp:hover { color: #fff; transform: scale(1.08); }
.scroll-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 1040;
  width: 50px; height: 50px; border-radius: 50%; border: none;
  background: var(--brown); color: #fff; font-size: 1.2rem;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(15px);
  transition: all 0.35s var(--ease);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--orange-deep); }

/* ---------- Scroll reveal ---------- */
[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ---------- Animations ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-animate] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section { padding: 4.5rem 0; }
  .site-nav .navbar-collapse {
    background: #fff; border-radius: var(--radius-sm); margin-top: 0.8rem;
    padding: 1rem 1.2rem; box-shadow: var(--shadow-md);
  }
  .site-nav .nav-link { margin: 0.2rem 0; }
  .site-nav .btn-gold { width: 100%; margin-top: 0.6rem; }
  .hero { padding: 3rem 0 5rem; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .eyebrow { justify-content: center; }
  .hero-visual { max-width: 420px; margin-top: 2.5rem; }
  .about-media { padding-right: 0; margin-bottom: 2.5rem; }
  .appointment-aside { padding: 2.4rem 2rem; }
  .appointment-form-wrap { padding: 2.4rem 2rem; }
  .cta-inner { text-align: center; justify-content: center; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 2.3rem; }
  .float-icon { width: 46px; height: 46px; font-size: 1.1rem; }
  .hero-badge { padding: 0.6rem 1rem; }
  .hero-badge-num { font-size: 1.6rem; }
  .about-exp-card { right: 50%; transform: translateX(50%); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
