
:root{
  --primary:#0f3d8c;
  --secondary:#f26a12;
  --dark:#102033;
  --text:#334155;
  --muted:#64748b;
  --light:#f8fafc;
  --white:#ffffff;
  --border:#e2e8f0;
  --success:#0f766e;
  --shadow:0 12px 30px rgba(15,61,140,.08);
  --radius:18px;
  --container:min(1180px, 92vw);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:sans-serif;
  color:var(--text);
  line-height:1.65;
  background:#fff;
  margin-top: 120px;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{padding-left:1.2rem}
.container{width:var(--container);margin:auto}
.section{padding:30px 0}
.section-sm{padding:48px 0}
.bg-light{background:var(--light)}
.text-center{text-align:center}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.badge{
  display:inline-block;padding:8px 14px;border-radius:999px;
  background:rgba(242,106,18,.12);color:var(--secondary);
  font-size:.9rem;font-weight:700;letter-spacing:.2px; margin-bottom: 10px;
}
h1,h2,h3,h4{
  color:var(--dark);line-height:1.2;margin:0 0 16px
}
h1{font-size:clamp(2rem,4vw,3.8rem)}
h2{font-size:clamp(1.6rem,3vw,2.6rem)}
h3{font-size:1.3rem}
p{margin:0 0 16px}
.cost-box .small {
  text-align: left !important;
}
.topbar{
  background:var(--primary);color:#fff;font-size:.92rem
}
.topbar .container{
  display:flex;justify-content:space-between;gap:20px;
  padding:10px 0;flex-wrap:wrap
}
.topbar a{color:#fff}
header.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-wrap{
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;padding:14px 0
}
.logo{
  display:flex;align-items:center;gap:12px;min-width:0
}
.logo img{width:100px;height:auto}
.logo-text{min-width:0}
.logo-text strong{
  display:block;font-size:1.4rem;color:var(--primary);line-height:1.1
}
.logo-text span{color:var(--secondary);font-weight:700;display:block}
.nav-toggle{
  display:none;border:none;background:var(--primary);color:#fff;
  width:48px;height:48px;border-radius:12px;font-size:1.2rem;cursor:pointer
}
nav.primary-nav ul{
  display:flex;list-style:none;margin:0;padding:0;gap:24px;align-items:center
}
nav.primary-nav a{
  font-weight:700;color:var(--dark)
}
nav.primary-nav a:hover, nav.primary-nav a.active{color:var(--secondary)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border:none;border-radius:14px;padding:10px 22px;font-weight:700; margin-left: 10px;
  cursor:pointer;transition:.25s ease;box-shadow:none
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--secondary);color:#fff}
.btn-outline{background:#fff;color:var(--primary);border:1px solid var(--border)}
.btn-dark{background:var(--primary);color:#fff}
.hero{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg, #eff6ff 0%, #fff 50%, #fff7ed 100%);
  padding:50px 0 50px
}
.hero::before{
  content:"";position:absolute;right:-120px;top:-100px;width:380px;height:380px;
  background:radial-gradient(circle, rgba(242,106,18,.22), rgba(242,106,18,0));
  border-radius:50%
}
.hero-grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:42px;align-items:center
}
.hero-card{
  background:#fff;border:1px solid var(--border);border-radius:28px;
  padding:28px;box-shadow:var(--shadow)
}
.hero-list{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:18px
}
.hero-list div{
  background:var(--light);border:1px solid var(--border);padding:14px 16px;
  border-radius:16px;font-weight:700;color:var(--dark)
}
.card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:24px;box-shadow:var(--shadow)
}
.icon-box{
  width:56px;
  height:56px;
  border-radius:16px;
  background:#eff6ff;
  color:var(--primary);

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

  font-size:1.5rem;
  text-align:center;

  margin: 0 auto;   /* ? center horizontally */
}
.stats{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px
}
.stat{
  background:#fff;border:1px solid var(--border);padding:22px;border-radius:18px;text-align:center
}
.stat strong{display:block;font-size:1.8rem;color:var(--primary);margin-bottom:8px}
.product-card img,.blog-card img{
  border-radius:16px;margin-bottom:14px;border:1px solid var(--border)
}
.price{
  font-size:1.5rem;color:var(--secondary);font-weight:800
}
.feature-list{
  list-style:none;padding:0;margin:18px 0 0
}
.feature-list li{
  padding:5px 28px;position:relative;border-bottom:1px dashed var(--border)
}
.feature-list li::before{
  content: "\f00c"; /* check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
}
.cta{
  background:linear-gradient(135deg, var(--primary), #1d4ed8);
  color:#fff;border-radius:28px;padding:42px
}
.cta h2,.cta p{color:#fff}
.faq-item{
  border:1px solid var(--border);border-radius:16px;padding:20px;background:#fff
}
table.pricing-table{
  width:100%;border-collapse:collapse;background:#fff;border-radius:18px;overflow:hidden;
  box-shadow:var(--shadow);border:1px solid var(--border)
}
.pricing-table th,.pricing-table td{
  padding:16px;border-bottom:1px solid var(--border);text-align:left;vertical-align:top
}
.pricing-table th{background:#eff6ff;color:var(--primary)}
.form-group{margin-bottom:16px}
.form-control{
  width:100%;padding:14px 16px;border:1px solid #cbd5e1;border-radius:14px;
  font-size:1rem;outline:none
}
.form-control:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(15,61,140,.1)}
footer{
  background:var(--dark);color:#cbd5e1;padding:56px 0 24px
}
footer h3, footer h4{color:#fff; font-size: 23px;}
footer a{color:#cbd5e1}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1.3fr;gap:24px
}
.page-hero{
  background:linear-gradient(135deg,#eff6ff,#fff);
  padding:30px 15px 30px 30px;border-bottom:1px solid var(--border)
}
.breadcrumb{
  color:var(--muted);font-size:.95rem;margin-top:8px
}
.blog-card .meta{font-size:.92rem;color:var(--muted);margin-bottom:12px}
.article-content h2{margin-top:32px}
.article-content h3{margin-top:24px}
.note{
  background:#fff7ed;border-left:4px solid var(--secondary);padding:16px 18px;border-radius:12px
}
@media (max-width: 991px){
  .hero-grid,.grid-4,.footer-grid,.stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-2{grid-template-columns:1fr}
  .nav-toggle{display:inline-flex;align-items:center;justify-content:center}
  nav.primary-nav{
    display:none;position:absolute;left:0;right:0;top:100%;background:#fff;border-bottom:1px solid var(--border);z-index:9999;
  }
  nav.primary-nav.open{display:block}
  nav.primary-nav ul{flex-direction:column;align-items:flex-start;padding:18px var(--container);gap:16px}
}
@media (max-width: 640px){
  .hero{padding:56px 0}
  .hero-list,.grid-3,.grid-4,.stats,.footer-grid{grid-template-columns:1fr}
  .section{padding:56px 0}
  .cta{padding:28px}
  .logo img{width:250px !important}
  .topbar .container{flex-direction:column;gap:8px}
  .pricing-table{display:block;overflow-x:auto;white-space:nowrap}
}


/* Premium Product Pages */
.product-shell{padding:56px 0}
.product-layout{display:grid;grid-template-columns:1.02fr .98fr;gap:34px;align-items:start}
.product-gallery,.product-panel,.product-content-card{
  background:#fff;border:1px solid var(--border);border-radius:24px;box-shadow:var(--shadow)
}
.product-gallery{padding:22px;position:sticky;top:110px}
.product-main-image{
  aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;
  border-radius:20px;background:linear-gradient(135deg,#f8fafc,#eef2ff);
  border:1px solid var(--border);overflow:hidden
}
.product-main-image img{width:100%;height:100%;object-fit:contain}
.product-thumbs{display:flex;gap:12px;margin-top:14px;flex-wrap:wrap}
.product-thumb{
  width:74px;height:74px;border-radius:16px;border:2px solid #dbe4f0;background:#fff;
  padding:6px;cursor:pointer;transition:.2s ease;display:flex;align-items:center;justify-content:center
}
.product-thumb img{width:100%;height:100%;object-fit:contain}
.product-thumb.active,.product-thumb:hover{border-color:var(--secondary);transform:translateY(-2px)}
.product-panel{padding:26px}
.product-subtitle{font-size:1.02rem;color:var(--muted);margin-top:-8px}
.rating-row{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin:14px 0 18px}
.star-badge{
  background:#ecfdf5;color:#047857;border:1px solid #a7f3d0;
  padding:8px 12px;border-radius:999px;font-size:.92rem;font-weight:700
}
.mini-note{color:var(--muted);font-size:.95rem}
.tenure-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:18px 0}
.tenure-card{
  border:1.5px solid #dbe4f0;background:#fff;border-radius:18px;padding:16px 20px;cursor:pointer;
  text-align:center;transition:.22s ease;position:relative
}
.tenure-card:hover{transform:translateY(-2px);border-color:var(--secondary)}
.tenure-card.active{
  border-color:var(--secondary);background:linear-gradient(180deg,#fff7ed 0%,#fff 100%);
  box-shadow:0 10px 24px rgba(242,106,18,.12)
}
.tenure-label{font-size:.92rem;font-weight:700;color:var(--dark)}
.tenure-price{font-size:25px;font-weight:900;color:var(--secondary);line-height:1.1;margin:8px 5px 5px; display: inline-block;}
.tenure-month{font-size:.92rem;color:var(--muted)}
.selected-pill{
  display:inline-block;margin-top:10px;background:var(--secondary);color:#fff;padding:8px 12px;border-radius:999px;
  font-size:.85rem;font-weight:700
}
.cost-breakdown{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;border:1px solid var(--border);
  border-radius:20px;padding:18px;background:#f8fafc;margin:20px 0
}
.cost-box h4{font-size:1rem;margin-bottom:10px}
.cost-row{display:flex;justify-content:space-between;gap:10px;padding:8px 0;border-bottom:1px dashed #dbe4f0}
.cost-row:last-child{border-bottom:none}
.cost-row strong{color:var(--dark)}
.icon-feature-row{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px;margin:18px 0 24px}
.icon-feature {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 10px;
  text-align: center;
  background: #fff;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ICON (no hover change here) */
.icon-feature .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid rgba(242,106,18,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgb(0, 0, 0);
  background: #fff7ed;
  transition: none; /* ❌ remove icon hover */
}

/* TEXT */
.icon-feature span {
  display: block;
  font-size: .92rem;
  color: var(--dark);
  font-weight: 700;
  transition: 0.3s;
}

/* 🔥 CARD HOVER EFFECT */
.icon-feature:hover {
  transform: translateY(-6px);

  background: linear-gradient(
    135deg,
    rgba(15, 61, 140, 0.06),
    rgba(242, 106, 18, 0.12)
  );

  border-color: rgba(242,106,18,0.4);
  box-shadow: 0 18px 40px rgba(197, 87, 14, 0.12);
}

/* Optional: text color change */
.icon-feature:hover span {
  color: var(--primary);
}
.icon-feature span{display:block;font-size:.92rem;color:var(--dark);font-weight:700}
.buy-actions{display:flex;gap:14px;flex-wrap:wrap}
.buy-actions .btn{flex:1;min-width:180px}
.product-content-card{padding:28px;margin-top:26px}
.spec-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.spec-list li{border-bottom:1px dashed var(--border)}
.inline-breadcrumb{font-size:.95rem;color:var(--muted);margin-bottom:14px}
.product-tag-row{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 8px}
.product-tag{
  font-size:.85rem;font-weight:700;padding:8px 12px;border-radius:999px;background:#eff6ff;color:var(--primary)
}
.recommended-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.recommended-grid .card h3{font-size:1.1rem}
.product-cta-bar{
  position:sticky;bottom:10px;z-index:40;display:none;background:#fff;border:1px solid var(--border);
  box-shadow:var(--shadow);border-radius:18px;padding:12px;gap:10px;margin-top:16px
}
.product-cta-bar .btn{flex:1}
@media (max-width: 991px){
  .product-layout{grid-template-columns:1fr}
  .product-gallery{position:static}
  .tenure-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .icon-feature-row{grid-template-columns:repeat(3,minmax(0,1fr))}
  .recommended-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 640px){
  .product-shell{padding:34px 0}
  .product-panel,.product-gallery,.product-content-card{padding:18px}
  .cost-breakdown,.spec-grid{grid-template-columns:1fr}
  .icon-feature-row{grid-template-columns:repeat(2,minmax(0,1fr))}
  .recommended-grid{grid-template-columns:1fr}
  .product-cta-bar{display:flex}
}
@media (max-width: 991px){

  nav.primary-nav{
    position: absolute;

    /* ?? KEY FIX */
    left: 0;
    width: 100vw; /* full screen width */

    transform: translateX(calc(-50vw + 50%)); /* align with screen */

    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);

    display: none;
    z-index: 9999;
  }

  nav.primary-nav.open{
    display: block;
  }

  nav.primary-nav ul{
    padding: 16px;
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }
  /* ========================= */
/* HERO MOBILE FIX */
/* ========================= */

@media (max-width: 768px){

  /* 1. STACK HERO PROPERLY */
  .hero-grid{
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* 2. FIX RIGHT CARD */
  .hero-card{
    margin-top: 10px;
    padding: 20px; /* reduced from 28 */
    border-radius: 20px;
  }

  /* 3. TEXT READABILITY */
  .hero p{
    font-size: 15px;
    line-height: 1.7;
  }

  /* 4. FIX BUTTON GROUP */
  .hero div[style*="display:flex"]{
    flex-direction: column !important;
    gap: 12px;
    margin-top: 16px;
  }

  .hero .btn{
    width: 100%;
    text-align: center;
  }

  /* 5. CATEGORY BUTTONS (AC / Fridge etc) */
  .hero-list{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-list div{
    padding: 12px;
    font-size: 14px;
  }

  /* 6. FIX BACKGROUND SHAPE */
  .hero::before{
    right: -150px;
    top: -120px;
    width: 280px;
    height: 280px;
    opacity: 0.5;
  }

}

}
/* ========================= */
/* PRICING MOBILE VIEW */
/* ========================= */

.pricing-cards{
  display: none;
}

.pricing-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  margin-bottom:16px;
  box-shadow:var(--shadow);
}

.pricing-card h3{
  margin-bottom:10px;
  color:var(--primary);
}

.pricing-card p{
  margin:6px 0;
  font-size:14px;
}

/* MOBILE SWITCH */
@media (max-width:768px){

  .pricing-table{
    display:none; /* hide table */
  }

  .pricing-cards{
    display:block; /* show cards */
  }

}

/* ========================= */
/* TOPBAR MOBILE IMPROVEMENT */
/* ========================= */

@media (max-width: 640px){

  .topbar{
    font-size: 13px;
  }

  .topbar .container{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 8px 10px;
  }

  .topbar .container div:first-child{
    font-weight: 500;
    line-height: 1.4;
  }

  .topbar .container div:last-child{
    font-size: 12.5px;
    opacity: 0.9;
  }

  .topbar a{
    display: inline-block;
    margin: 2px 4px;
  }

  /* ========================= */
  /* SERVICE SECTION PREMIUM */
  /* ========================= */

  .service-header {
    max-width: 820px;
    margin: 0 auto 40px;
  }

  /* SERVICE CARD CENTER FIX */
  .service-card{
    text-align: center;
  }

  .service-card .icon-box{
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #fff);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 auto 16px;
  }

  .service-card h3,
  .service-card p{
    text-align: center;
  }

  /* subtle gradient hover */
  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,61,140,0.03), rgba(242,106,18,0.05));
    opacity: 0;
    transition: 0.3s;
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15,61,140,.12);
  }

  .service-card:hover .icon-box {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.05);
  }

  /* TITLE */
  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  /* TEXT */
  .service-card p {
    font-size: 0.95rem;
    color: var(--muted);
  }

/* ========================= */
/* CTA SECTION FIX */
/* ========================= */
/* ========================= */
/* PREMIUM CTA SECTION */
/* ========================= */

.cta-box{
  background: linear-gradient(135deg, #0f3d8c, #1d4ed8);
  color: #fff;
  border-radius: 26px;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(15,61,140,0.2);
}

/* LEFT SIDE */
.cta-content h2{
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.cta-content p{
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}

/* RIGHT SIDE BUTTONS */
.cta-actions{
  display: flex;
  gap: 16px;
}

/* BUTTON STYLE */
.cta-actions .btn{
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
}

/* PRIMARY BUTTON */
.cta-actions .btn-primary{
  background: #f26a12;
  color: #fff;
}

/* OUTLINE BUTTON */
.cta-actions .btn-outline{
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}

/* HOVER EFFECT */
.cta-actions .btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-actions .btn:nth-child(1) {
  animation-delay: 0.2s;
}

.cta-actions .btn:nth-child(2) {
  animation-delay: 0.4s;
}

/* ANIMATION KEYFRAME */
@keyframes fadeBtn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-content {
    max-width: 100%;
  }
}

/* ========================= */
/* TYPOGRAPHY FIX */
/* ========================= */

body {
  font-size: 16px; /* base */
  margin-top: 80px;
}

h1 {
  font-size: 42px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* MOBILE FONT FIX */
@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  p { font-size: 14px; }
}

/* ========================= */
/* ABOUT CARDS */
/* ========================= */

.about-card {
  text-align: center;
  padding: 28px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ICON BOX */
.about-card .icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG ICON */
.about-card .icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

/* HOVER EFFECT */
.about-card:hover .icon-box {
  background: var(--primary);
}

.about-card:hover svg {
  color: #fff;
}


}
/* NAV LINKS BASE */
.primary-nav ul {
  display: flex;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.primary-nav a:hover {
  color: #ff6600;
}

/* ACTIVE LINK (CURRENT PAGE) */
.primary-nav a.active {
  color: var(--secondary); /* ? orange */
}

@media (max-width: 768px){
  .topbar{
    display: none;
  }
}
@media (max-width: 768px){

  .nav-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-toggle{
    display: flex;
    margin-left: auto; /* ?? pushes to right */
  }

    @media (max-width: 768px){

    /* BUTTON GROUP (MAIN FIX) */
    .btn-group,
    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 14px; /* ?? increase gap */
      margin-top: 15px;
    }

    /* INDIVIDUAL BUTTON */
    .btn-group .btn,
    .cta-actions .btn {
      width: 100%;
      padding: 14px;
    }

  }

}

.sub-category-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:15px 0;
}

.sub-category-item{
  padding:6px 14px;
  border:1px solid #ddd;
  border-radius:20px;
  cursor:pointer;
  font-size:14px;
  background:#f8f8f8;
  transition:0.3s;
}

.sub-category-item:hover{
  background:#1e3a8a;
  color:#fff;
}
.rental-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.rental-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f5f9;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  border: 1px solid #e0e4ec;
  transition: all 0.3s ease;
}

.rental-card span {
  font-size: 20px;
}

.rental-card strong {
  color: #ff4e40;
  font-weight: 700;
}

.rental-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
  .rental-highlights {
    grid-template-columns: 1fr;
  }
}

