/* ============================================================================
   SACRED FLAMES BANQUET — HOMEPAGE V2
   Fresh design pass. Same content, same section order, same images —
   new visual language: "Royal Arch" motif (mandap/haveli gate silhouette)
   repeated as a signature element across hero, cards, and section dividers.
   Load this file INSTEAD OF (or after, using !important where noted)
   style.css for the sections below.
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* --- Core theme (kept) --- */
  --ink:        #14110D;   /* warmer than pure black */
  --gold:       #D4AF37;
  --gold-light: #EFD38C;
  --white:      #FFFFFF;

  /* --- New royal accents --- */
  --maroon:     #7A1E2B;   /* deep wine — mandap drapes */
  --maroon-deep:#4E1119;
  --emerald:    #163C2C;   /* used sparingly, dividers/accents */
  --ivory:      #FBF3E7;
  --champagne:  #F3E5D0;
  --sand:       #EFE1C8;

  /* --- Type --- */
  --f-display: 'Cinzel', serif;               /* regal, engraved — labels, eyebrows, numerals */
  --f-script:  'Cormorant Garamond', serif;    /* headline serif, supports italics */
  --f-body:    'Jost', sans-serif;             /* clean geometric body */

  --ease: cubic-bezier(.22,.75,.24,1);
}

/* ============================================================================
   ARCH MOTIF — the signature element. A palace-gate / mandap arch silhouette,
   built once as SVG masks/clip-paths and reused as: hero frame, section
   dividers, card tops, image frames.
   ============================================================================ */

.arch-frame {
  clip-path: path('M0,420 L0,90 C0,40 40,0 90,0 L330,0 C380,0 420,40 420,90 L420,420 Z');
  -webkit-clip-path: path('M0,420 L0,90 C0,40 40,0 90,0 L330,0 C380,0 420,40 420,90 L420,420 Z');
}

.scallop-divider {
  width: 100%;
  height: 46px;
  display: block;
  line-height: 0;
}

.scallop-divider svg { width: 100%; height: 100%; display: block; }

/* ============================================================================
   1. GLOBAL / SECTION RHYTHM
   ============================================================================ */

body { font-family: var(--f-body); }

.v2-eyebrow {
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--maroon);
  display: block;
  align-items: center;
  gap: 14px;
}
.v2-eyebrow::before, .v2-eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
}

.v2-title {
  font-family: var(--f-script);
  font-weight: 600;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: var(--ink);
  line-height: 1.1;
  margin: 14px 0 0;
}
.v2-title em { font-style: italic; color: var(--maroon); }
.v2-title .gold-text { color: var(--gold); font-style: italic; }

/* ============================================================================
   2. HERO — arch-framed slider, richer vignette, ornamental corner brackets
   ============================================================================ */

.hero { background: var(--ink); }


.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  display: block;
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 68'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='1.4'%3E%3Cpath d='M34 2c17.7 0 32 14.3 32 32'/%3E%3Cpath d='M34 12c12.2 0 22 9.8 22 22'/%3E%3Ccircle cx='34' cy='34' r='3' fill='%23D4AF37' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--f-script) !important;
  font-style: italic;
  letter-spacing: 0.5px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-family: var(--f-body) !important;
  font-weight: 300;
  letter-spacing: 2px !important;
}

.hero-content .btn-gold {
  margin-top: 28px;
}

/* Ornamental corner brackets on the hero viewport */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 70px; height: 70px;
  border-top: 1.5px solid var(--gold);
  z-index: 5;
  opacity: 0.85;
  pointer-events: none;
}
.hero::before { left: 24px; border-left: 1.5px solid var(--gold); }
.hero::after  { right: 24px; border-right: 1.5px solid var(--gold); }

/* ============================================================================
   3. ABOUT — diagonal split panel + arch-framed image
   ============================================================================ */

