:root{
/* --xoPromo-bg: #ffe7ee; baby pink */
--xoPromo-card-bg: #fdf4ff;
--xoPromo-muted: #6b6f76;
--xoPromo-text: #1a1a1a;
--xoPromo-accent: #ff4b5c;
--xoPromo-bullet: #ff4b5c;

--xoPromo-radius-outer: 34px;
--xoPromo-radius-inner: 26px;
--xoPromo-bg: #ffffff;

}

*{ box-sizing: border-box; }

body{
margin:0;
font-family: Arial, Helvetica, sans-serif;
background: var(--xoPromo-bg);
padding: 40px 18px;
color: var(--xoPromo-text);
overflow-x: hidden;
}
/* index specific css*/
    /* Make sure the carousel container is positioned (it normally is). */
#carouselExampleControls { position: relative; }

/* Universal control styling */
.custom-carousel-control {
  position: absolute;
  /*top: 50%;*/
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* above overlays */
  transition: background .15s ease, transform .08s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Left / Right placement */
.custom-carousel-control.carousel-control-prev { left: 16px; }
.custom-carousel-control.carousel-control-next { right: 16px; }

/* Icon colours & size */
.custom-carousel-control i {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* hover */
.custom-carousel-control:hover {
  background: rgba(0,0,0,0.65);
  transform: translateY(-50%) scale(1.03);
}

/* Smaller screens: reduce size and move slightly inward */
@media (max-width: 767.98px) {
  .custom-carousel-control { width:44px; height:44px; left: 8px; right: 8px; }
  .custom-carousel-control i { font-size: 16px; }
}

/* Optional: hide default bootstrap background-image for any leftover icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
}

.honeymoon-section {
  background: linear-gradient(180deg, #fffafc 0%, #f8faff 100%);
  color: #333;
  border-top: 3px solid #f9c2d3;
  border-bottom: 3px solid #e8f3ff;
}

.text-highlight {
  color: #d63384; /* romantic rose tone */
}

.honeymoon-section h2 {
  font-size: 1.9rem;
  letter-spacing: 0.5px;
}

.honeymoon-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.content-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.05);
  border-left: 6px solid #f8b8cc;
}