html {
  overflow-y: scroll;
}

.about-highlight-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  height: fit-content;
}

.about-highlight-card h3{
  margin-bottom: 16px;
  color: black;
}

.about-point{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: var(--text);
}

.about-point i{
  color: var(--secondary);
  font-size: 16px;
  margin-top: 2px;
}

/* ========================= */
/* PREMIUM FOOTER UPGRADE */
/* ========================= */

.site-footer{
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1;
  padding: 60px 0 25px;
  position: relative;
}

/* subtle glow effect */
.site-footer::before{
  content:"";
  position:absolute;
  top:-80px;
  left:-80px;
  width:300px;
  height:300px;
  background: radial-gradient(circle, rgba(242,106,18,0.15), transparent);
  border-radius:50%;
}

/* headings */
.site-footer h3,
.site-footer h4{
  color:#fff;
  margin-bottom:14px;
}

/* links */
.site-footer a{
  color:#cbd5e1;
  transition:0.3s ease;
}

.site-footer a:hover{
  color:#f26a12;
  transform: translateX(4px);
}

/* spacing fix */
.footer-grid{
  margin-bottom: 30px;
}

/* paragraphs */
.site-footer p{
  font-size:14px;
  line-height:1.7;
}

/* icons */
.site-footer i{
  color:#f26a12;
  margin-right:6px;
}

