/* =============================================
   TIRUPATI SALES CORPORATION — style.css

============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a1f44;
  --navy-mid:   #122b5e;
  --blue:       #1a56db;
  --blue-light: #3b82f6;
  --accent:     #f59e0b;
  --accent2:    #ef4444;
  --white:      #ffffff;
  --off-white:  #f4f7fc;
  --gray:       #64748b;
  --gray-light: #e2e8f0;
  --text:       #1e293b;
  --card-bg:    #ffffff;
  --shadow:     0 4px 24px rgba(10,31,68,0.10);
  --shadow-lg:  0 12px 48px rgba(10,31,68,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 7px 5%;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar i { margin-right: 6px; color: var(--accent); }
.topbar .fab.fa-whatsapp { color: #25d366; }






/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  box-shadow: 0 2px 20px rgba(10,31,68,0.10);
  border-bottom: 2px solid var(--navy);
  transition: var(--transition);
  transform: translateY(0);

  
}
.navbar.scrolled {
  height: 58px;
  box-shadow: 0 4px 30px rgba(10,31,68,0.15);
}
.navbar.hide {
  transform: translateY(-100%);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-circle {
  width: 44px; height: 44px;
  background: var(--navy);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.logo-circle.small { width: 70px; height: 70px; font-size: 1rem; }
.logo-circle.small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.logo-img {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  transition: var(--transition);
}
.navbar.scrolled .logo-img {
  height: 45px;
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.15;
}
.brand-main {
  font-family:  sans-serif;
  font-size: 1.35rem;
  letter-spacing: 3px;
  color: var(--navy);
  font-weight: bold;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 4px; list-style: none; align-items: center;
}
.nav-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active {
  background: var(--navy);
  color: white;
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--navy);
  display: block; border-radius: 2px; transition: var(--transition);
}




/* ── HERO IMPROVED ── */

.hero {
  min-height: 92vh;

  background:
  linear-gradient(
    135deg,
    #7dd3fc 0%,
    #38bdf8 45%,
    #0284c7 100%
  );

  position: relative;
  display:flex;
  align-items:center;

  padding:80px 5% 60px;

  overflow:hidden;
}


/* Moving Grid */

.hero-bg-grid {

 position:absolute;
 inset:0;

 background-image:
 linear-gradient(
 rgba(255,255,255,.08) 1px,
 transparent 1px
 ),
 linear-gradient(
 90deg,
 rgba(255,255,255,.08) 1px,
 transparent 1px
 );

 background-size:80px 80px;

 opacity:.5;

 animation:gridPan 25s linear infinite;

}


@keyframes gridPan {

 from{
 background-position:0 0;
 }

 to{
 background-position:80px 80px;
 }

}



/* Glow Effects */

.hero::before{

content:"";

position:absolute;

top:-150px;
right:-150px;

width:650px;
height:650px;


background:
radial-gradient(
circle,
rgba(255,255,255,.45),
transparent 65%
);


filter:blur(20px);

}


.hero::after{

content:"";

position:absolute;

bottom:-200px;
left:-100px;

width:500px;
height:500px;


background:
radial-gradient(
circle,
rgba(255,255,255,.25),
transparent 65%
);


}



/* Content */

.hero-content{

position:relative;

z-index:2;

margin-top:-20px;

max-width:750px;

}



/* Badge */

.hero-badge{

display:inline-flex;

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

backdrop-filter:blur(10px);


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


color:white;


font-size:.78rem;

letter-spacing:3px;


padding:9px 20px;


border-radius:50px;


margin-bottom:25px;

font-weight:600;

}



/* Heading */


/* ── HERO TITLE ── */

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 6px;
  color: white;
  margin-bottom: 25px;
  text-transform: uppercase;

}


/* .hero-accent{


/* Main Hero Heading */

.hero-title {

  font-family:'Bebas Neue', sans-serif;

  font-size:
  clamp(4rem,8vw,7rem);

  line-height:0.9;

  letter-spacing:6px;

  color:white;

  margin-bottom:25px;

  text-transform:uppercase;



}


/* Highlight Text */
/* ── GOLDEN SALES CORPORATION ── */

.hero-accent {
  display: inline-block;
  color: #facc15;
  letter-spacing: 8px;
  font-size: 0.95em;

  text-shadow: none !important;
  filter: none !important;
  background: none !important;
  -webkit-text-fill-color: #facc15 !important;
}

/* ── GOLDEN UNDERLINE ── */

.hero-accent::after {
  display: none;
}

/* Description */


.hero-desc{

font-size:
clamp(1rem,2vw,1.18rem);


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


line-height:1.8;


font-weight:400;


margin-bottom:38px;

}



