: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: 270px;
    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; }

  /* ── SECTION HEADINGS ── */
  .section-title {
    text-align: center;
    padding: 50px 40px 10px;
  }
  .section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .ornament {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin: 6px auto 20px;
  }
  .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; }

  /* ── SERVICE GRID ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin: 0 40px 40px;
  }
  .service-card {
    background: var(--white);
    padding: 32px 24px 26px;
    text-align: center;
    transition: box-shadow .25s;
  }
  .service-card:hover { box-shadow: inset 0 -3px 0 var(--gold), 0 4px 20px rgba(234, 230, 9, 0.08); }
  .service-icon {
    width: 62px; height: 62px;
    background: linear-gradient(90deg,#1A0604,#3B0000,#5C0000);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #d4a017;
    position: relative;
  }
  .service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 1000;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .service-card p {
    font-size: 13.5px;
    color: black;
    line-height: 1.75;
    margin-bottom: 18px;
    min-height: 70px;
  }
  .btn-know {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    border: 1px dotted #6d1414;

    color: black;
    padding: 7px 18px;
    border-radius: 3px;
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-weight: 550;
    cursor: pointer;
    background: transparent;
    transition: all .2s;
    text-decoration: none;
}

  .btn-know:hover { background: linear-gradient(90deg,#1A0604,#3B0000,#5C0000) ;color: white; border-color: var(--dark); }
/* POPUP */

.service-modal{
  display:none;
  position:fixed;
  z-index:99999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.75);
  backdrop-filter: blur(5px);
  justify-content:center;
  align-items:center;
  padding:20px;
}

.modal-box{
  background:#fff;
  width:90%;
  max-width:480px;
  border-radius:20px;
  overflow:hidden;
  position:relative;
  animation:popupShow .4s ease;
  box-shadow:0 20px 60px rgba(0,0,0,.3);
}

@keyframes popupShow{

  from{
    transform:scale(.8);
    opacity:0;
  }

  to{
    transform:scale(1);
    opacity:1;
  }
}

.close-modal{
  position:absolute;
  right:18px;
  top:10px;
  font-size:34px;
  color:#fff;
  cursor:pointer;
  z-index:10;
}

.modal-img{
  width:100%;
  height:180px;
  object-fit:cover;
}

#modalTitle{
  font-size:24px;;
  color:#6d1414;
  padding:24px 30px 10px;
}

#modalDesc{
  padding:0 22px;
  line-height:1.8;
  color:#444;
}

#modalPoints{
  padding:15px 35px;
}

#modalPoints li{
  margin-bottom:12px;
  color:#333;
}

.modal-extra{
  background:#faf4ec;
  padding:18px 30px;
  margin:0 30px 20px;
  border-radius:12px;
}

.modal-extra p{
  margin-bottom:8px;
}

.modal-buttons{
  display:flex;
  gap:15px;
  padding:0 30px 30px;
}

