@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES (Real colors from production site) ===== */
:root {
  --color-bg:         #fbf5ed;
  --color-surface:    #f3e8d6;
  --color-deep:       #ece1cd;
  --color-card:       #ffffff;
  --color-heading:    #241d15;
  --color-ink:        #241d15;
  --color-body:       #524637;
  --color-muted:      #8a7c6b;
  --color-line:       rgba(36,29,21,0.12);
  --color-tint:       rgba(36,29,21,0.03);
  --color-gold:       #8a6121;
  --color-gold-bright:#b8893f;
  --color-rose:       #b06a52;
  --color-bulb:       #c99a3f;
  --color-mint:       #3f7d57;
  --color-on-ink:     #ffffff;
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-sans:        'Inter', system-ui, sans-serif;
  --ease-out:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--color-bg);
  color: var(--color-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--color-gold); color: #fff; }

/* ===== TYPOGRAPHY HELPERS ===== */
.title-bar h2{
    font-size: 55px;
    line-height: 55px;
    font-weight: 500;
}
.title-bar p{
    font-size: 18px;
    line-height: 28px;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--color-gold);
  display: block;
  margin-bottom: .6rem;
}
.display-xl { font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.06; }
.display-lg { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; }
.display-md { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.18; }
em.accent, .accent { color: var(--color-gold); font-style: italic; font-weight: 500; }
.accent-pink { color: var(--color-rose); font-style: italic; font-weight: 500; }
.text-muted-custom { color: var(--color-muted); }
.text-body-custom { color: var(--color-body); }

.section-pad { padding-block: clamp(4rem, 8vw, 7rem); }

/* ===== SKIP LINK ===== */
.skip-link {
  position: fixed; top: .75rem; left: .75rem;
  z-index: 9999;
  background: var(--color-ink); color: var(--color-on-ink);
  border-radius: 50px; padding: .6rem 1rem;
  font-size: .8rem; font-weight: 600;
  transform: translateY(-200%);
  transition: transform .25s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); color: #fff; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--color-ink);
  color: var(--color-on-ink);
  border: 1px solid transparent;
  border-radius: 50px;
  padding: .85rem 1.8rem;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .3s var(--ease-out);
  box-shadow: 0 12px 28px -16px rgba(36,29,21,0.45);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: #3a2e20; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -18px rgba(36,29,21,0.55);
}
.btn-gold-custom {
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--color-gold-bright);
  color: #2a1d08;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: .85rem 1.8rem;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .3s var(--ease-out);
  box-shadow: 0 12px 28px -18px rgba(184,137,63,0.6);
  cursor: pointer;
}
.btn-gold-custom:hover {
  background: #c89a4f; color: #2a1d08;
  transform: translateY(-2px);
}
.btn-ghost-custom {
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-heading);
  border: 1px solid rgba(36,29,21,0.28);
  border-radius: 50px;
  padding: .85rem 1.8rem;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .3s var(--ease-out);
  cursor: pointer;
}
.btn-ghost-custom:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn-lg-custom { padding: 1rem 2.2rem; font-size: .82rem; }
.line-link {
  color: var(--color-gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: .2rem;
  transition: opacity .2s ease;
}
.line-link:hover { opacity: .7; color: var(--color-gold); }

/* ===== NAVBAR ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251,245,237,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(36,29,21,0.06); }

.navbar-brand-wrap { display: inline-flex; align-items: center; gap: .65rem; }
.brand-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(138,97,33,0.55);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1;
}
.brand-name .gold { color: var(--color-gold); }
.brand-sub {
  display: block;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: .15rem;
}

.navbar-custom .nav-link {
  font-size: .8rem;
  font-weight: 500;
  color: var(--color-body) !important;
  padding: .45rem .8rem !important;
  transition: color .2s ease;
}
.navbar-custom .nav-link:hover { color: var(--color-heading) !important; }
.navbar-custom .nav-link.active { color: var(--color-gold) !important; }

.nav-phone {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-heading);
  transition: color .2s ease;
}
.nav-phone:hover { color: var(--color-gold); }

/* ===== BULBS animation ===== */
.bulbs { display: flex; justify-content: center; align-items: center; gap: clamp(.7rem,1.4vw,1rem); }
.bulb {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-bulb);
  box-shadow: 0 0 0 1px rgba(138,97,33,0.35), 0 0 8px 1px rgba(201,154,63,0.65);
  animation: twinkle 1.9s ease-in-out infinite;
}
.bulb:nth-child(odd)  { animation-delay: .6s; }
.bulb:nth-child(3n)   { animation-delay: 1.1s; }
@keyframes twinkle { 0%,100%{opacity:1;} 50%{opacity:.35;} }

