/* ================================================
   LOGSTICK — Complete Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Caladea:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ---- Variables & Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #b12b24;
  --red-dark: #881e18;
  --dark:     #1a1a1a;
  --gray:     #666;
  --light:    #f9f9f9;
  --border:   #e0e0e0;
  --white:    #ffffff;
  --font-h:   'Caladea', Georgia, serif;
  --font-b:   'Lato', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; }
a { text-decoration: none; }

/* ================================================
   DESKTOP NAVBAR
   ================================================ */
#desktopNav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffd230;
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  color: #333;
  font-family: var(--font-h);
    font-size: 01.09rem;
      font-weight: 700;
      padding: 1px 18px;
      line-height: 68px;
  display: block;
  letter-spacing: 0.07em;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.nav-links li a:hover {
  text-decoration: underline;
  text-decoration-color: var(--red-dark);
  text-decoration-thickness: 1px;
  /* underline thick */
  text-underline-offset: 8px;
  /* word aur line ke bich gap */
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-right a { display:flex; align-items:center; color:#555; transition:color .2s; }
.nav-right a:hover { color: var(--red); }
.nav-right img { height: 22px; width: auto; }

/* ================================================
   MOBILE TOPBAR
   ================================================ */
#mobileNav {
  display: none;
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  height: 62px;
  align-items: center;
  padding: 0 14px;
  justify-content: space-between;
  position: relative;
}

/* hamburger LEFT */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 10;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* logo CENTER (absolute) */
.mob-logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mob-logo-center img { height: 38px; width: auto; }

/* right icons */
.mob-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.mob-right a { color:#555; display:flex; align-items:center; font-size:.9rem; }
.mob-right img { height: 20px; }

/* ================================================
   MOBILE MENU — FULL SCREEN BLACK, SLIDES TOP→BOTTOM
   ================================================ */
#mobileMenu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #111111;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* hidden above viewport */
  transform: translateY(-100%);
  transition: transform .48s cubic-bezier(0.77,0,0.175,1);
  visibility: hidden;
}
#mobileMenu.open {
  transform: translateY(0);
  visibility: visible;
}

/* × CLOSE — top left */
.mob-close {
  position: absolute;
  top: 18px;
  left: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color .2s;
}
.mob-close:hover { color: var(--red); }

/* menu links — centered */
#mobileMenu a {
  display: block;
  color: #ffffff;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  padding: 13px 40px;
  width: 100%;
  transition: color .2s;
}
#mobileMenu a:hover { color: var(--red); }

/* ================================================
   SECTION UTILITY
   ================================================ */
.section-pad  { padding: 72px 40px; }
.section-light { background: var(--light); }
.inner { max-width: 1100px; margin: 0 auto; }

.sec-title {
  text-align: center;
  font-family: var(--font-h);
  font-size: 1.25rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 46px;
}
.sec-divider .dot  { width:7px; height:7px; border-radius:50%; background:var(--border); display:inline-block; }
.sec-divider .line { width:46px; height:3px; background:var(--red); border-radius:2px; display:inline-block; }

.btn-red {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--red);
  padding: 9px 22px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--red);
  transition: all .2s;
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,.97);
  padding: 48px 56px;
  text-align: center;
  min-width: 360px;
  max-width: 500px;
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
}
.hero-card h1 {
  font-family: var(--font-h);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.hero-card p { font-size: .92rem; color: var(--gray); margin-bottom: 28px; }

/* ================================================
   ABOUT
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-family: var(--font-h); font-size: 2rem; font-weight:700; margin-bottom:14px; }
.about-bar { width:50px; height:3px; background:var(--red); margin-bottom:22px; }
.about-text p  { font-size:.93rem; color:var(--gray); line-height:1.9; margin-bottom:28px; }
.about-img { width:100%; height:360px; object-fit:cover; }

/* ================================================
   SERVICES
   ================================================ */
.services-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
}
.svc-card { text-align:center; width:190px; }
.svc-card img { width:90px; height:90px; object-fit:contain; margin:0 auto 14px; }
.svc-card h3 { font-size:.78rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:14px; }
.svc-card p  { font-size:.82rem; color:var(--gray); line-height:1.7; }