.about {
  background: var(--ivory) !important;
  padding: 110px 0 !important;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, var(--champagne) 0%, var(--ivory) 70%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.about .row { position: relative; z-index: 1; }

.about-collage { height: 520px; }

.collage-item.main {
  clip-path: path('M0,470 L0,80 C0,35 35,0 80,0 L300,0 C345,0 380,35 380,80 L380,470 Z');
  -webkit-clip-path: path('M0,470 L0,80 C0,35 35,0 80,0 L300,0 C345,0 380,35 380,80 L380,470 Z');
  box-shadow: none;
  border: none;
}

.collage-item.main::after {
  content: "";
}

.about-collage {
  position: relative;
}

.about-collage::before {
  content: "";
  position: absolute;
  top: -14px; left: -14px;
  width: 80%; height: 92%;
  border: 1.5px solid var(--gold);
  clip-path: path('M0,470 L0,80 C0,35 35,0 80,0 L300,0 C345,0 380,35 380,80 L380,470 Z');
  -webkit-clip-path: path('M0,470 L0,80 C0,35 35,0 80,0 L300,0 C345,0 380,35 380,80 L380,470 Z');
  z-index: 3;
  pointer-events: none;
}

.collage-item.secondary {
  border: 8px solid var(--ivory) !important;
  border-radius: 6px 60px 6px 6px;
  box-shadow: 0 25px 50px -18px rgba(20,17,13,0.45);
}

.about-text-wrapper {
  padding: 20px 0 20px 50px !important;
  border-left: none !important;
}

.about-text-wrapper .section-title,
.about-text-wrapper .v2-title { font-family: var(--f-script) !important; }

.about-text-wrapper .gold-text {
  font-family: var(--f-display) !important;
  color: var(--maroon) !important;
  letter-spacing: 3px !important;
  font-size: 0.85rem !important;
}

.about p {
  font-family: var(--f-body);
  font-weight: 300;
  color: #4a453d;
}

.about-experience-badge {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)) !important;
  border: 1px solid var(--gold);
}

/* ============================================================================
   4. SERVICES — arch-topped premium cards
   ============================================================================ */

.services-section {
  background: linear-gradient(180deg, var(--champagne) 0%, var(--sand) 100%);
  padding: 100px 0 80px;
}

.services-swiper .swiper-slide {
  border-radius: 130px 130px 14px 14px;
  overflow: hidden;
  box-shadow: 0 25px 55px -20px rgba(20,17,13,0.5);
  border: 3px solid var(--ivory);
  position: relative;
}

.services-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 130px 130px 14px 14px;
  border: 1px solid var(--gold);
  opacity: 0.6;
  z-index: 3;
  pointer-events: none;
}

.service-slider-overlay {
  background: linear-gradient(180deg, rgba(20,17,13,0) 0%, rgba(20,17,13,0.35) 55%, rgba(20,17,13,0.92) 100%) !important;
}

.service-slider-title {
  font-family: var(--f-script) !important;
  font-style: italic;
  font-size: 1.5rem !important;
}

/* ============================================================================
   5. WHY CHOOSE US — framed panels with maroon accent rail
   ============================================================================ */

.why-choose-us {
  background: var(--ivory) !important;
  padding: 110px 0;
}

.why-choose-split-swiper {
  clip-path: path('M0,540 L0,60 C0,25 25,0 60,0 L400,0 C435,0 460,25 460,60 L460,540 Z');
  -webkit-clip-path: path('M0,540 L0,60 C0,25 25,0 60,0 L400,0 C435,0 460,25 460,60 L460,540 Z');
  border: 2px solid var(--gold);
}

.why-split-content .v2-title,
.why-split-content .section-title { font-family: var(--f-script) !important; }

.why-split-list li {
  background: var(--white);
  border-radius: 4px;
  padding: 22px 24px !important;
  margin-bottom: 14px;
  border: none;
  border-left: 3px solid var(--maroon);
  box-shadow: 0 14px 34px -18px rgba(20,17,13,0.25);
  display: flex; align-items: flex-start; gap: 18px;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}

.why-split-list li:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.why-split-list li .iconify {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--gold) !important;
  font-size: 22px !important;
  flex-shrink: 0;
}

.why-split-list li h4 {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ============================================================================
   6. AMENITIES — mandala-ring icon medallions
   ============================================================================ */

.amenities-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(122,30,43,0.05), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(212,175,55,0.08), transparent 40%),
    var(--champagne) !important;
  padding: 100px 0;
}

.amenity-item {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px !important;
}

.amenity-icon {
  width: 78px; height: 78px;
  display: flex !important; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  font-size: 26px !important;
  color: var(--maroon) !important;
  transition: all .4s var(--ease);
}

.amenity-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.55;
  transition: transform .6s var(--ease);
}


.amenity-item:hover .amenity-icon::before {
  transform: rotate(45deg);
}