/* ── PREMIUM HERO BUTTONS ── */

.hero-btns{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}


/* Explore Products Button */

.btn-primary{

  position:relative;
  overflow:hidden;

  background:#0a1f44;

  color:white;

  text-decoration:none;

  padding:16px 38px;

  border-radius:50px;

  border:2px solid #0a1f44;

  font-weight:700;

  font-size:.95rem;

  letter-spacing:.5px;

  transition:.35s;

  box-shadow:
  0 10px 25px rgba(10,31,68,.25);

}


.btn-primary::before{

 content:"";

 position:absolute;

 top:0;
 left:-100%;

 width:100%;
 height:100%;


 background:
 linear-gradient(
 120deg,
 transparent,
 rgba(255,255,255,.35),
 transparent
 );


 transition:.5s;

}



.btn-primary:hover::before{

 left:100%;

}


.btn-primary:hover{

 transform:translateY(-5px);

 background:#122b5e;

 border-color:#122b5e;

 box-shadow:
 0 18px 35px rgba(10,31,68,.35);

}



/* Contact Us Button */


.btn-outline{


 background:white;

 color:#0a1f44;


 text-decoration:none;


 padding:16px 38px;


 border-radius:50px;


 border:
 2px solid white;


 font-weight:700;


 font-size:.95rem;


 letter-spacing:.5px;


 transition:.35s;


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


}



.btn-outline:hover{


 background:#f59e0b;


 color:white;


 border-color:#f59e0b;


 transform:translateY(-5px);


 box-shadow:
 0 15px 35px rgba(245,158,11,.35);


}


/* Scroll */

.scroll-dot{


width:12px;

height:12px;


background:white;


box-shadow:
0 0 20px white;


}




/* ── ANIMATIONS ── */
.animate-fade-up {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.7s forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── BRANDS TICKER ── */
.product-range-section {
  padding: 72px 5%;
  background: #f7f7f7;
}
.product-range-section .section-header {
  max-width: 900px;
  margin: 0 auto 36px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  background: #d9d9d9;
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brand-logo {
  max-height: 70px;
  width: auto;
  display: block;
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(15,23,42,0.12);
}
.brand-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  display: grid;
  place-items: center;
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15,23,42,0.08);
}
.brand-card img {
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-card img.brand-logo {
  max-height: 65px;
}
@media (max-width: 980px) {
  .brand-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 680px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card {
    min-height: auto;
    gap: 12px;
    padding: 14px 18px;
  }
}

/* ── SECTION COMMONS ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header.light .section-title,
.section-header.light .section-sub { color: white; }
.contact-section .section-header.light .section-title,
.contact-section .section-header.light .section-sub { color: #0f172a; }
.contact-section .section-tag.light { background: rgba(255,255,255,0.65); color: #0f172a; }
.section-tag {
  display: inline-block;
  background: rgba(20,42,88,0.10);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.section-tag.light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-title.left { text-align: left; }
.section-title.light { color: white; }
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ── DEALS SECTION ── */
.deals-section {
  padding: 52px 4%;
  background: var(--off-white);
}
.deals-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.deals-carousel {
  display: flex;
  gap: 18px;
  overflow: hidden;
  flex: 1;
  scroll-behavior: smooth;
}
.deal-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}
.deal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.deal-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.deal-icon-wrap i { font-size: 1.2rem; color: white; }
.deal-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.4px;
}
.deal-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; margin-bottom: 12px; }
.deal-list li {
  font-size: 0.78rem; color: var(--text);
  padding: 3px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; gap: 8px;
}
.carousel-btn {
  width: 40px; height: 40px;
  background: white;
  border: 2px solid var(--gray-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* ── STATS ── */
.stats-section {
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 100%);
  padding: 56px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 140px;
  text-align: center;
  padding: 16px;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: #0f172a;
  line-height: 1;
}
.stat-plus { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: #1e3a8a; }
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(15,23,42,0.72);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── PRICE LIST ── */
.price-section {
  padding: 80px 5%;
  background: white;
}
.price-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 0;
}
.price-tab {
  padding: 10px 24px;
  border: none; background: none;
  font-size: 0.88rem; font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

/* =========================
   PRICE LIST SECTION
========================= */


.price-section{

    width:90%;
    margin:auto;
    padding:60px 0;

}



/* Brand Box */

.brand-price-box{

    margin-top:30px;

}



/* =========================
   BRAND PRICE HEADER
========================= */

.brand-header{

    background:#6AB7F1;

    color:#ffffff;

    padding:20px 25px;

    border-radius:12px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    transition:0.3s ease;

}



.brand-header:hover{

    background:#07406c;

}



.brand-header h3{

    margin:0;

    font-size:24px;

    font-weight:600;

    color:#06152f;

}



.brand-header span{

    font-size:22px;

    color:#021028;

}


.brand-header h3{

    margin:0;

    font-size:24px;

    font-weight:600;

}



.brand-header span{

    font-size:22px;

}






/* =========================
   PRODUCT GRID
========================= */


.product-grid{

    display:none;

    margin-top:30px;

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

    gap:25px;

}






/* =========================
   PRODUCT CARD
========================= */


.product-card{

    background:white;

    border-radius:15px;

    overflow:hidden;

    box-shadow:
    0 8px 25px rgba(203, 31, 31, 0.12);

    transition:all 0.3s ease;

}



.product-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 12px 30px rgba(227, 199, 199, 0.18);

}





.product-card a{

    text-decoration:none;

    color:#222;

}





/* Product Image */


.product-card img{


    width:100%;

    height:200px;

    object-fit:contain;

    padding:15px;

    background:#f8f8f8;


}





/* Product Name */


.product-card h4{

    text-align:center;

    padding:15px 10px;

    margin:0;

    font-size:18px;

    font-weight:600;

}


/* pdf viewer */

.pdf-modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    z-index:9999;

}