/* button styling */
.site-footer .btn-primary{
  background:#f26a12;
  border:none;
}

.site-footer .btn-primary:hover{
  background:#ff7a1a;
}

/* bottom section */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:15px;
  color:#94a3b8;
}

/* mobile fix */
@media (max-width:768px){
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}
/* ========================= */
/* FOOTER CENTER FIX */
/* ========================= */

.footer-center{
  justify-content: center !important;
  text-align: center;
}

.footer-center p{
  margin: 0;
  font-size: 14px; /* increased from default */
}

/* ========================= */
/* PROFESSIONAL FOOTER EXTRA */
/* ========================= */

.footer-highlights{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:16px; /* 🔥 slightly bigger (was 15px) */
  color:#94a3b8;
}

.footer-highlights span{
  background:rgba(255,255,255,0.05);
  padding:7px 12px; /* slightly bigger padding */
  border-radius:999px;
}

/* SOCIAL */
.footer-social{
  margin:14px 0;
}

.footer-social a{
  margin-right:12px;
  font-size:20px; /* 🔥 bigger icons */
  color:#cbd5e1;
  transition:0.3s;
}

/* DIVIDER */
.footer-divider{
  height:1px;
  background:rgba(255,255,255,0.08);
  margin:30px 0 18px;
}

/* LINKS */
.footer-links{
  font-size:14px; /* 🔥 increased from 13px */
  color:#94a3b8;
}