.image-wrap img {
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.image-wrap:hover img {
  transform: scale(1.03);
}

.lead {
  font-size: 1.15rem;
  color: #777;
}

@media (max-width: 768px) {
  .honeymoon-section h2 { font-size: 1.6rem; }
  .content-box { padding: 20px; }
}
.icon-section::before {
  content: none !important;
}
/* ======================================
   XO THEME OVERRIDES (Elegant / Classic / Luxury)
====================================== */

/* Elegant (Pink Default) */
body.xo-theme-elegant{
  --xoPromo-card-bg: #fdf4ff;
  --xoPromo-accent: #ff4b5c;
  --xoPromo-bullet: #ff4b5c;
}

/* Classic (Light Yellow Theme) */
body.xo-theme-classic{
  --xoPromo-card-bg: #fff7d6;
  --xoPromo-accent: #b8860b;
  --xoPromo-bullet: #b8860b;
}

/* Luxury (Light Blue Theme) */
body.xo-theme-luxury{
  --xoPromo-card-bg: #eaf5ff;
  --xoPromo-accent: #1b6fbf;
  --xoPromo-bullet: #1b6fbf;
}

/* OUTER WRAPPER */
.xo-promo-wrapper{
max-width: 1200px;
margin: 0 auto;
background: var(--xoPromo-card-bg);
border-radius: var(--xoPromo-radius-outer);
padding: 26px;
}

/* MAIN CARD */
.xo-promo-card{
display: grid;
grid-template-columns: 1.15fr 1fr;
gap: 0;
border-radius: var(--xoPromo-radius-inner);
overflow: hidden;
background: var(--xoPromo-card-bg);
align-items: stretch;
}


/* LEFT IMAGE CAROUSEL */
.xo-promo-left{
padding: 18px;
display: flex;
align-items: stretch;
justify-content: center;
}

.xo-promo-carousel{
width: 100%;
height: 100%;
position: relative;
border-radius: 18px;
overflow: hidden;
}

.xo-promo-carousel-track{
display: flex;
transition: transform 0.45s ease;
will-change: transform;
}

.xo-promo-carousel-slide{
min-width: 100%;
}

.xo-promo-carousel-slide img{
width: 100%;
height: 100%;
min-height: 100%;
object-fit: cover;
display: block;
border-radius: 18px;
}


/* CAROUSEL CONTROLS */
.xo-promo-carousel-btn{
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 42px;
height: 42px;
border-radius: 999px;
border: 1px solid rgba(0,0,0,0.12);
background: rgba(255,255,255,0.92);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 800;
z-index: 10;
transition: 0.2s ease;
}

.xo-promo-carousel-btn:hover{
background: #fff;
transform: translateY(-50%) scale(1.04);
}

.xo-promo-carousel-prev{ left: 12px; }
.xo-promo-carousel-next{ right: 12px; }

/* DOTS */
.xo-promo-carousel-dots{
position: absolute;
left: 0;
right: 0;
bottom: 12px;
display: flex;
justify-content: center;
gap: 8px;
z-index: 11;
}

.xo-promo-carousel-dot{
width: 10px;
height: 10px;
border-radius: 999px;
background: rgba(255,255,255,0.55);
cursor: pointer;
border: 1px solid rgba(0,0,0,0.15);
}

.xo-promo-carousel-dot.active{
background: var(--xoPromo-accent);
width: 26px;
border-color: transparent;
}

/* RIGHT CONTENT */
.xo-promo-content{
padding: 30px 34px 26px 22px;
background: transparent;
}

.xo-promo-title{
font-size: 38px;
line-height: 1.05;
margin: 6px 0 10px;
font-weight: 800;
letter-spacing: -0.5px;
}

.xo-promo-subtitle{
font-size: 15px;
color: var(--xoPromo-muted);
margin: 0 0 18px;
}

.xo-promo-desc{
font-size: 16px;
color: #2b2f36;
line-height: 1.6;
margin: 0 0 18px;
max-width: 520px;
}

.xo-promo-points{
list-style: none;
padding: 0;
margin: 0 0 18px;
display: grid;
gap: 12px;
}

.xo-promo-points li{
position: relative;
padding-left: 22px;
font-size: 15.5px;
line-height: 1.5;
color: #1f2329;
}

.xo-promo-points li::before{
content: "";
position: absolute;
left: 0;
top: 9px;
width: 6px;
height: 6px;
background: var(--xoPromo-bullet);
border-radius: 50%;
}

.xo-promo-points strong{
font-weight: 800;
}

.xo-promo-notes{
background: #fff;
border: 1px solid rgba(0,0,0,0.06);
border-radius: 14px;
padding: 12px 14px;
margin-top: 12px;
font-size: 14.5px;
line-height: 1.5;
color: #444;
}

.xo-promo-bottom{
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
flex-wrap: wrap;
margin-top: 18px;
}

.xo-promo-price{
font-size: 16px;
color: #3a3f47;
}

.xo-promo-price b{
color: var(--xoPromo-accent);
font-weight: 800;
}

.xo-promo-btn{
background: var(--xoPromo-accent);
color: #fff;
border: 2px solid #000;
padding: 12px 34px;
border-radius: 999px;
font-weight: 700;
cursor: pointer;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: 0.25s ease;
min-width: 140px;
text-align: center;
}

.xo-promo-btn:hover{
transform: translateY(-2px);
filter: brightness(0.98);
}

/* MOBILE */
@media (max-width: 992px){
.xo-promo-card{
grid-template-columns: 1fr;
}

.xo-promo-content{
padding: 22px 18px 22px;
}

.xo-promo-title{
font-size: 32px;
}

.xo-promo-carousel-slide img{
height: 100%;
}

.xo-promo-bottom{
justify-content: flex-start;
}

.xo-promo-btn{
margin-top: 10px;
}
}

@media (max-width: 520px){
body{
padding: 26px 14px;
}

.xo-promo-wrapper{
padding: 18px;
border-radius: 28px;
}

.xo-promo-title{
font-size: 30px;
}

.xo-promo-desc{
font-size: 15px;
}

.xo-promo-points li{
font-size: 14.5px;
}
}
/* ===== XO PROMO MINI FORM (DESKTOP ONLY) ===== */
.xo-promo-mini-form{
margin-top: 16px;
background: #ffffff;
border: 1px solid rgba(0,0,0,0.08);
border-radius: 16px;
padding: 14px;
width: 100%;
}

.xo-promo-mini-title{
margin: 0 0 10px;
font-size: 14px;
font-weight: 800;
color: #111;
}

.xo-promo-mini-form-inner{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}

.xo-promo-mini-form-inner input{
width: 100%;
padding: 10px 12px;
border-radius: 10px;
border: 1px solid rgba(0,0,0,0.15);
font-size: 14px;
outline: none;
}

.xo-promo-mini-form-inner input:focus{
border-color: var(--xoPromo-accent);
}

.xo-promo-mini-form-inner input[name="phone"]{
grid-column: span 2;
}

.xo-promo-mini-form-inner button{
grid-column: span 2;
background: var(--xoPromo-accent);
color: #fff;
border: 2px solid #000;
border-radius: 999px;
padding: 9px 12px; /* smaller */
font-size: 13px; /* smaller */
font-weight: 800;
cursor: pointer;
transition: 0.25s ease;
width: fit-content; /* button not full wide */
justify-self: flex-start; /* align left inside form */
}


.xo-promo-mini-form-inner button:hover{
transform: translateY(-2px);
}

/* Hide the mini form on mobile */
@media (max-width: 992px){
.xo-promo-mini-form{
display: none;
}
}
/* ===== XO PROMO DRAWER ===== */
.xo-promo-drawer-overlay{
position: fixed;
inset: 0;
background: rgba(0,0,0,0.45);
display: none;
z-index: 9998;
}

.xo-promo-drawer{
position: fixed;
top: 0;
right: -420px;
width: 420px;
max-width: 92%;
height: 100vh;
background: #fff;
z-index: 9999;
box-shadow: -8px 0 25px rgba(0,0,0,0.18);
transition: right 0.3s ease;
display: flex;
flex-direction: column;
}

.xo-promo-drawer.active{
right: 0;
}

.xo-promo-drawer-overlay.active{
display: block;
}

.xo-promo-drawer-header{
padding: 16px 16px;
border-bottom: 1px solid rgba(0,0,0,0.08);
display: flex;
align-items: center;
justify-content: space-between;
}

.xo-promo-drawer-header h3{
margin: 0;
font-size: 18px;
font-weight: 800;
}

.xo-promo-drawer-close{
background: transparent;
border: none;
font-size: 20px;
cursor: pointer;
font-weight: 800;
}

.xo-promo-drawer-body{
padding: 16px;
overflow-y: auto;
}

.xo-promo-drawer-package{
background: #f7f7f7;
border: 1px solid rgba(0,0,0,0.06);
padding: 12px;
border-radius: 12px;
margin-bottom: 14px;
font-size: 14px;
}

#xoDrawerForm label{
display: block;
font-weight: 700;
font-size: 13px;
margin: 10px 0 6px;
}