.popup-btn{
  flex:1;
  text-align:center;
  padding:11px;
  font-size:14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

.primary-btn{
  background:#6d1414;
  color:#fff;
}

.wa-btn{
  background:#25D366;
  color:#fff;
}

.btn-know{
  cursor:pointer;
}
  /* ── OTHER SERVICES ── */
  .other-services {
    position: relative;
    margin: 0 40px 40px;
    background: url('images/service.jpeg');
    border-radius: 6px;
    overflow: hidden;
    padding: 42px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  
  .other-services-inner {
    position: relative;
    text-align: center;
    max-width: 680px;
  }
  .other-services-inner h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .other-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 60px;
    margin-top: 24px;
    text-align: left;
  }
  .other-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color:#D4A017 ;
    font-size: 16.5px;
  }
  .other-item i { color: #D4A017; font-size: 15px; flex-shrink: 0; }

  /* ── PROCESS ── */
  .process-section {
    background: var(--white);
    padding: 50px 60px 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 36px;
    position: relative;
  }
  .process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
  }
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-dark), rgba(201,168,76,0.2));
  }
  .step-circle {
    width: 64px; height: 64px;
    background: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: var(--gold);
    position: relative;
  }
  .step-num {
    position: absolute;
    top: -4px; right: -4px;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--dark);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
  }
  .process-step h4 {
    font-family: 'Cinzel', serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
  }
  .process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 140px; margin: 0 auto; }

  /* ── 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; }

 
/* ================= 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:380px;

        padding-top:90px;
    }

    .hero-content{

        padding:40px 30px;

        max-width:100%;
    }

    .hero h1{

        font-size:38px !important;
    }

    /* SERVICES */

    .services-grid{

        grid-template-columns:repeat(2,1fr);

        margin:0 20px 35px;
    }

    .service-card{

        padding:28px 20px;
    }

    .service-card p{

        min-height:auto;
    }

    /* OTHER SERVICES */

    .other-services{

        margin:0 20px 35px;

        padding:40px 24px;
        
        background: url('/images/bg3.png');
    }

    .other-list{

        gap:14px 30px;
    }

    /* PROCESS */

    .process-section{

        padding:50px 20px;
    }

    .process-steps{

        flex-wrap:wrap;

        gap:30px;
    }

    .process-step{

        flex:0 0 calc(50% - 20px);
    }

    .process-step:not(:last-child)::after{

        display:none;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media screen and (max-width:768px){

    /* HERO */

    .hero{

        min-height:auto;

        padding-top:85px;

        padding-bottom:40px;
    }

    .hero-content{

        padding:20px 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:15px;
    }

    .hero p{

        font-size:13px;

        line-height:1.8;

        max-width:100%;
    }

    /* SECTION TITLE */

    .section-title{

        padding:35px 15px 10px;
    }

    .section-title h2{

        font-size:24px;
    }

    /* SERVICES GRID */

    .services-grid{

        grid-template-columns:1fr;

        margin:0 15px 30px;

        gap:1px;
    }

    .service-card{

        padding:28px 18px;
    }

    .service-icon{

        width:56px;
        height:56px;

        font-size:22px;
    }

    .service-card h3{

        font-size:16px;
    }

    .service-card p{

        font-size:13px;

        line-height:1.8;

        min-height:auto;

        margin-bottom:16px;
    }

    .btn-know{

        font-size:14px;

        padding:8px 16px;
    }

    /* OTHER SERVICES */

    .other-services{

    margin:0 15px 30px;
    padding:35px 18px;
    border-radius:14px;

    background-image: url('/images/bg3.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 250px;

    }

    .other-services-inner h2{

        font-size:24px;
    }

    .other-list{

        grid-template-columns:1fr;

        gap:12px;

        text-align:left;
    }

    .other-item{

        font-size:14px;

        line-height:1.6;
    }

    /* PROCESS */

    .process-section{

        padding:45px 15px;
    }

    .process-steps{

        flex-direction:column;

        align-items:center;

        gap:28px;
    }

    .process-step{

        width:100%;

        max-width:280px;
    }

    .process-step p{

        max-width:100%;
    }

    /* POPUP */

    .modal-box{

        width:95%;

        border-radius:18px;
    }

    .modal-img{

        height:160px;
    }

    #modalTitle{

        font-size:22px;

        padding:20px 20px 8px;
    }

    #modalDesc{

        padding:0 20px;

        font-size:13px;
    }

    #modalPoints{

        padding:14px 28px;
    }

    #modalPoints li{

        font-size:13px;
    }

    .modal-extra{

        margin:0 20px 18px;

        padding:15px 18px;
    }

    .modal-buttons{

        flex-direction:column;

        padding:0 20px 25px;
    }

    /* 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;
    }

    /* 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:14px;
    }

    .service-card{

        padding:24px 15px;
    }

    .service-card h3{

        font-size:15px;
    }

    .service-card p{

        font-size:12.5px;
    }

    .other-services-inner h2{

        font-size:22px;
    }

    .other-item{

        font-size:13px;
    }

    .step-circle{

        width:58px;
        height:58px;

        font-size:20px;
    }

    .process-step h4{

        font-size:13px;
    }

    .process-step p{

        font-size:12px;
    }

    .cta-section h2{

        font-size:24px;
    }

}