/* ===== HERO ===== */
.hero-section {
  padding-top: 12rem;
  padding-bottom: 3rem;
  background: var(--color-bg);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid var(--color-line);
  background: var(--color-tint);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-body);
  margin-bottom: 1.4rem;
}
.hero-section h1{
    font-size: 106px;
    line-height: 120px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "Cormorant Garamond", serif;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-mint);
  display: inline-block;
  animation: pulse-anim 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes pulse-anim { 50% { opacity: .4; } }

.hero-stats-bar { font-size: .9rem; color: var(--color-muted); }
.hero-stats-bar svg { fill: var(--color-gold); }

.hero-photo-frame {
  border: 1px solid rgba(138,97,33,0.35);
  background: var(--color-card);
  border-radius: 26px;
  padding: .6rem;
  box-shadow: 0 30px 60px -30px rgba(36,29,21,0.35);
  position: relative;
}
.hero-photo-frame img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.estimate-card {
  position: absolute;
  bottom: -1.6rem; left: -1rem;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 20px 40px rgba(36,29,21,0.15);
  min-width: 210px;
}
.estimate-label {
  font-size: .6rem; text-transform: uppercase;
  letter-spacing: .2em; color: var(--color-muted);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .25rem;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-mint); display: inline-block;
  animation: pulse-anim 2s infinite;
}
.live-tag { font-size: .6rem; font-weight: 600; color: var(--color-mint); text-transform: uppercase; letter-spacing: .16em; }
.estimate-amount { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-heading); font-weight: 700; }
.estimate-sub { font-size: .72rem; color: var(--color-muted); }

/* ===== STATS BAR ===== */
.stats-bar-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 2.5rem 0;
  margin-top: 100px;
}
.stats-bar-section .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem,3.5vw,2.4rem);
  color: var(--color-heading);
  font-weight: 600;
}
.stats-bar-section .stat-lbl {
  font-size: .68rem; text-transform: uppercase;
  letter-spacing: .16em; color: var(--color-muted); margin-top: .2rem;
}
.stats-bar-section .stat-item + .stat-item {
  border-left: 1px solid var(--color-line);
}

/* ===== CARD ===== */
.card-soft {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: 22px;
  box-shadow: 0 1px 3px rgba(36,29,21,0.04), 0 18px 36px -28px rgba(36,29,21,0.2);
}

/* ===== WHY SECTION ===== */
.why-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  background: rgba(138,97,33,0.12);
  border: 1px solid rgba(138,97,33,0.3);
  margin-bottom: 1.2rem;
}

/* ===== BOOTH CARDS ===== */
.booth-card {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out);
}
.booth-card:hover { transform: translateY(-5px); }

.booth-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.booth-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.booth-card:hover .booth-img img { transform: scale(1.06); }
.booth-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,15,10,0.72));
  pointer-events: none;
}
.booth-badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: var(--color-ink); color: #fff;
  font-size: .58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  padding: .25rem .75rem; border-radius: 50px;
}
.booth-cat {
  position: absolute; bottom: .75rem; left: 1rem; right: 1rem; z-index: 2;
  color: var(--color-bulb);
  font-size: .64rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.booth-body {
  padding: 1.4rem;
  flex: 1; display: flex; flex-direction: column;
}
.booth-tagline { color: var(--color-gold); font-style: italic; font-size: .88rem; margin-bottom: .5rem; }
.booth-desc { font-size: .9rem; color: var(--color-body); margin-bottom: 1rem; }
.booth-features { list-style: none; padding: 0; margin: 0 0 1rem; }
.booth-features li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .85rem; color: var(--color-body); margin-bottom: .45rem;
}
.booth-features li svg { flex-shrink: 0; margin-top: .18rem; }
.booth-price-row {
  margin-top: auto;
  border-top: 1px solid var(--color-line);
  padding-top: 1.1rem;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.price-label { font-size: .62rem; text-transform: uppercase; letter-spacing: .16em; color: var(--color-muted); }
.price-val { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-heading); font-weight: 700; }