.pdf-content{

    width:90%;

    height:90%;

    background:#fff;

    margin:2% auto;

    border-radius:12px;

    overflow:hidden;

    position:relative;

}

.pdf-content iframe{

    width:100%;

    height:100%;

    border:none;

}

.close-btn{

    position:absolute;

    top:10px;

    right:15px;

    width:40px;

    height:40px;

    border:none;

    border-radius:50%;

    background:#0a1f44;

    color:#fff;

    cursor:pointer;

    font-size:20px;

}




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



@media(max-width:1100px){


    .product-grid{

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

    }


}





@media(max-width:800px){


    .product-grid{

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

    }



    .brand-header h3{

        font-size:20px;

    }


}

@media (max-width: 500px){

    .product-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .price-section{
        width:95%;
    }

    .product-card img{
        height:140px;
        padding:10px;
    }

    .product-card h4{
        font-size:15px;
        padding:10px;
    }

}





/* ── FOUNDER ── */
.founder-section {
  padding: 80px 5%;
  background: var(--off-white);
}
.founder-card {
  display: flex; gap: 60px; align-items: flex-start;
  background: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
  max-width: 1100px;
  margin: 0 auto;
}
.founder-photo-side { flex-shrink: 0; text-align: center; }
.founder-photo-frame {
  width: 220px; height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--navy);
  margin-bottom: 16px;
  position: relative;
}
.founder-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
}


.founder-photo-frame {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
}

.founder-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-photo-placeholder i { font-size: 3.5rem; color: rgba(255,255,255,0.3); }
.founder-photo-placeholder span { font-size: 0.85rem; font-weight: 600; color: white; }
.founder-photo-placeholder small { font-size: 0.68rem; color: rgba(255,255,255,0.45); text-align: center; padding: 0 8px; }
.founder-contact-chips { display: flex; flex-direction: column; gap: 8px; }
.chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}
.chip:hover { background: var(--navy); color: white; }
.chip.whatsapp:hover { background: #25d366; border-color: #25d366; }
.chip i { font-size: 0.9rem; }
.founder-bio-side { flex: 1; }
.quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.founder-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.founder-title-tag {
  display: inline-block;
  background: rgba(20,42,88,0.08);
  color: var(--blue);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.founder-bio {
  font-size: 0.92rem; color: var(--gray); line-height: 1.75;
  margin-bottom: 14px;
}
.founder-stats {
  display: flex; gap: 32px; margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}
.f-stat { text-align: center; }
.f-stat span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--navy);
}
.f-stat small {
  font-size: 0.73rem; color: var(--gray);
  letter-spacing: 0.5px;
}

/* ── ABOUT US ── */
.about-section {
  padding: 80px 5%;
  background: white;
}
.about-grid {
  display: flex; gap: 80px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-visual {
  flex-shrink: 0;
  position: relative;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.about-big-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9rem;
  color: var(--navy);
  opacity: 0.07;
  line-height: 1;
  user-select: none;
  position: absolute;
}
.about-badge-float {
  background: var(--navy);
  color: var(--accent);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 22px;
  border-radius: 99px;
  z-index: 1;
  position: relative;
  box-shadow: 0 8px 32px rgba(10,31,68,0.25);
}
.about-content p {
  font-size: 0.95rem; color: var(--gray);
  line-height: 1.75; margin-bottom: 14px;
}
.about-content p strong { color: var(--navy); }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 24px;
}
.highlight-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem; font-weight: 500; color: var(--text);
}
.highlight-item i { color: var(--blue); font-size: 1rem; }

