/* =============================================================
   PINK SALT — snow-bricks.com
   Shared stylesheet for all pages
   ============================================================= */
:root{
  --cream:      #FBF8F5;
  --pink:       #F9E4DF;
  --pink-deep:  #EFC5B8;
  --terracotta: #C97B63;
  --terracotta-deep: #A85D46;
  --brown:      #5A3D2F;
  --brown-deep: #3E2A20;
  --gold:       #D4AF37;
  --ink:        #2E2019;
  --white:      #FFFFFF;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;

  --shadow-soft: 0 20px 45px -20px rgba(58, 39, 26, 0.28);
  --shadow-card: 0 14px 30px -18px rgba(58, 39, 26, 0.32);

  --max-width: 1180px;
}

/* =============================================================
   RESET
   ============================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul, dl{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{ font-family: var(--font-display); margin: 0 0 0.5em; color: var(--brown); font-weight: 600; line-height: 1.15; }
p{ margin: 0 0 1em; }
button{ font-family: inherit; cursor: pointer; }

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--brown); color: var(--white);
  padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }
:focus-visible{ outline: 3px solid var(--terracotta-deep); outline-offset: 3px; }

.wrap{ max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

.eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--terracotta-deep);
  margin-bottom: 0.75em;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 0.97rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 20px 34px -16px rgba(168,93,70,0.5); }
.btn-ghost{ background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-ghost:hover{ background: var(--brown); color: var(--white); }
.btn-gold{
  background: linear-gradient(135deg, var(--gold) 0%, #B8912A 100%);
  color: var(--white);
  box-shadow: 0 14px 26px -14px rgba(180,140,30,0.55);
}
.btn-gold:hover{ transform: translateY(-2px); }
.btn-small{ padding: 10px 20px; font-size: 0.84rem; }
.btn-large{ padding: 17px 36px; font-size: 1.02rem; }
.btn-full{ width: 100%; }

/* =============================================================
   HEADER / NAV  (shared across all pages)
   ============================================================= */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,245,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(90,61,47,0.12);
}
.header-inner{ display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand{ display: flex; align-items: center; gap: 12px; }
.brand-name{
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--brown);
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-sub{
  font-family: var(--font-body); font-weight: 500; font-size: 0.64rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta-deep);
}
.primary-nav{ display: flex; align-items: center; gap: 30px; }
.primary-nav a:not(.btn){
  font-weight: 600; font-size: 0.94rem; color: var(--brown); position: relative; padding-bottom: 4px;
}
.primary-nav a:not(.btn)::after{
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--terracotta-deep); transition: width 0.2s ease;
}
.primary-nav a:not(.btn):hover::after,
.primary-nav a[aria-current="page"]::after{ width: 100%; }
.primary-nav a[aria-current="page"]:not(.btn){
    color: var(--terracotta-deep);
}

.primary-nav a.btn[aria-current="page"]{
    color: #fff !important;
}

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: transparent; border: none; border-radius: 8px;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--brown); margin: 0 auto; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   HOME HERO
   ============================================================= */