#xoDrawerForm input{
width: 100%;
padding: 10px 12px;
border: 1px solid rgba(0,0,0,0.15);
border-radius: 10px;
outline: none;
font-size: 14px;
}

#xoDrawerForm input:focus{
border-color: var(--xoPromo-accent);
}

.xo-promo-drawer-submit{
margin-top: 14px;
width: 100%;
background: var(--xoPromo-accent);
color: #fff;
border: 2px solid #000;
padding: 12px 14px;
border-radius: 999px;
font-weight: 800;
cursor: pointer;
}
/* ===== XOrooms Section Header Style (Screenshot Font Match) ===== */
.section-title-center{
text-align: center;
padding: 40px 15px 20px;
max-width: 1100px;
margin: 0 auto;
}

.section-title-center .title-main{
font-family: "Poppins", sans-serif;
font-size: 64px;
font-weight: 900;
letter-spacing: 2px;
text-transform: uppercase;
margin: 0;
color: #1f2937; /* dark navy */
line-height: 1.05;
}

.section-title-center .title-line{
width: 70px;
height: 2px;
background: #1f2937;
margin: 18px auto 22px;
border-radius: 2px;
}

.section-title-center .title-desc{
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 2.4px;
line-height: 2;
color: #4b5563; /* soft grey */
max-width: 980px;
margin: 0 auto;
}