.cta-promo-card {
  background: linear-gradient(150deg, rgba(138,97,33,0.14) 0%, var(--color-surface) 100%);
  height: 100%;
}

/* ===== ADDONS ===== */
.addon-img { aspect-ratio: 2/1; overflow: hidden; }
.addon-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.addon-card:hover .addon-img img { transform: scale(1.06); }
.addon-body { padding: 1.2rem; }
.addon-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--color-heading); }
.addon-price { font-size: .85rem; font-weight: 700; color: var(--color-gold); }
.addon-desc { font-size: .84rem; color: var(--color-body); margin-top: .4rem; }
.addon-flat-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-auto-rows: 200px;
  gap: .75rem;
}
@media (min-width:768px) { .gallery-grid { grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; } }

.gal-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease; display: block;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-tall { grid-row: span 2; }

/* ===== REVIEWS ===== */
.review-badge-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid var(--color-line);
  background: var(--color-tint);
  padding: .45rem 1rem; border-radius: 50px;
}
.review-num { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-heading); line-height: 1; }
.review-stars svg { fill: var(--color-gold); }
.review-via-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--color-muted); }
.review-card { padding: 1.8rem; height: 100%; display: flex; flex-direction: column; }
.review-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.07rem; color: var(--color-heading); flex: 1;
  margin-bottom: 1.2rem;
}
.review-divider { border-top: 1px solid var(--color-line); padding-top: 1.1rem; display: flex; align-items: flex-end; justify-content: space-between; }
.review-name { font-weight: 600; color: var(--color-heading); font-size: .95rem; }
.review-event { font-size: .78rem; color: var(--color-muted); }
.review-via { font-size: .6rem; text-transform: uppercase; letter-spacing: .14em; color: var(--color-muted); }

/* ===== SERVICE AREA ===== */
.area-pill {
  display: inline-block;
  border: 1px solid var(--color-line);
  background: var(--color-tint);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .9rem; color: var(--color-body);
  margin: .25rem;
}
.trust-item {
  display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  border-radius: 16px; padding: 1.1rem;
}
.trust-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(138,97,33,0.14);
  border: 1px solid rgba(138,97,33,0.32);
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-txt { font-size: .88rem; font-weight: 500; color: var(--color-heading); }

/* ===== FAQ ===== */
.faq-list { border-top: 1px solid var(--color-line); }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-trigger {
  width: 100%; background: transparent; border: none;
  text-align: left; padding: 1.15rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer;
}
.faq-trigger-text { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-heading); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--color-line);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-body { 
  /* padding-bottom: 1.2rem;  */
  font-size: .94rem; color: var(--color-body); max-width: 640px; }

/* ===== FINAL CTA ===== */
.final-cta-box {
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-deep) 100%);
  border: 1px solid rgba(138,97,33,0.28);
  border-radius: 32px;
  padding: clamp(3rem,6vw,5rem) clamp(1.5rem,4vw,4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-deep);
  padding: 4rem 0 0;
}
.footer-logo img { height: 60px; }
.footer-desc { font-size: .88rem; color: var(--color-muted); max-width: 280px; line-height: 1.65; }
.footer-address { font-size: .88rem; color: var(--color-body); margin-top: .8rem; }
.footer-col-head {
  font-size: .64rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .26em;
  color: var(--color-heading); margin-bottom: 1.1rem;
}
.footer-links-list { list-style: none; padding: 0; }
.footer-links-list li { margin-bottom: .65rem; }
.footer-links-list a { font-size: .9rem; color: var(--color-body); transition: color .2s ease; }
.footer-links-list a:hover { color: var(--color-gold); }
.footer-links-list span { font-size: .9rem; color: var(--color-body); }
.footer-phone-big {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--color-heading); font-weight: 600;
  transition: color .2s ease;
}
.footer-phone-big:hover { color: var(--color-gold); }
.footer-email { font-size: .9rem; color: var(--color-body); transition: color .2s ease; margin-top: .5rem; display: block; }
.footer-email:hover { color: var(--color-gold); }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--color-line);
  display: inline-grid; place-items: center;
  color: var(--color-muted); font-size: .85rem;
  transition: all .2s ease; margin-right: .4rem; margin-top: .8rem;
}
.footer-social a:hover { border-color: var(--color-gold); color: var(--color-gold); }
.footer-bottom {
  border-top: 1px solid var(--color-line);
  margin-top: 3rem; padding: 1.3rem 0;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .6rem;
  font-size: .78rem; color: var(--color-muted);
}
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--color-gold); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .bulb { animation: none; }
  .pulse-dot { animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .estimate-card { position: static; margin-top: 1.5rem; }
  .hero-photo-frame { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .stats-bar-section .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--color-line); }
}