.footer-links a{
  color:#94a3b8;
  margin:0 8px;
}

.footer-links a:hover{
  color:#f26a12;
}

/* ========================= */
/* FOOTER FONT IMPROVEMENT */
/* ========================= */

/* BRAND TITLE */
.site-footer h3{
  font-size: 24px; /* was ~20 */
  font-weight: 700;
}

/* SECTION HEADINGS */
.site-footer h4{
  font-size: 18px; /* was ~16 */
  font-weight: 600;
}

/* MAIN PARAGRAPH */
.site-footer p{
  font-size: 16px; /* was ~14 */
  line-height: 1.8;
}

/* SMALL TEXT (Fast delivery line) */
.site-footer .small{
  font-size: 14.5px;
}

/* LINKS */
.site-footer a{
  font-size: 15px;
}

/* CONTACT ICON TEXT ALIGN */
.site-footer i{
  font-size: 18px;
}

/* BUTTON TEXT */
.site-footer .btn{
  font-size: 15px;
}

/* BOTTOM COPYRIGHT */
.footer-bottom p{
  font-size: 16px;
  letter-spacing: 0.3px;
}

/* IMAGE CONTAINER */
.about-image{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 10px;
}
.product-img{
  width: 250px;
  height: 250px;
  object-fit: contain; /* 🔥 IMPORTANT */
  display: block;
  margin: 0 auto 12px; /* center image */
}
