:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dark: #9a7530;
    --dark: #1a0f00;
    --dark2: #2a1a05;
    --dark3: #3a2510;
    --cream: #f5f0e8;
    --cream2: #ede7d9;
    --white: #ffffff;
    --text-light: #d4c4a0;
    --text-muted: #666;
    --border: #e0d8c8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'EB Garamond', serif;
    background: var(--cream);
    color: #333;
  }

  


  /* ── HERO ── */
  .hero {
    background: transparent;
    position: relative;
    min-height: 410px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('images/C1.jpeg') center/cover no-repeat;
    opacity: 1;
  }
  .hero-overlay {
    position: absolute; inset: 0;
  }
  .hero-content {
    position: relative;
    padding: 60px 64px;
    max-width: 560px;
  }
  .hero-sanskrit { color: #d4a017; font-size: 13px; letter-spacing: 1px; margin-bottom: 14px;margin-top: 40px; font-style: italic; }
.hero h1{
    all: unset;

    font-family:'Cinzel', serif !important;
    font-size: 46px !important;
    font-weight: 700 !important;

    color: white !important;

    display: block !important;

    text-transform: uppercase !important;
    letter-spacing: 2px !important;

    margin-bottom: 14px !important;
}

  .hero-divider {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
  }
  .hero-divider span { height: 1.5px; flex: 1; max-width: 60px; background: var(--gold); }
  .hero-divider i { color: var(--gold); font-size: 12px; }
  .hero-sub { font-family: 'Cinzel', serif; font-size: 17px; color: #d4a017; margin-bottom: 16px; }
  .hero p { color: white; font-size: 14.5px; line-height: 1.85; max-width: 420px;font-family: Georgia, 'Times New Roman', Times, serif; }


  /* ── WHAT CLIENTS SAY ── */
  .clients-section {
    background: var(--white);
    padding: 52px 44px 56px;
    border-bottom: 1px solid var(--border);
  }
  .section-heading {
    text-align: center;
    margin-bottom: 36px;
  }
  .section-heading h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
  }
  .ornament {
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .ornament span { height: 1.5px; width: 50px; background: linear-gradient(90deg, transparent, var(--gold)); }
  .ornament span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
  .ornament i { color: var(--gold); font-size: 12px; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .tcard {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px 22px 20px;
    position: relative;
    transition: box-shadow .25s, transform .25s;
  }
  .tcard:hover {
    box-shadow: 0 8px 30px rgba(201,168,76,0.12);
    transform: translateY(-3px);
  }
  .tcard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .quote-icon {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
    margin-top: -6px;
  }
  .stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }

  .tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
    background: var(--dark3);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--text-light);
    overflow: hidden;
  }
  .author-avatar img{

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid #C9A84C;

    box-shadow: 0 0 10px rgba(201,168,76,0.4);
}
  .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .author-name { font-family: 'Cinzel', serif; font-size: 14.5px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
  .author-loc { font-size: 13px; color: var(--gold-dark); }

  .tcard-text {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .tcard-divider {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: 4px;
  }
  .tcard-divider span { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
  .tcard-divider i { color: var(--gold-dark); font-size: 10px; }

  /* ── STATS ── */
  .stats-section {
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    padding: 44px 60px;
  }
  .stats-bg {
    position: absolute; inset: 0;
    background: url('images/bg3.png') center/cover no-repeat;
    opacity: 1;
  }
  .stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 30px;
    border-right: 1px solid rgba(201,168,76,0.2);
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; }
  .stat-icon { font-size: 38px; color: #d4a017; flex-shrink: 0; }
  .stat-number {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 700;
    color: #d4a017;
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label { color: white; font-size: 20px; }

  /* ── SHARE EXPERIENCE ── */
  .share-section {
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 0 60px;
    min-height: 110px;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .share-emblem {
    position: absolute; left: -20px; top: 50%; transform: translateY(-50%);
    width: 160px; height: 160px;
    opacity: 0.5;
    font-size: 140px;
    color: var(--gold-dark);
    font-family: serif;
    display: flex; align-items: center; justify-content: center;
  }
  .share-left {
    flex: 1;
    padding: 28px 0;
    position: relative;
  }
  .share-left .small { color:black; font-size: 14px; margin-bottom: 4px; }
  .share-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 1000;
    color: black;
  }
  .share-divider {
    width: 1px;
    height: 56px;
    background: var(--border);
    margin: 0 50px;
    flex-shrink: 0;
  }
  .share-middle {
    flex: 1;
    color: black;
    font-size: 14.5px;
    line-height: 1.7;
    opacity: 1;
  }
  .submit-review-btn {
    background: linear-gradient(135deg,#C00000,#7A0000);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    transition: background .2s;
    white-space: nowrap;
    margin-left: 40px;
  }
  .submit-review-btn:hover { transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);border-color: #D4A017;; }

  /* ── CTA ── */
  .cta-section {
    position: relative;
    background: url(images/bg3.png);
    padding: 64px 40px;
    text-align: center;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.15;
  }
  .cta-emblem-left, .cta-emblem-right {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    font-size: 120px;
    color: rgba(201,168,76,0.06);
    font-family: serif;
  }
  .cta-emblem-left { left: 40px; }
  .cta-emblem-right { right: 40px; }
  .cta-section .sub-label {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
  }
  .cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    position: relative;
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
  }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid;
    transition: all .2s;
    text-decoration: none;
  }
  .cta-btn.primary { background: linear-gradient(135deg,#C00000,#7A0000); color: white; border-color: #D4A017; }
  .cta-btn.primary:hover { transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);border-color: #D4A017; }
  .cta-btn.outline-wa { background: white; color: black; border-color: transparent; }
  .cta-btn.outline-wa:hover { background: green;border-color: #D4A017; }
  .cta-btn.outline-call { background: white; color: black; border-color: transparent; }
  .cta-btn.outline-call:hover { background:green;border-color: #D4A017; }

  /* REVIEW POPUP */

.review-popup{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.75);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 999999;
}

.review-popup-box{

    width: 92%;
    max-width: 520px;

    background: white;

    padding: 35px;

    border-radius: 14px;

    position: relative;

    animation: popupShow 0.3s ease;
}

@keyframes popupShow{

    from{
        transform: scale(0.8);
        opacity: 0;
    }

    to{
        transform: scale(1);
        opacity: 1;
    }
}

.close-popup{

    position: absolute;

    top: 10px;
    right: 18px;

    font-size: 30px;

    cursor: pointer;

    color: black;
}

.review-popup-box h2{

    text-align: center;

    margin-bottom: 24px;

    color: #2b0a05;

    font-family:'Cinzel', serif;
}

.review-popup-box form{

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.review-popup-box input,
.review-popup-box select,
.review-popup-box textarea{

    width: 100%;

    padding: 14px;

    border: 1px solid #ddd;

    border-radius: 8px;

    outline: none;

    font-size: 15px;
}

.review-popup-box textarea{

    height: 120px;

    resize: none;
}

.review-popup-box button{

    background: linear-gradient(135deg,#C00000,#7A0000);

    color: white;

    border: none;

    padding: 14px;

    border-radius: 8px;

    font-size: 15px;

    cursor: pointer;
}
.upload-label{

    font-size:14px;

    color:#7A0000;

    font-weight:600;

    margin-bottom:-8px;
}

/* =========================================
   VIEW MORE BUTTON
========================================= */

.view-more-wrap{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:50px;
}

.view-more-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:14px 34px;

    background:
    linear-gradient(
        135deg,
        #C00000,
        #7A0000
    );

    color:#ffffff;

    text-decoration:none;

    border-radius:40px;

    font-size:15px;

    font-weight:700;

    font-family:'Lato',sans-serif;

    border:1px solid #D4A017;

    transition:all 0.3s ease;

    box-shadow:
    0 8px 24px rgba(122,0,0,0.22);
}

.view-more-btn:hover{

    background:
    linear-gradient(
        135deg,
        #D4A017,
        #b8860b
    );

    color:#1A0604;

    transform:translateY(-3px);

    box-shadow:
    0 10px 28px rgba(212,160,23,0.3);
}
/* ================= WHATSAPP FLOAT ================= */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 999;
  text-decoration: none;
  transition: all .3s ease;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}

  /* =========================================
   TABLET RESPONSIVE
========================================= */

@media screen and (max-width:1024px){

    /* HERO */

    .hero{

        min-height:360px;

        padding-top:80px;
    }

    .hero-content{

        padding:40px 28px;

        max-width:100%;
    }

    .hero h1{

        font-size:38px !important;
    }

    /* TESTIMONIAL GRID */

    .clients-section{

        padding:45px 24px 50px;
    }

    .testimonials-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;
    }

    /* STATS */

    .stats-section{

        padding:40px 24px;
    }

    .stats-grid{

        grid-template-columns:1fr 1fr;

        gap:28px;
    }

    .stat-item{

        border-right:none;

        padding:0;
    }

    /* SHARE SECTION */

    .share-section{

        flex-wrap:wrap;

        padding:30px 24px;

        gap:18px;
    }

    .share-divider{

        display:none;
    }

    .submit-review-btn{

        margin-left:0;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media screen and (max-width:768px){

    /* HERO */

    .hero{

        min-height:auto;

        padding-top:85px;

        padding-bottom:40px;
    }

    .hero-content{

        padding:22px 18px;

        text-align:center;

        max-width:100%;
    }

    .hero-divider{

        justify-content:center;
    }

    .hero h1{

        font-size:30px !important;

        line-height:1.2;
    }

    .hero-sub{

        font-size:14px;

        line-height:1.6;
    }

    .hero p{

        font-size:13px;

        line-height:1.8;

        max-width:100%;
    }

    /* CLIENT SECTION */

    .clients-section{

        padding:36px 14px 42px;
    }

    .section-heading{

        margin-bottom:28px;
    }

    .section-heading h2{

        font-size:24px;

        line-height:1.4;
    }

    .testimonials-grid{

        grid-template-columns:1fr;

        gap:18px;
    }

    .tcard{

        padding:20px 16px 18px;

        border-radius:14px;
    }

    .quote-icon{

        font-size:30px;
    }

    .author-avatar{

        width:46px;
        height:46px;
    }

    .author-name{

        font-size:13px;
    }

    .author-loc{

        font-size:12px;
    }

    .tcard-text{

        font-size:13px;

        line-height:1.8;
    }

   /* VIEW MORE BUTTON MOBILE */

.view-more-btn{

    width:100%;

    max-width:260px;

    font-size:14px;

    padding:13px 18px;
}
    /* STATS */

    .stats-section{

        padding:35px 16px;
    }

    .stats-grid{

        grid-template-columns:1fr;

        gap:24px;
    }

    .stat-item{

        justify-content:center;

        text-align:center;

        flex-direction:column;

        gap:12px;
    }

    .stat-icon{

        font-size:32px;
    }

    .stat-number{

        font-size:28px;
    }

    .stat-label{

        font-size:15px;
    }

    /* SHARE SECTION */

    .share-section{

        padding:28px 18px;

        flex-direction:column;

        align-items:flex-start;

        gap:18px;

        min-height:auto;
    }

    .share-emblem{

        display:none;
    }

    .share-left{

        padding:0;
    }

    .share-left .small{

        font-size:12px;
    }

    .share-section h2{

        font-size:24px;

        line-height:1.4;
    }

    .share-middle{

        font-size:13px;

        line-height:1.8;
    }

    .submit-review-btn{

        width:100%;

        justify-content:center;

        margin-left:0;

        padding:13px;

        font-size:12px;
    }

    /* CTA */

    .cta-section{

        padding:55px 18px;
    }

    .cta-section h2{

        font-size:28px;

        line-height:1.3;
    }

    .cta-section .sub-label{

        font-size:14px;
    }

    .cta-buttons{

        flex-direction:column;

        align-items:center;

        gap:14px;
    }

    .cta-btn{

        width:100%;

        max-width:280px;

        justify-content:center;

        font-size:14px;

        padding:13px 20px;
    }

    /* REVIEW POPUP */

    .review-popup-box{

        width:94%;

        padding:26px 18px;

        border-radius:16px;
    }

    .review-popup-box h2{

        font-size:22px;

        margin-bottom:20px;
    }

    .review-popup-box input,
    .review-popup-box select,
    .review-popup-box textarea{

        padding:12px;

        font-size:14px;
    }

    .review-popup-box textarea{

        height:100px;
    }

    .review-popup-box button{

        padding:13px;

        font-size:14px;
    }

    /* WHATSAPP */

    .wa-float{

        width:52px;
        height:52px;

        font-size:24px;

        bottom:18px;
        right:18px;
    }

}


/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media screen and (max-width:480px){

    .hero h1{

        font-size:26px !important;
    }

    .hero-sub{

        font-size:13px;
    }

    .section-heading h2{

        font-size:21px;
    }

    .stat-number{

        font-size:24px;
    }

    .stat-label{

        font-size:14px;
    }

    .share-section h2{

        font-size:21px;
    }

    .cta-section h2{

        font-size:24px;
    }

}