/* ── ENQUIRY FORM ── */
.enquiry-section {
  padding: 80px 5%;
  background: var(--off-white);
}
.enquiry-form {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.enquiry-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field span {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
}
.form-field em { color: var(--accent2); font-style: normal; }
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  background: #fbfcff;
  font: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
  background: white;
}
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) { border-color: var(--accent2); }
.enquiry-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.enquiry-actions .btn-primary { cursor: pointer; }
.enquiry-actions .btn-primary:disabled { cursor: wait; opacity: 0.7; transform: none; }
.form-status { min-height: 1.3em; font-size: 0.86rem; font-weight: 500; }
.form-status.success { color: #15803d; }
.form-status.error { color: var(--accent2); }

/* ── CONTACT ── */
.contact-section {
  padding: 80px 5%;
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
  position: relative;
}
.contact-card,
a.contact-card {
  display: block;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 24px 50px rgba(15,23,42,0.08);
}
.contact-card:hover,
a.contact-card:hover {
  background: rgba(255,255,255,0.45);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.85);
}
.contact-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem; color: #0f172a;
  box-shadow: 0 10px 25px rgba(15,23,42,0.08);
  border: 2px solid rgba(15,23,42,0.09);
}
.contact-icon.whatsapp { background: rgba(37,211,102,0.18); color: #047857; border-color: rgba(37,211,102,0.35); }
.contact-icon.email { background: rgba(251,191,36,0.18); color: #994d00; border-color: rgba(251,191,36,0.35); }
.contact-icon.location { background: rgba(59,130,246,0.18); color: #1d4ed8; border-color: rgba(59,130,246,0.35); }
.contact-icon.phone { background: rgba(56,189,248,0.18); color: #0369a1; border-color: rgba(56,189,248,0.35); }
.contact-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.contact-card a, .contact-card p {
  display: block;
  font-size: 0.92rem;
  color: rgba(15,23,42,0.80);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
}
.contact-card a:hover { color: #0f172a; }
.map-link {
  display: inline-flex !important;
  align-items: center; gap: 6px;
  margin-top: 10px;
  background: #0f172a;
  color: white !important;
  padding: 10px 18px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.85rem !important;
  transition: var(--transition);
}
.map-link:hover { background: #1d4ed8; transform: translateY(-2px); }

/* ── FOOTER ── */
.footer {
  background: #060f22;
  padding: 32px 5%;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
}
.footer-brand strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 2px;
  color: white;
}
.footer-brand p { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: var(--transition);
}
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }



/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .deal-card { min-width: calc(45% - 12px); max-width: 320px; }
  .founder-card { flex-direction: column; padding: 36px 28px; gap: 32px; }
  .founder-photo-side { width: 100%; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .about-grid { flex-direction: column; gap: 40px; }
  .about-visual { width: 100%; height: 120px; }
  .about-big-letter { font-size: 7rem; }
  .stat-divider { display: none; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-light); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .deals-section { padding: 42px 3%; }
  .section-header { margin-bottom: 20px; }
  .section-title { font-size: 2rem; }
  .section-sub { font-size: 0.95rem; line-height: 1.5; }
  .deals-carousel-wrapper { gap: 8px; }
  .deals-carousel {
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .deals-carousel::-webkit-scrollbar { display: none; }
  .deal-card {
    min-width: 88vw;
    max-width: 88vw;
    padding: 18px 16px;
    scroll-snap-align: center;
    margin: 0;
  }
  .deal-icon-wrap { width: 44px; height: 44px; margin-bottom: 12px; }
  .deal-icon-wrap i { font-size: 1.1rem; }
  .deal-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
  .deal-card p { font-size: 0.8rem; margin-bottom: 10px; }
  .deal-list li { font-size: 0.76rem; padding: 3px 0; }
  .carousel-btn { display: none; }
  .carousel-dots { margin-top: 18px; }
  .topbar { font-size: 0.72rem; gap: 12px; }
  .founder-card { padding: 24px 18px; }
  .about-highlights { grid-template-columns: 1fr; }
  .price-tabs { gap: 4px; }
  .price-tab { padding: 8px 14px; font-size: 0.8rem; }
  .enquiry-section { padding: 56px 5%; }
  .enquiry-form { padding: 24px 18px; }
  .enquiry-fields { grid-template-columns: 1fr; gap: 18px; }
  .form-field-wide { grid-column: auto; }
  .enquiry-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
}
@media(max-width:900px){

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

}


@media(max-width:500px){

    .price-grid{
        grid-template-columns:1fr;
    }

}