.amenity-title {
  font-family: var(--f-display);
  font-size: 1rem !important;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================================================
   7. TESTIMONIALS — ornate scroll-card with filigree corners
   ============================================================================ */

.testimonials-premium {
  background: var(--ink) !important;
  padding: 110px 0;
  position: relative;
}

.testimonials-premium .v2-eyebrow { color: var(--gold-light); }
.testimonials-premium .v2-eyebrow::before,
.testimonials-premium .v2-eyebrow::after { background: var(--maroon); }
.testimonials-premium .v2-title { color: var(--ivory); }
.testimonials-premium .v2-title em { color: var(--gold); }

.testimonial-card {
  background: #1D1811 !important;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 2px !important;
  padding: 38px 30px !important;
  position: relative;
}

.testimonial-card::before {
  content: none;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(212,175,55,0.25);
  pointer-events: none;
}

.testimonial-card h4 { color: var(--ivory); font-family: var(--f-script); font-size: 1.3rem; }
.testimonial-card p { color: #C9C2B4 !important; font-weight: 300; }
.testi-avatar { background: var(--maroon) !important; color: var(--gold-light) !important; border-radius: 50%; }

/* ============================================================================
   8. GALLERY — masonry with arch-corner hover
   ============================================================================ */

.premium-gallery {
  background: var(--ivory);
  padding: 100px 0 70px;
}

.premium-gallery .gallery-grid { gap: 10px !important; }

.premium-gallery .gallery-item {
  border-radius: 4px !important;
  border: 2px solid transparent;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}

.premium-gallery .gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.premium-gallery .gallery-overlay {
  background: linear-gradient(180deg, rgba(122,30,43,0.1) 0%, rgba(20,17,13,0.85) 100%) !important;
}

/* ============================================================================
   9. CONTACT — royal invitation card
   ============================================================================ */

#contact {
  background: linear-gradient(180deg, var(--sand) 0%, var(--ivory) 100%) !important;
}

#contact > div > div:first-child > div:first-child {
  text-align: center;
}

#contact form,
#contact > div > div > div[style*="background:#ffffff"] {
  background: var(--white) !important;
  border: 1px solid var(--gold) !important;
  position: relative;
}

/* ============================================================================
   10. SCALLOPED SECTION DIVIDERS
   ============================================================================ */

.v2-scallop { width: 100%; overflow: hidden; line-height: 0; position: relative; z-index: 2; }
.v2-scallop svg { width: 100%; height: 40px; display: block; }

/* ============================================================================
   11. RESPONSIVE
   ============================================================================ */

@media (max-width: 992px) {
  .about::before { display: none; }
  .about-text-wrapper { padding-left: 15px !important; }
  .collage-item.main, .about-collage::before {
    clip-path: none; -webkit-clip-path: none; border-radius: 16px;
  }
  .why-choose-split-swiper { clip-path: none; -webkit-clip-path: none; border-radius: 16px; }
  .hero::before, .hero::after { display: none; }
}
.google-reviews-section{

padding:120px 0;

background:#0f0b08;

position:relative;

overflow:hidden;

}


.section-heading{

text-align:center;

margin-bottom:70px;

}


.sub-title{

letter-spacing:4px;

text-transform:uppercase;

font-size:13px;

color:#d4af37;

}


.section-heading h2{

font-size:60px;

margin-top:20px;

color:#fff;

font-family:"Cormorant Garamond",serif;

}


.section-heading h2 span{

color:#d4af37;

font-style:italic;

}


.google-summary{

display:flex;

justify-content:center;

align-items:center;

gap:12px;

margin-top:25px;

color:#fff;

}


.google-summary img{

width:24px;

}


.google-summary strong{

font-size:22px;

}


.review-card{
    background:#18120d;
    border:1px solid rgba(212,175,55,.25);
    padding:30px;
    display:flex;
    flex-direction:column;
    height:100%;
    transition:.35s;
}

.review-content{
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
    line-height:1.8;
    color:#ddd;
    transition:.3s;
}

.review-card.expanded .review-content{
    display:block;
    overflow:visible;
}

.review-toggle{

    margin-top:15px;

    color:#d4af37;

    cursor:pointer;

    font-weight:600;

    font-size:14px;

    display:inline-flex;

    align-items:center;

    gap:5px;

}

.review-toggle:hover{

    color:#fff;

}

.review-card:hover{

transform:translateY(-8px);

border-color:#d4af37;

box-shadow:0 20px 50px rgba(212,175,55,.15);

}


.review-top{

display:flex;

align-items:center;

margin-bottom:20px;

}


.avatar{

width:58px;

height:58px;

border-radius:50%;

background:#d4af37;

color:#111;

font-weight:700;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

margin-right:15px;

}


.review-top h4{

margin:0;

color:#fff;

font-size:18px;

}


.review-top span{

font-size:13px;

color:#999;

}


.review-top .google{

margin-left:auto;

width:22px;

}


.review-card .stars{

color:#d4af37;

font-size:18px;

margin-bottom:18px;

}


.review-card p{
    color:#ddd;
    line-height:1.8;
    font-size:15px;
    margin-top:15px;

    /* 4 line truncate */
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
}


.swiper-pagination{

margin-top:40px;

position:relative;

}


.swiper-pagination-bullet{

width:12px;

height:12px;

border:1px solid #d4af37;

background:transparent;

opacity:1;

}


.swiper-pagination-bullet-active{

background:#d4af37;

}
.why-split-row {
background: transparent !important;
}