/* ================================================
   PDI BANNER
   ================================================ */
.pdi-banner {
  padding: 120px 40px;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.pdi-banner h2 {
  font-family: var(--font-h);
  font-size: 1.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pdi-line {
  width: 58px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 18px;
}

.pdi-banner p {
  font-size: .93rem;
  max-width: 520px;
  margin: 0 auto 28px;
  opacity: .9;
  font-weight: 600;
}
/* ================================================
   SOLUTIONS GRID
   ================================================ */
.sol-top { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; }
.sol-bot { display:grid; grid-template-columns:repeat(2,1fr); gap:4px; margin-top:4px; }
.sol-card { position:relative; overflow:hidden; height:230px; cursor:pointer; }
.sol-card img { width:100%; height:100%; object-fit:cover; transition:transform .45s; }
.sol-card:hover img { transform:scale(1.08); }
.sol-mask {
  position:absolute; inset:0;
  background:rgba(0,0,0,.38);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:10px;
  transition:background .3s;
}
.sol-card:hover .sol-mask { background:rgba(0,0,0,.58); }
.sol-mask h3 { color:#fff; font-family:var(--font-h); font-size:.82rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; text-align:center; padding:0 8px; }
.sol-btn { background:rgba(255,255,255,.15); color:#fff; border:1.5px solid #fff; padding:6px 18px; font-size:.7rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; transition:background .2s; }
.sol-btn:hover { background:rgba(255,255,255,.35); }

/* ================================================
   READY MADE FURNITURE
   ================================================ */
.rm-top { display:grid; grid-template-columns:repeat(4,1fr); gap:4px; }
.rm-bot { display:grid; grid-template-columns:1fr 3fr; gap:4px; margin-top:4px; }
.rm-card { position:relative; overflow:hidden; height:200px; }
.rm-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.rm-card:hover img { transform:scale(1.07); }
.rm-label { position:absolute; bottom:0; left:0; right:0; background:rgba(0,0,0,.45); padding:12px; text-align:center; }
.rm-label h3 { color:#fff; font-family:var(--font-h); font-size:.82rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; }
.rm-label p  { color:rgba(255,255,255,.7); font-size:.7rem; margin-top:2px; }

/* ================================================
   NEW ARRIVALS
   ================================================ */
.arrivals-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.arrival-card {
  background:var(--white);
  overflow:hidden;
  box-shadow:0 1px 8px rgba(0,0,0,.07);
  transition:box-shadow .25s, transform .25s;
}
.arrival-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.13); transform:translateY(-2px); }
.arr-img { position:relative; height:220px; overflow:hidden; }
.arr-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.arrival-card:hover .arr-img img { transform:scale(1.06); }
.badge     { position:absolute; top:10px; left:10px; background:var(--red); color:#fff; font-size:.65rem; font-weight:700; padding:3px 8px; border-radius:2px; }
.badge-new { background:#333; }
.arr-info  { padding:14px 16px; }
.arr-info h4 { font-size:.9rem; font-weight:600; margin-bottom:8px; }
.price-row { display:flex; gap:8px; align-items:center; }
.price-old { text-decoration:line-through; color:#bbb; font-size:.8rem; }
.price-new { color:var(--red); font-weight:700; font-size:.95rem; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testi-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.testi-card { background:var(--light); padding:28px 30px; }
.stars { color:#f5a623; font-size:1.05rem; margin-bottom:10px; }
.testi-author { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.testi-avatar { width:42px; height:42px; border-radius:50%; object-fit:cover; }
.testi-name { font-weight:700; font-size:.88rem; }
.testi-role { font-size:.75rem; color:var(--gray); }
.testi-text { font-size:.88rem; color:var(--gray); line-height:1.8; }

/* ================================================
   CONTACT
   ================================================ */
.contact-row3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; margin-bottom:16px; }
.form-input, .form-textarea {
  width:100%; padding:13px 16px;
  border:1px solid var(--border);
  font-family:var(--font-b); font-size:.88rem;
  outline:none; background:var(--white); color:var(--dark);
  transition:border-color .2s;
}
.form-input:focus, .form-textarea:focus { border-color:var(--red); }
.form-textarea { height:110px; resize:vertical; display:block; margin-bottom:20px; }
.contact-submit { text-align:center; margin-bottom:50px; }
.contact-details { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.contact-info p { font-size:.88rem; color:var(--gray); line-height:2.2; }
.contact-info a { color:var(--red); }
.social-icons { display:flex; gap:12px; margin-top:16px; }
.social-icons a {
  width:38px; height:38px; border-radius:50%;
  background:var(--dark); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; transition:background .2s;
}
.social-icons a:hover { background:var(--red); }
.map-box { height:230px; overflow:hidden; }
.map-box iframe { width:100%; height:100%; border:none; }

/* ================================================
   FOOTER
   ================================================ */
footer { background:var(--white); padding:26px 40px; border-top:1px solid var(--border); }
.footer-inner {
  max-width:1100px; margin:0 auto;
  display:flex; align-items:flex-start;
  justify-content:space-between; flex-wrap:wrap; gap:20px;
}
.footer-brand { font-family:var(--font-h); font-weight:700; font-size:1rem; letter-spacing:2px; }
.footer-copy  { font-size:.76rem; color:var(--gray); margin-top:4px; }
.footer-nav { display:flex; flex-wrap:wrap; gap:10px 18px; list-style:none; }
.footer-nav a { font-size:.75rem; color:var(--gray); text-transform:uppercase; letter-spacing:.5px; transition:color .2s; }
.footer-nav a:hover { color:var(--red); }
.footer-social { display:flex; gap:10px; }
.footer-social a { color:var(--gray); font-size:1rem; transition:color .2s; }
.footer-social a:hover { color:var(--red); }

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.wa-float {
  position:fixed; bottom:24px; right:24px; z-index:998;
  width:54px; height:54px; border-radius:50%;
  background:#25d366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 18px rgba(0,0,0,.22);
  transition:transform .2s, box-shadow .2s;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 26px rgba(0,0,0,.28); }
.wa-float img { height:28px; width:auto; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
  #desktopNav { display:none !important; }
  #mobileNav  { display:flex !important; }

  .hero { grid-template-columns:1fr; }
  .hero-img:first-child { display:none; }
  .hero-img  { height:300px; }
  .hero-card { min-width:82%; max-width:90%; padding:28px 22px; }
  .hero-card h1 { font-size:1.35rem; }

  .about-grid { grid-template-columns:1fr; gap:28px; }
  .section-pad { padding:52px 20px; }

  .sol-top { grid-template-columns:1fr 1fr; }
  .sol-bot { grid-template-columns:1fr; }
  .rm-top  { grid-template-columns:1fr 1fr; }
  .rm-bot  { grid-template-columns:1fr; }

  .arrivals-grid { grid-template-columns:1fr 1fr; }
  .testi-grid    { grid-template-columns:1fr; }
  .contact-row3  { grid-template-columns:1fr; }
  .contact-details { grid-template-columns:1fr; }
  .footer-inner  { flex-direction:column; gap:16px; }
  footer { padding:24px 20px; }
}

@media (max-width: 560px) {
  .sol-top { grid-template-columns:1fr; }
  .arrivals-grid { grid-template-columns:1fr 1fr; }
  .section-pad { padding:44px 14px; }
  .svc-card { width:150px; }
  .hero-card { min-width:92%; }
}