.hero{
  padding: 76px 0 40px;
  background: radial-gradient(60% 55% at 82% 15%, rgba(249,228,223,0.9) 0%, rgba(251,248,245,0) 70%), var(--cream);
  overflow: hidden;
}
.hero-inner{ display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; }
.hero-copy h1{ font-size: clamp(2.2rem, 4vw, 3.3rem); max-width: 13ch; margin-bottom: 0.4em; }
.hero-sub{ font-size: 1.06rem; color: #6B5548; max-width: 46ch; margin-bottom: 1.8em; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2.2em; }
.hero-stats{ display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats dt{ font-family: var(--font-display); font-size: 1.7rem; color: var(--terracotta-deep); font-weight: 600; }
.hero-stats dd{ margin: 0; font-size: 0.8rem; color: #8A7365; max-width: 12ch; }
.hero-art{ position: relative; }
.hero-crystal-img{ width: 100%; filter: drop-shadow(0 30px 40px rgba(168,93,70,0.25)); animation: float 7s ease-in-out infinite; }
@keyframes float{ 0%, 100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }

/* =============================================================
   PAGE HEADER (About / Products / Services)
   ============================================================= */
/* =============================================================
   PAGE HEADER (About / Products / Services)
   ============================================================= */

.page-header{
    position: relative;
    width: 100%;
    height: 100vh;      
    overflow: hidden;
}

.page-header-art{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.page-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 2;
}

.page-header-inner{
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-header h1{
  color: #fff;
  font-size: clamp(40px,5vw,64px);
  margin-bottom: 15px;
}

.page-header p{
  color: #fff;
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

.page-header .eyebrow{
  color: #fff;
  letter-spacing: 3px;
}

@media (max-width:768px){

  .page-header{
    height:300px;
  }

  .page-header h1{
    font-size:34px;
  }

  .page-header p{
    font-size:16px;
  }

}


.page-header-art{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    z-index:-2;
}

.page-header::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:-1;
}

.page-header-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    max-width:900px;
    text-align:center;
    padding:0 20px;
}

.page-header-content .eyebrow{
    color:#fff;
    text-transform:uppercase;
    letter-spacing:8px;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.page-header-content h1{
    font-family:"Playfair Display",serif;
    color:#fff;
    font-size:70px;
    font-weight:600;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text{
    color:#fff;
    font-size:24px;
    line-height:1.7;
    max-width:700px;
    margin:0 auto;
}
/*==============================
    SERVICE HIGHLIGHT SECTION
==============================*/

.service-highlight{
    width:90%;
    max-width:1400px;
    margin:100px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    background:#fdf8f6;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/*==============================
        LEFT SIDE
==============================*/

.service-text{
    padding:70px 65px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
}

.service-title{
    font-family:"Playfair Display",serif;
    font-size:46px;
    font-weight:600;
    line-height:1.2;
    color:#7a4b38;
    margin-bottom:25px;
    max-width:550px;
}

.service-text p{
    font-size:20px;
    line-height:1.9;
    color:#555;
    max-width:560px;
    margin-bottom:35px;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#b56d47;
    font-size:19px;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    color:#8f5638;
    gap:14px;
}

/*==============================
        RIGHT SIDE
==============================*/

.service-image{
    width:100%;
    height:100%;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.service-highlight:hover .service-image img{
    transform:scale(1.05);
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px){

.service-highlight{
    grid-template-columns:1fr;
}

.service-text{
    padding:45px 35px;
}

.service-title{
    font-size:36px;
}

.service-text p{
    font-size:17px;
}

.service-image{
    height:380px;
}

}
.services-heading{
    text-align:center;
    font-family:"Playfair Display", serif;
    font-size:60px;
    font-weight:700;
    color:#6f4635;
    margin-bottom:60px;
}
.services-provide{

    padding:90px 0;

    background:#F9E4DF;   /* pic wala soft pink background */

    text-align:center;

}


.services-provide h2{

    font-family:"Playfair Display",serif;
    font-size:60px;
    color:#5A3D2F;
    margin-bottom:60px;

}
/*=============================
    SHIPPING BANNER
==============================*/

.shipping-banner{
    width:100%;
    padding:90px 0;
    background:#fff;
    overflow:hidden;
}

.banner-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    transition:.5s ease;
    cursor:pointer;
}

.banner-container img{
    width:100%;
    height:480px;
    object-fit:cover;
    display:block;
    transition:transform .8s ease;
}

/* Hover Effect */

.banner-container:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.18);
}

.banner-container:hover img{
    transform:scale(1.08);
}

/*=============================
      Tablet
==============================*/

@media(max-width:992px){

.banner-container{
    width:94%;
}

.banner-container img{
    height:380px;
}

.shipping-banner{
    padding:70px 0;
}

}

/*=============================
        Mobile
==============================*/

@media(max-width:768px){

.shipping-banner{
    padding:50px 20px;
}

.banner-container{
    width:100%;
    border-radius:18px;
}

.banner-container img{
    height:260px;
}

}

/*=============================
      Small Mobile
==============================*/

@media(max-width:480px){

.banner-container img{
    height:220px;
}

.shipping-banner{
    padding:40px 15px;
}

}


/* 2 x 2 Grid */

.services-grid{

    max-width:1000px;
    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:45px;

}



/* Card */

.service-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,0.08);

    transition:0.35s ease;

}


.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,0.15);

}



/* Image */

.service-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    display:block;

    transition:0.4s ease;

}


.service-card:hover img{

    transform:scale(1.06);

}



/* Heading */

.service-card h3{

    font-family:"Playfair Display",serif;

    font-size:30px;

    font-weight:600;

    color:#7A4B38;

    padding:25px 15px;

    margin:0;

}



/* Responsive */

@media(max-width:700px){

    .services-grid{

        grid-template-columns:1fr;

    }


    .services-provide h2{

        font-size:42px;

    }


    .service-card img{

        height:240px;

    }

}
/* =============================================================
   FEATURED / PRODUCT GRIDS (shared card component)
   ============================================================= */