/*=========================================
    BOOKING FORM
=========================================*/
.buildForm{
  padding-top: 180px;
  padding-bottom: 100px;
}
#bookingForm{
    position:relative;
}

.form-step{
    display:none;
    animation:fadeIn .35s ease;
}

.form-step.active{
    display:block;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/*=========================================
    STEP INDICATOR
========================================*/
.booking-steps{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:40px;
}
.step{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:90px;
    position:relative;
    z-index:2;
}
.step span{

    width:50px;
    height:50px;
    border-radius:50%;
    border:2px solid #d5c3a1;
    background:#fff;
    color:#8d6847;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:700;

    transition:.3s;

}

.step p{

    margin-top:10px;
    font-size:14px;
    font-weight:600;
    color:#888;
    text-align:center;

}

.step.active span{

    background:#8d6847;
    color:#fff;
    border-color:#8d6847;

}

.step.active p{

    color:#8d6847;

}

.step.completed span{

    background:#c8a97e;
    color:#fff;
    border-color:#c8a97e;

}

.step-line{

    flex:1;
    height:2px;
    background:#e5e5e5;
    margin:0 5px;
    position:relative;
    top:-12px;

}

/*=========================================
    TITLES
=========================================*/

.form-step h2{

    font-size:34px;
    font-weight:700;
    color:#222;

}

.form-step p{

    color:#777;
    margin-bottom:30px;

}

/*=========================================
    BOOTH CARD
=========================================*/

.booth-card{

    display:block;
    cursor:pointer;

}

.booth-card .card{

    border:2px solid #ededed;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    height:100%;

}

.booth-card img{

    height:220px;
    width:100%;
    object-fit:cover;

}

.booth-card .card-body{

    padding:25px;

}

.booth-card h4{

    font-size:22px;
    margin-bottom:15px;
    font-weight:700;

}

.booth-card ul{

    padding:0;
    margin:0;

}

.booth-card ul li{

    list-style:none;
    margin-bottom:8px;
    color:#666;

}

.price{

    margin-top:25px;
    font-size:28px;
    font-weight:700;
    color:#8d6847;

}

.booth-card:hover .card{

    border-color:#8d6847;
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.booth-card input:checked + .card{

    border-color:#8d6847;
    background:#fcf8f2;
    box-shadow:0 15px 35px rgba(141,104,71,.18);

}

/*=========================================
    ADDON CARD
=========================================*/

.addon-card{

    display:block;
    cursor:pointer;

}

.addon-card .card{

    border:2px solid #ededed;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    height:100%;

}

.addon-card img{

    width:100%;
    height:180px;
    object-fit:cover;

}

.addon-card .card-body{

    padding:22px;

}

.addon-card h4{

    font-size:20px;
    font-weight:700;
    margin-bottom:10px;

}

.addon-card p{

    color:#777;
    font-size:14px;
    margin-bottom:18px;

}

.addon-card:hover .card{

    border-color:#8d6847;
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.addon-card input:checked + .card{

    border-color:#8d6847;
    background:#fcf8f2;
    box-shadow:0 15px 35px rgba(141,104,71,.18);

}

/*=========================================
    BUTTONS
=========================================*/

.btn{

    border-radius:10px;
    padding:12px 35px;
    font-weight:600;
    transition:.3s;

}

.btn-dark{

    background:#8d6847;
    border-color:#8d6847;

}

.btn-dark:hover{

    background:#6e4f36;
    border-color:#6e4f36;

}

.btn-outline-dark{

    border:2px solid #8d6847;
    color:#8d6847;

}

.btn-outline-dark:hover{

    background:#8d6847;
    color:#fff;

}

.booking-summary {
    top: 120px;
    background: #b8893f;
    padding: 31px;
    border-radius: 15px;
    color: #fff;
  box-shadow: 0 18px 36px -18px rgba(36,29,21,0.55);

}