.section-title-center .title-desc strong{
font-weight: 700;
color: #111827;
}

/* Responsive */
@media (max-width: 992px){
.section-title-center .title-main{
font-size: 44px;
}
}

@media (max-width: 576px){
.section-title-center{
padding: 30px 12px 15px;
}
.section-title-center .title-main{
font-size: 34px;
letter-spacing: 1px;
}
.section-title-center .title-desc{
font-size: 12px;
letter-spacing: 1.6px;
}
}
/* ==============================
   XO TERMS + ADDONS SECTION
   (No conflict with existing CSS)
================================= */

.xo-terms-section {
  padding: 40px 0 50px;
}

.xo-terms-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.xo-terms-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.xo-terms-card-full {
  grid-column: 1 / -1;
}

.xo-terms-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: #fff3f6;
  color: #111;
}

.xo-terms-text {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

.xo-terms-list,
.xo-terms-points {
  margin: 0;
  padding-left: 18px;
}

.xo-terms-list li,
.xo-terms-points li {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 6px;
}

.xo-terms-contact {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8f8f8;
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  color: #111;
}

/* Mobile */
@media (max-width: 991px) {
  .xo-terms-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ================================
   XO FOOTER (BLACK THEME)
================================ */
.xo-footer{
  background: #000;
  color: #cfcfcf;
  font-family: "Montserrat", "Roboto", sans-serif;
}

.xo-footer-top{
  padding: 70px 0 45px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.xo-footer-brand img{
  max-height: 55px;
  margin-bottom: 16px;
}

.xo-footer-brand p{
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.xo-footer-title{
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}

.xo-footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.xo-footer-contact li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.xo-footer-contact li span{
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}

.xo-footer-contact a{
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.xo-footer-contact a:hover{
  color: #ff5a6a;
}

/* links */
.xo-footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.xo-footer-links li{
  margin-bottom: 10px;
}

.xo-footer-links a{
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: 0.25s ease;
}

.xo-footer-links a:hover{
  color: #ff5a6a;
  padding-left: 4px;
}

/* posts */
.xo-footer-posts{
  list-style: none;
  padding: 0;
  margin: 0;
}

.xo-footer-posts li{
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.14);
}

.xo-footer-post{
  display: flex;
  gap: 12px;
  align-items: center;
}

.xo-footer-post-img{
  width: 62px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
}

.xo-footer-post-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xo-footer-post-content h6{
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.xo-footer-post-content h6 a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.xo-footer-post-content h6 a:hover{
  color: #ff5a6a;
}

.xo-footer-post-content p{
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* bottom bar */
.xo-footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.xo-footer-copy{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.xo-footer-bottom-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 16px;
}

.xo-footer-bottom-links li a{
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.xo-footer-bottom-links li a:hover{
  color: #ff5a6a;
}

/* responsive */
@media (max-width: 768px){
  .xo-footer-top{
    padding: 55px 0 30px;
  }
  .xo-footer-title{
    margin-top: 12px;
  }
}
/* MOBILE NAV FIX - XOrooms */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: 12px;
    padding: 12px 10px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }

  .navbar-nav .nav-link {
    padding: 10px 12px !important;
  }

  .dropdown-menu {
    position: static !important;
    float: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 8px 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

  .dropdown-menu ul {
    padding-left: 12px;
    margin: 0;
  }

  .dropdown-menu .dropdown-item {
    padding: 8px 12px !important;
    border-radius: 8px;
  }
}
.xo-setup-btns{
    text-align: center;
    margin: 25px 0 30px;
    font-family: "Montserrat", sans-serif;
}

.xo-setup-heading{
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 14px;
}

.xo-setup-btn-row{
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.xo-setup-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.12);
    transition: 0.25s ease;
    min-width: 250px;
    text-align: center;
}

/* Button Colors */
.xo-btn-elegant{ background: #ffd6e6; }
.xo-btn-classic{ background: #fff3b0; }
.xo-btn-luxury{  background: #cfe8ff; }

/* Hover */
.xo-setup-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

/* Active State */
.xo-setup-btn.active{
    background: #d9d9d9 !important;
    border-color: rgba(0,0,0,0.25);
}

/* Mobile */
@media(max-width: 768px){
    .xo-setup-btn{
        width: 100%;
        min-width: unset;
        font-size: 14px;
        padding: 12px 14px;
    }
}
/* candle light dinner page */
/* ================================
   XO HOME PACKAGE BANNERS (3 GRID)
   Independent CSS (No conflicts)
================================== */

.xoHomePkg-section{
  padding: 30px 0;
}

.xoHomePkg-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.xoHomePkg-card{
  position: relative;
  display: block;
  border-radius: 0px;
  overflow: hidden;
  text-decoration: none !important;
  background: #f6f6f6;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: xoHomePkgFadeUp 0.7s ease both;
}

/* subtle animation delay */
.xoHomePkg-card:nth-child(1){ animation-delay: 0.05s; }
.xoHomePkg-card:nth-child(2){ animation-delay: 0.12s; }
.xoHomePkg-card:nth-child(3){ animation-delay: 0.18s; }

@keyframes xoHomePkgFadeUp{
  from{ opacity: 0; transform: translateY(12px); }
  to{ opacity: 1; transform: translateY(0); }
}

.xoHomePkg-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Image wrapper */
.xoHomePkg-img{
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #eaeaea;
}

.xoHomePkg-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.xoHomePkg-card:hover .xoHomePkg-img img{
  transform: scale(1.06);
}

/* Bottom label strip (like screenshot) */
.xoHomePkg-label{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
  padding: 18px 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  letter-spacing: 0.2px;
}

/* Mobile responsive */
@media (max-width: 991px){
  .xoHomePkg-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .xoHomePkg-img{
    height: 220px;
  }

  .xoHomePkg-label{
    font-size: 20px;
    padding: 16px 12px;
  }
}

/* Candle light dinner page only */

/* ===============================
   Highlight Cards Section
   Namespace-safe CSS
================================ */

.highlight-cards {
  padding: 60px 20px;
  max-width: 1400px;
  margin: auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.highlight-cards__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
}

.highlight-cards__header h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  color: #0a0a0a;
}

.highlight-cards__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #f3f3f7;
  border-radius: 10px;
  color: #6b4eff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.highlight-cards__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  text-indent: -9999px;
}


.highlight-cards__btn:hover {
  background: #6b4eff;
  color: #fff;
}

/* Grid */
.highlight-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.highlight-cards__card {
  position: relative;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.highlight-cards__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.highlight-cards__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.highlight-cards__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.1)
  );
}

/* Badge */
.highlight-cards__badge {
  position: absolute;
  bottom: 70px;
  left: 20px;
  background: #6b4eff;
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  z-index: 2;
  font-weight: 600;
}

/* Title */
.highlight-cards__card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  z-index: 2;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1200px) {
  .highlight-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .highlight-cards__grid {
    grid-template-columns: 1fr;
  }

  .highlight-cards__header h2 {
    font-size: 26px;
  }
}
/* ==============================
   XO GOOGLE REVIEWS (ISOLATED)
================================ */

.xo-google-reviews{
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 16px;
  font-family: "Montserrat", sans-serif;
}

.xo-reviews-header{
  text-align: center;
  margin-bottom: 30px;
}

.xo-reviews-title{
  font-size: 18px;
  font-weight: 700;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.xo-stars{
  color: #fbbc04;
  font-size: 18px;
}

.xo-review-count{
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

/* GRID */
.xo-reviews-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.xo-review-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.xo-review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

/* TOP */
.xo-review-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.xo-review-user{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* AVATAR */
.xo-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* NAME + TIME */
.xo-user-name{
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.xo-review-time{
  font-size: 12px;
  color: #777;
}

/* STARS */
.xo-review-stars{
  color: #fbbc04;
  font-size: 15px;
  margin-bottom: 6px;
}

/* TEXT */
.xo-review-text{
  font-size: 13.5px;
  line-height: 1.6;
  color: #333;
}

/* FOOTER */
.xo-verified{
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 1100px){
  .xo-reviews-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px){
  .xo-reviews-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px){
  .xo-reviews-grid{
    grid-template-columns: 1fr;
  }

  .xo-reviews-title{
    font-size: 16px;
  }
}
/*elfsight container*/ .reviews-widget-shell { min-height: 600px; /* adjust after testing */ width: 100%; }