.section{ padding: 90px 0; }
.section-tight{ padding: 60px 0; }
.section-head{ max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2{ font-size: clamp(1.9rem, 3.2vw, 2.5rem); }
.section-sub{ color: #6B5548; font-size: 1.02rem; }

.card-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card-grid.cols-3{ grid-template-columns: repeat(3, 1fr); }

.product-card{
  background: var(--white);
  border: 1px solid rgba(90,61,47,0.1);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex; flex-direction: column;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: 0 26px 40px -22px rgba(58,39,26,0.38); }
.product-card img{ width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-card-body{ padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card h3{ font-size: 1.12rem; margin-bottom: 0.35em; }
.product-card p{ color: #6B5548; font-size: 0.93rem; flex: 1; }
.product-card .btn{ align-self: flex-start; margin-top: 12px; }

/* ---- Interactive product media (hover/tap reveal) ---- */
.product-card-media{
  position: relative;
  overflow: hidden;
}
.product-card-media img{ transition: transform 0.5s ease; }
.product-card-media:hover img,
.product-card-media:focus-within img{ transform: scale(1.06); }
.media-overlay{
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 0 16px;
  background: linear-gradient(180deg, rgba(46,32,25,0) 45%, rgba(46,32,25,0.72) 100%);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: none; width: 100%; color: var(--white);
}
.product-card-media:hover .media-overlay,
.product-card-media:focus-within .media-overlay,
.product-card-media:active .media-overlay{ opacity: 1; transform: translateY(0); }
.media-overlay-pill{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.94); color: var(--brown);
  font-weight: 700; font-size: 0.82rem;
  padding: 9px 18px; border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.4);
}
.media-overlay-pill svg{ width: 15px; height: 15px; flex-shrink: 0; }
.product-card-media .info-badge{
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--terracotta-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,0.35);
  pointer-events: none;
}




/* =============================================================
   HOTSPOTS (interactive facts on About page imagery)
   ============================================================= */
.hotspot-layer{ position: relative; }
.hotspot{
  position: absolute; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: var(--terracotta-deep);
  border: 2px solid var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  box-shadow: 0 8px 18px -8px rgba(58,39,26,0.5);
  animation: pulse-ring 2.6s ease-in-out infinite;
}
.hotspot:hover, .hotspot:focus-visible, .hotspot.is-active{ background: var(--terracotta-deep); color: var(--white); animation: none; }
@keyframes pulse-ring{
  0%, 100%{ box-shadow: 0 8px 18px -8px rgba(58,39,26,0.5), 0 0 0 0 rgba(201,123,99,0.45); }
  50%{ box-shadow: 0 8px 18px -8px rgba(58,39,26,0.5), 0 0 0 8px rgba(201,123,99,0); }
}
.hotspot-tip{
  position: absolute; z-index: 5;
  bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 220px; background: var(--white); color: var(--ink);
  border-radius: var(--radius-s); padding: 14px 16px;
  box-shadow: var(--shadow-soft); text-align: left;
  opacity: 0; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease;
}
.hotspot-tip::after{
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: var(--white);
}
.hotspot-tip strong{ display: block; color: var(--terracotta-deep); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.hotspot-tip span{ font-size: 0.85rem; color: #6B5548; line-height: 1.45; }
.hotspot:hover .hotspot-tip,
.hotspot:focus-visible .hotspot-tip,
.hotspot.is-active .hotspot-tip{ opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* =============================================================
   INFO MODAL (product / service detail lightbox)
   ============================================================= */
.info-modal-backdrop{
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(46,32,25,0.55); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.info-modal-backdrop.is-open{ opacity: 1; visibility: visible; }
.info-modal{
  background: var(--cream); border-radius: var(--radius-l);
  max-width: 780px; width: 100%; max-height: 88vh; overflow-y: auto;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5);
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  transform: scale(0.94) translateY(10px); transition: transform 0.25s ease;
}
.info-modal-backdrop.is-open .info-modal{ transform: scale(1) translateY(0); }
.info-modal-media{ background: var(--pink); display: flex; align-items: center; justify-content: center; padding: 30px; }
.info-modal-media img{ width: 100%; max-width: 260px; }
.info-modal-body{ padding: 40px 40px 36px; position: relative; }
.info-modal-close{
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(90,61,47,0.08); color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: background 0.15s ease;
}
.info-modal-close:hover{ background: rgba(90,61,47,0.16); }
.info-modal-body .eyebrow{ margin-bottom: 0.5em; }
.info-modal-body h3{ font-size: 1.6rem; margin-bottom: 0.35em; }
.info-modal-desc{ color: #6B5548; font-size: 0.98rem; margin-bottom: 22px; }
.info-modal-facts{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin-bottom: 22px; }
.info-modal-fact{ border-top: 2px solid var(--pink-deep); padding-top: 8px; }
.info-modal-fact strong{ display: block; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terracotta-deep); margin-bottom: 3px; }
.info-modal-fact span{ font-size: 0.92rem; color: var(--brown); font-weight: 600; }
.info-modal-note{
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--pink); border-radius: var(--radius-m); padding: 16px 18px; margin-bottom: 24px;
}
.info-modal-note .note-mark{ font-family: var(--font-display); font-weight: 700; color: var(--terracotta-deep); font-size: 1.1rem; line-height: 1; }
.info-modal-note p{ margin: 0; font-size: 0.88rem; color: #6B5548; }
.info-modal-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 700px){
  .info-modal{ grid-template-columns: 1fr; max-height: 92vh; }
  .info-modal-media{ padding: 22px; }
  .info-modal-media img{ max-width: 160px; }
  .info-modal-body{ padding: 30px 24px 28px; }
  .info-modal-facts{ grid-template-columns: 1fr 1fr; }
}

/*=========================
   QUOTE SECTION
=========================*/

.quote-section{
    padding:80px 20px;
    background:#f8f5f2;
}

.quote-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/*=========================
   LEFT SIDE
=========================*/

.quote-left{

    background:linear-gradient(135deg,#6b412f,#8b563d,#b56d4f);

    color:#fff;

    padding:70px 60px;

}

.quote-badge{
    display: table;
    margin: 0 auto 35px;
    padding: 14px 34px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.quote-left h2{

    font-family:'Playfair Display',serif;

    font-size:58px;

    line-height:1.1;

    color:#fff;

    margin-bottom:28px;

}

.quote-left>p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.9);

    margin-bottom:45px;

}

/* FEATURES */

.feature{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:18px;

    margin-bottom:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

    transition:.35s;

}

.feature:hover{

    transform:translateX(8px);

    background:rgba(255,255,255,.16);

}

.icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    color:#b56d4f;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.feature h4{

    color:#fff;

    margin:0;

    font-size:22px;

    font-family:'Playfair Display',serif;

}

.feature p{

    margin-top:8px;

    color:rgba(255,255,255,.85);

    line-height:1.6;

    font-size:15px;

}

/*=========================
   RIGHT SIDE
=========================*/

.quote-right{

    padding:70px 60px;

    background:#fff;

}

.quote-right h3{

    font-family:'Playfair Display',serif;

    color:#5c3c2f;

    font-size:48px;

    margin-bottom:35px;

}

/* INPUTS */

.input-box{

    margin-bottom:20px;

}

.input-box input,

.input-box textarea{

    width:100%;

    padding:18px 22px;

    border:2px solid #ebe3de;

    border-radius:15px;

    background:#faf8f6;

    font-size:16px;

    transition:.3s;

    font-family:'Inter',sans-serif;

}

.input-box input::placeholder,

.input-box textarea::placeholder{

    color:#888;

}

.input-box textarea{

    height:170px;

    resize:none;

}

.input-box input:focus,

.input-box textarea:focus{

    outline:none;

    border-color:#b56d4f;

    background:#fff;

    box-shadow:0 10px 30px rgba(181,109,79,.18);

}

/* BUTTON */

.quote-right button{

    width:100%;

    height:62px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#c57c5b,#9d5d43);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    margin-top:10px;

}

.quote-right button:hover{

    transform:translateY(-4px);

    background:linear-gradient(135deg,#b66a4b,#874b35);

    box-shadow:0 15px 30px rgba(181,109,79,.3);

}

/*=========================
   RESPONSIVE
=========================*/

@media(max-width:992px){

.quote-container{

grid-template-columns:1fr;

}

.quote-left,

.quote-right{

padding:45px;

}

.quote-left h2{

font-size:42px;

}

.quote-right h3{

font-size:38px;

}

}

@media(max-width:600px){

.quote-section{

padding:60px 15px;

}

.quote-left,

.quote-right{

padding:30px 25px;

}

.quote-left h2{

font-size:34px;

}

.quote-right h3{

font-size:30px;

}

}
/*=========================================
        PRODUCT CTA SECTION
=========================================*/

.section-tight{
    padding:100px 0 120px;
    background:#f8f5f2;
}

.cta-banner{
    max-width:1100px;
    margin:0 auto 40px;   /* Footer se gap */
    padding:70px 60px;

    background:linear-gradient(135deg,#6b412f 0%,#8b563d 55%,#b97453 100%);
    border-radius:30px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    position:relative;
    overflow:hidden;
}

/* Decorative circles */

.cta-banner::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    left:-80px;
}

.cta-banner::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    bottom:-100px;
    right:-60px;
}

.cta-banner>*{
    position:relative;
    z-index:2;
}

.cta-banner h3{
    color:#fff;
    font-family:"Playfair Display",serif;
    font-size:52px;
    line-height:1.2;
    margin-bottom:22px;
}

.cta-banner p{
    color:rgba(255,255,255,.88);
    font-size:20px;
    line-height:1.8;
    max-width:760px;
    margin:0 auto 40px;
}

.cta-banner .btn{
    padding:18px 42px;
    font-size:17px;
    font-weight:700;

    background:#fff;
    color:#8b563d;

    border-radius:50px;
    border:none;

    transition:.35s;
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.cta-banner .btn:hover{
    transform:translateY(-5px);
    background:#f9e4df;
    color:#6b412f;
}


/*=========================
      RESPONSIVE
=========================*/

@media(max-width:768px){

.cta-banner{
    padding:50px 28px;
}

.cta-banner h3{
    font-size:36px;
}

.cta-banner p{
    font-size:17px;
}

.cta-banner .btn{
    width:100%;
}

}

/* =============================================================
   ABOUT PAGE SPECIFIC
   ============================================================= */

.split-section{
    padding:70px 0;
}

.split-section .wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.split-section.reverse .split-media{
    order:2;
}

.split-media img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:var(--radius-l);
    box-shadow:var(--shadow-soft);
    display:block;
}

.split-text h2{
    font-size:clamp(2rem,4vw,2.6rem);
    color:var(--terracotta-deep);
    margin:0 0 18px;
    text-transform:uppercase;
        text-align: center;
}

.split-text p{
    color:#6B5548;
    line-height:1.8;
    font-size:1rem;
    margin-bottom:35px;
}

.ceo-image{
    margin-top:120px;
}
/* =============================================================
   FOOTER (shared)
   ============================================================= */
.site-footer{ background: var(--brown); color: var(--pink); padding: 60px 0 0; }
.footer-inner{
  display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap;
  padding-bottom: 40px; border-bottom: 1px solid rgba(249,228,223,0.16);
}
.footer-brand{ display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-brand span{ font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-weight: 600; }
.footer-brand p{ margin: 0; width: 100%; font-size: 0.78rem; color: #D8B9A8; padding-left: 38px; }
.footer-nav{ display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a{ font-size: 0.9rem; color: #EAD5C9; font-weight: 600; }
.footer-social{ display: flex; gap: 20px; }
.footer-social a{ font-size: 0.9rem; color: #EAD5C9; font-weight: 600; }
.footer-bottom{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 22px 28px 26px; font-size: 0.8rem; color: #D8B9A8;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; max-width: 320px; margin: 0 auto; }
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3{ grid-template-columns: repeat(2, 1fr); }
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .split-section{ padding: 50px 0; }
  .split-section .wrap{ grid-template-columns: 1fr; }
  .split-section.reverse .split-media{ order: 0; }
  .value-row{ grid-template-columns: 1fr; }
  .contact-inner{ grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 760px){
  .nav-toggle{ display: flex; }
  .primary-nav{
    position: absolute; top: 100%; left: 0; right: 0; background: var(--cream);
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden; border-bottom: 1px solid rgba(90,61,47,0.12);
    transition: max-height 0.25s ease;
  }
  .primary-nav.is-open{ max-height: 360px; }
  .primary-nav a{ padding: 16px 28px; border-top: 1px solid rgba(90,61,47,0.08); }
  .primary-nav a.btn{ margin: 16px 28px; }

  .card-grid{ grid-template-columns: 1fr; }
  .card-grid.cols-3{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
  .cta-banner{ padding: 32px; flex-direction: column; align-items: flex-start; }
  .hotspot-tip{ width: 180px; font-size: 0.9em; }
  .info-modal-facts{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .wrap{ padding: 0 20px; }
  .hero{ padding-top: 56px; }
  .hero-stats{ gap: 22px; }
  .contact-inner{ padding: 26px; border-radius: var(--radius-m); }
  .page-header{ padding: 52px 0 42px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .hero-crystal-img{ animation: none; }
  *{ transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
.global-section{
    padding:30px 0;
    background:#fff;
    text-align:center;
}

.global-section h2{
    font-size:42px;
    margin-bottom:20px;
    color:#5a3d2f;
}

.global-section p{
    max-width:900px;
    margin:15px auto;
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.global-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin:40px 0;
}

.global-note{
    color:#555;
}
/* =========================================
   QUALITY CERTIFIED
========================================= */

.certifications-section {
  padding: 30px 0;
  background: #fff;
  text-align: center;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.certification-card {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: none;
  background: transparent;
}

.certification-card img {
  width: 125px;
  height: 125px;
  object-fit: contain;
  display: block;
}

/* Make all certification logos visually equal */
.certification-card:nth-child(1) img {
  transform: scale(1.10);
}

.certification-card:nth-child(2) img {
  transform: scale(0.95);
}

.certification-card:nth-child(3) img {
  transform: scale(1.10);
}

.certification-card:nth-child(4) img {
  transform: scale(1.25);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .certification-card {
    min-height: 140px;
    padding: 10px;
  }

  .certification-card img {
    width: 110px;
    height: 110px;
  }
}


/* =========================================
   HEALTH BENEFITS
========================================= */

.health-benefits-section {
  padding: 10px 0;
  background: var(--pink);
}

.health-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  background: #fff;
}

.health-card {
  padding: 35px 28px;
  min-height: 220px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.health-card:nth-child(4n) {
  border-right: none;
}

.health-card h3 {
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.health-card p {
  line-height: 1.8;
  color: #555;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certification-card:nth-child(2) {
    border-right: none;
  }

  .health-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-card:nth-child(4n) {
    border-right: 1px solid #eee;
  }

  .health-card:nth-child(2n) {
    border-right: none;
  }

}

@media (max-width: 600px) {

  .certification-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.certification-card {
  border: none;
  background: transparent;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}
  .health-benefits-grid {
    grid-template-columns: 1fr;
  }

  .health-card,
  .health-card:nth-child(2n),
  .health-card:nth-child(4n) {
    border-right: none;
  }

}



.hero-art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateX(15px);
}

.hero-main-image {
  width: 100%;
  max-width: 600px;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
}
.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pink);
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: var(--white);
  transform: translateY(-3px);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EAD5C9;
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
}


/*=========================
   PRODUCT MODAL
=========================*/

.product-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(6px);

    display: none;
    justify-content: center;
    align-items: center;

    padding: 25px;
    z-index: 9999;
}

.product-modal.active{
    display: flex;
}

.modal-content{

    width:90%;
    max-width:780px;
    max-height:88vh;

    overflow-y:auto;

    background:#fff;
    border-radius:22px;

    padding:28px;

    position:relative;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

    animation:popup .35s ease;
}

@keyframes popup{

    from{
        opacity:0;
        transform:translateY(30px) scale(.96);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

.close-modal{

    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#f4f4f4;

    font-size:24px;
    cursor:pointer;

    transition:.3s;
}

.close-modal:hover{

    background:#b56d4f;
    color:#fff;

}

.modal-header{

    display:flex;
    align-items:center;
    gap:28px;

    margin-bottom:30px;

}

.modal-header picture{

    flex-shrink:0;

}

.modal-header img{

    width:180px;
    height:180px;

    flex-shrink:0;

    object-fit:cover;
    aspect-ratio:1/1;

    border-radius:18px;

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.modal-header h2{

    font-size:34px;
    color:#5A3D2F;

    margin-bottom:12px;

}

.modal-header p{

    color:#666;
    line-height:1.8;

}

.spec-box{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin:30px 0;

}

.spec-box div{

    background:#faf6f4;

    padding:18px;

    border-radius:15px;

    text-align:center;

    transition:.3s;

}

.spec-box div:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.spec-box span{

    display:block;

    font-size:13px;

    color:#999;

    margin-bottom:6px;

}

.spec-box strong{

    color:#5A3D2F;

}

.table-heading{

    margin:25px 0 18px;

    font-size:28px;

    color:#5A3D2F;

}

.product-table{

    width:100%;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:14px;

}

.product-table th{

    background:#b56d4f;

    color:#fff;

    padding:14px;

    font-size:15px;

}

.product-table td{

    padding:13px;

    border-bottom:1px solid #eee;

    text-align:center;

}

.product-table tr:nth-child(even){

    background:#faf7f5;

}

.product-table tr:hover{

    background:#f7ece8;

}

.modal-buttons{

    display:flex;

    justify-content:flex-end;

    margin-top:28px;

}

/* Scrollbar */

.modal-content::-webkit-scrollbar{

    width:8px;

}

.modal-content::-webkit-scrollbar-thumb{

    background:#c48a70;

    border-radius:20px;

}

/*=========================
      Responsive
=========================*/

@media(max-width:768px){

.modal-content{

    width:95%;
    max-height:90vh;

    padding:20px;

}

.modal-header{

    flex-direction:column;

    text-align:center;

}

.modal-header img{

    width:140px;
    height:140px;

    aspect-ratio:1/1;

}

.modal-header h2{

    font-size:28px;

}

.spec-box{

    grid-template-columns:repeat(2,1fr);

}

.table-heading{

    font-size:22px;

}

.product-table{

    font-size:14px;

}

.modal-buttons{

    justify-content:center;

}

}

@media(max-width:500px){

.spec-box{

    grid-template-columns:1fr;

}

.product-table th,
.product-table td{

    padding:10px 6px;
    font-size:13px;

}

}

@media(max-width:400px){

.product-table th,
.product-table td{

    padding:8px 5px;
    font-size:12px;

}

}

@media(max-width:340px){

.product-table th,
.product-table td{

    padding:7px 4px;
    font-size:11px;

}

}


.footer{

    background:#5A3D2F;

    padding:70px 0 25px;

}






.footer-box h3{

    color:#fff;

    margin-bottom:20px;

    font-size:28px;

}

.footer-box a{

    display:block;

    color:#ead5c9;

    margin-bottom:12px;

    transition:.3s;

}

.footer-box a:hover{

    color:#F9E4DF;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#754e42;

    transform:translateY(-4px);

}

.footer-btn{

    display:inline-block;

    margin-top:20px;

    background:#aa7e71;

    color:#fff!important;

    padding:14px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.footer-btn:hover{

    background:#fff;

    color:#5A3D2F!important;

}

.footer-bottom{

    width:90%;

    max-width:1200px;

    margin:55px auto 0;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

}

.footer-bottom p{

    color:#d8b9a8;

}

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

gap:40px;

}

.footer-social{

justify-content:center;

}

}
/*==================================================
HERO SECTION
==================================================*/

.hero-section{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
}

/* IMAGE */

.hero-image{
    position:relative;
    width:100%;
    margin:0;
    padding:0;
}

.hero-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    display:block;
    border-radius:0;
}

/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.40);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:20px;
}

/* TEXT ON IMAGE */

.hero-top{
    color:#fff;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:18px;
    margin-bottom:18px;
}

.hero-overlay h1{
    color:#fff;
    font-size:62px;
    line-height:1.2;
    max-width:850px;
    margin:0;
}

/* CONTENT BELOW IMAGE */

.hero-bottom{
    text-align:center;
    margin-top:25px;
}

.hero-bottom p{
    max-width:850px;
    margin:0 auto;
    font-size:20px;
    line-height:1.8;
    color:#555;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
    margin-bottom:0;
}

/* REMOVE GAP AFTER BUTTONS */

.hero-buttons + *{
    margin-top:0 !important;
}

/* NATURAL WELLNESS HEADING */

.section-head{
    margin-top:0 !important;
    padding-top:0 !important;
}

.section-head .eyebrow{
    margin-top:0 !important;
    margin-bottom:10px;
}

/* REMOVE GAP BETWEEN NAVBAR & HERO */

.site-header{
    margin-bottom:0 !important;
}

.hero-section{
    margin-top:0 !important;
}

body{
    margin:0;
    padding:0;
}

main{
    margin-top:0 !important;
    padding-top:0 !important;
}

/* IF WRAP IS USED */

.hero-section .wrap{
    max-width:100%;
    padding:0;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero-image img{
    width:100%;
    height:auto;
    min-height:600px;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:0;
}
.hero-overlay h1{
    font-size:36px;
}

.hero-top{
    font-size:15px;
    letter-spacing:2px;
}

.hero-bottom{
    margin-top:18px;
}

.hero-bottom p{
    font-size:16px;
}

.hero-buttons{
    margin-top:18px;
}
}

.footer-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-box{
    flex: 1;
}

.footer-box:nth-child(2){
    text-align: center;
}   

.footer-box:last-child {
    margin-left: 80px; /* Value ko adjust kar sakte hain */
}

.footer-box p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    font-size: 20px;
}

.footer-box p i{
    color: #E08A68;   /* Theme color */
    margin-right: 10px;
    font-size: 12px;
    width: 20px;
    text-align: center;
}

.contact-box{
    max-width: 420px;
}

.contact-box h3{
    margin-bottom: 25px;
}

.contact-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.contact-item i{
    color: #E08A68;
    font-size: 22px;
    width: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item span{
    color: #F8E6D8;
    font-size: 18px;
    line-height: 1.7;
}

.quick-links h3{
    margin-bottom: 25px;
}

.quick-links a{
    display: block;
    color: #F8E6D8;
    text-decoration: none;
    font-size: 18px;      /* Contact Us jaisa size */
    line-height: 1.7;
    margin-bottom: 15px;
    transition: 0.3s;
}

.quick-links a:hover{
    color: #E08A68;
    padding-left: 8px;
}

/* =========================
   CONTACT PAGE
========================= */

.page-header{
    position:relative;
    height:420px;
    overflow:hidden;
    border-radius:0 0 40px 40px;
}

.page-header-art{
    width:100%;
    height:100%;
    object-fit:cover;
}

.page-header::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.page-header-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
    max-width:700px;
}

.page-header-content h1{
    font-size:58px;
    margin:15px 0;
}

.hero-text{
    font-size:18px;
    line-height:1.8;
}

.contact-section{
    padding:90px 0;
    background:#fbf8f5;
}

.contact-top{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    margin-top:60px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.info-card{
    display:flex;
    gap:18px;
    align-items:center;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.icon{
    width:60px;
    height:60px;
    background:#C97B63;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.info-card h4{
    margin-bottom:5px;
    color:#5A3D2F;
}

.info-card p{
    color:#666;
}

.map-box{
    background:#fff;
    padding:15px;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:100%;
    min-height:450px;
    border:0;
    border-radius:18px;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form-section{
    padding:0 0 90px;
    background:#fbf8f5;
}

.contact-form-box{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.contact-form{
    margin-top:40px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.input-box{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
    outline:none;
    transition:.3s;
    font-family:inherit;
}

.contact-form textarea{
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#C97B63;
    box-shadow:0 0 0 4px rgba(201,123,99,.15);
}

.btn-large{
    padding:18px 45px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.page-header{
    height:320px;
}

.page-header-content h1{
    font-size:40px;
}

.contact-top{
    grid-template-columns:1fr;
}

.form-row{
    grid-template-columns:1fr;
}

.contact-form-box{
    padding:35px;
}

}

@media(max-width:576px){

.page-header-content h1{
    font-size:30px;
}

.hero-text{
    font-size:16px;
}

.contact-form-box{
    padding:25px;
}

.info-card{
    padding:18px;
}

}

.product-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.product-card-media{
    width: 100%;
    height: 220px;      /* Image ki fixed height */
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-media img{
    width: 100%;
    height: 100%;
    object-fit: contain;    /* Icon cut nahi hogi */
    padding: 20px;
}


.hero-image{
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.hero-image img{
    width: 100%;
    height: 630px;
    object-fit: cover;
    display: block;
    border-radius: 0 0 50px 50px;
}


.hero-section{
    width: 100%;
    padding: 0;
     margin-bottom: 0px;
}

.hero-image{
    position: relative;
    width: 100%;
    height: 430px;          /* 👈 Isko 420–450px ke beech rakhna */
    overflow: hidden;
    border-radius: 0 0 38px 38px;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.40);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}
 
.hero-top{
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-overlay h1{
    font-size: 58px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0;
}

.footer-email{
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-email:hover{
    color: #f5b26b;
    text-decoration: underline;
}

html{
    scroll-behavior:smooth;
}
/* ================= FOOTER FIX ================= */

.footer {
    background: #5b3b2d;
    color: #fff;
    padding: 45px 70px 20px;
    font-family: 'Inter', sans-serif;
}


.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}


/* Logo */
.footer-logo {
    width: 320px;
    margin-top: 75px;
    margin-left: 150px;
}
 

/* All Footer Headings */

.footer-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 25px;
    color: #fff;
}


/* Quick Links */

.quick-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}


.quick-links a:hover {
    color:#f3a58b;
}



/* Contact */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
    padding-left: 5px;
}


.contact-item i {
    width: 25px;
    min-width: 25px;
    text-align: center;
    font-size: 17px;
    color: #f3a58b;
    margin-top: 4px;
}


.contact-item span,
.contact-item a {
    font-size: 16px;
    line-height: 1.6;
}

/* Bottom Copyright */

.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.25);
    margin-top:40px;
    padding-top:18px;
    text-align:center;
}


.footer-bottom p {
    font-size:16px;
    color:#fff;
    margin:0;
}


/* Mobile */

@media(max-width:768px){

.footer {
    padding:32px 25px 20px;
}

.footer-container {
    grid-template-columns:1fr;
    gap:22px;
}



.footer-box.quick-links a:last-child{
    margin-bottom:0;
}

.footer-bottom{
    margin-top:28px;
    padding-top:14px;
}

}
.contact-item:first-child i {
    margin-left: 8px;
}

.footer-link{
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-link:hover{
    color: #0056b3;
}
/* =============================================================
   FORM SUBMISSION — honeypot (spam trap) + status messages
   Added for Contact / Request a Quote email functionality.
   ============================================================= */
.form-field-hp{
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status{
  border-radius: var(--radius-s);
  padding: 14px 18px;
  margin: 4px 0 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-status.is-success{
  background: #E8F5E9;
  color: #256029;
  border: 1px solid #A5D6A7;
}

.form-status.is-error{
  background: #FDECEA;
  color: #A23B2E;
  border: 1px solid #F1B3AA;
}

.form-status.is-loading{
  background: var(--pink);
  color: var(--brown-deep);
  border: 1px solid var(--pink-deep);
}

button[type="submit"][disabled],
.btn[disabled]{
  opacity: 0.65;
  cursor: not-allowed;
}

/* =============================================================
   PRODUCTION OPTIMIZATION — RESPONSIVE, PERFORMANCE & A11Y FIXES
   Appended without altering existing branding/design.
   ============================================================= */

/* ---- Global overflow / layout safety net ---- */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}
*{ min-width: 0; }

/* <picture> should behave like the <img> it wraps */
picture{ display: block; max-width: 100%; }
picture img{ max-width: 100%; }

/* Prevent long/unbroken words (emails, urls) from forcing horizontal scroll */
p, span, a, li, td, th{ overflow-wrap: break-word; word-break: break-word; }

img{ height: auto; }

/* ---- Fluid type for large fixed-px headings so nothing overflows on small screens ---- */
.services-heading{ font-size: clamp(28px, 6vw, 60px); }
.services-provide h2{ font-size: clamp(28px, 6vw, 60px); }
.quote-left h2{ font-size: clamp(28px, 5vw, 58px); }
.quote-right h3{ font-size: clamp(22px, 4vw, 32px); }
.service-title{ font-size: clamp(26px, 5vw, 46px); }
.service-text p{ font-size: clamp(15px, 2vw, 20px); }
.global-section h2{ font-size: clamp(26px, 5vw, 42px); }
.hero-overlay h1{ font-size: clamp(28px, 6vw, 58px); }
.page-header-content h1{ font-size: clamp(28px, 6vw, 70px); }
.page-header-content .eyebrow{ font-size: clamp(14px, 2.2vw, 28px); letter-spacing: 0.2em; }
.hero-text{ font-size: clamp(15px, 2.2vw, 24px); }
.quote-badge{ font-size: clamp(11px, 1.6vw, 14px); }

/* ---- Buttons: full-width on small screens, touch-friendly sizing ---- */
@media (max-width: 520px){
  .btn{ width: 100%; }
  .primary-nav a.btn{ width: auto; }
  .global-buttons .btn,
  .hero-actions .btn,
  .modal-buttons .btn{ width: 100%; }
}
.btn, button, [role="button"]{ min-height: 44px; }
.nav-toggle{ min-width: 44px; min-height: 44px; }

/* ---- Header / nav small refinements for very small phones ---- */
@media (max-width: 400px){
  .header-inner{ padding: 12px 0; }
  .brand-mark{ width: 140px; height: auto; }
}

/* ---- Value cards / list items used on About & Services pages ---- */
.value-card, .value-item{
  padding: 16px 0;
}
.value-card h3, .value-item h3{
  font-size: clamp(16px, 2.4vw, 20px);
  margin-bottom: 4px;
}

/* ---- Card grids: guarantee stacking at small widths even where a
   page-specific breakpoint was missed ---- */
@media (max-width: 640px){
  .certification-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid{ grid-template-columns: 1fr; }
  .quote-container{ grid-template-columns: 1fr; }
  .service-highlight{ grid-template-columns: 1fr; }
  .footer-container{ grid-template-columns: 1fr; }
}

/* ---- Forms: comfortable touch targets, no overflow ---- */
.contact-form input,
.contact-form textarea,
.quote-form input,
.quote-form textarea{
  font-size: 16px; /* prevents iOS Safari auto-zoom on focus */
  max-width: 100%;
}
@media (max-width: 600px){
  .form-row{ grid-template-columns: 1fr; }
}

/* ---- Footer: keep icons aligned and text wrapping cleanly on all sizes ---- */
.footer-container{ max-width: 100%; }
.contact-item span, .contact-item a{ word-break: break-word; }
@media (max-width: 420px){
  .footer{ padding-left: 18px; padding-right: 18px; }
}

/* ---- Tables (product packaging tables in modals): fill the available modal width on every screen size, wrapping cell text instead of forcing a horizontal scroll/cut-off ---- */
.table-scroll{ width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.product-table{ width: 100%; table-layout: auto; }
@media (max-width: 500px){
  .product-table th,
  .product-table td{ overflow-wrap: break-word; word-break: normal; }
  /* Keep short values (code/weight) intact on one line; only the longer
     name/type text wraps at word boundaries, so nothing breaks mid-word */
  .product-table th:nth-child(n+3),
  .product-table td:nth-child(n+3){ white-space: nowrap; }
}

/* ---- Accessibility: stronger, consistent focus visibility ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible,
.hotspot:focus-visible{
  outline: 3px solid var(--terracotta-deep);
  outline-offset: 2px;
}

/* ---- Respect reduced motion across every animated/transitioning element ---- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Large screens: keep content comfortably centered, don't stretch edge-to-edge ---- */
@media (min-width: 1440px){
  .wrap{ max-width: 1280px; }
}

/* ---- Footer: mobile responsiveness fix ----
   Two desktop-only rules had no small-screen guard, so they were still
   applying on mobile and pushing/overflowing the footer:
   - .footer-box:last-child had a fixed 80px left margin, shrinking and
     shifting the Contact Us column off-center and off-screen.
   - .footer-logo had a scale(2) transform, oversizing the logo for a
     narrow column.
   Neutralizing just those two on mobile restores the intended single
   column, centered footer layout without touching desktop/tablet. */
@media (max-width: 768px){
  .footer-container{
    width: 100%;
    max-width: 100%;
  }
  .footer-box{
    width: 100%;
    max-width: 100%;
  }
  .footer-box:last-child{
    margin-left: 0;
  }
  .footer-logo{
    transform: translateX(30px);
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}
  .contact-box{
    max-width: 100%;
  }
  .contact-item{
    text-align: left;
  }
}
