/* ========================================
   AGRAWAL PLASTIC CENTER — style.css
   Dark Grey / Black / Gold Theme
   ======================================== */

/* ---- Google Fonts & Tabler Icons are loaded via <link> in index.html ---- */

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

:root {
  --bg:          #0E0E0E;
  --bg2:         #161616;
  --bg3:         #1E1E1E;
  --bg4:         #252525;
  --gold:        #D4A017;
  --gold-light:  #F0C040;
  --gold-dim:    rgba(212, 160, 23, 0.12);
  --gold-border: rgba(212, 160, 23, 0.28);
  --white:       #FFFFFF;
  --text:        #E8E8E8;
  --text-muted:  #9A9A9A;
  --text-dim:    #555555;
  --border:      rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 160, 23, 0.22);
  --green-wa:    #25D366;
  --radius:      12px;
  --font-h:      'Raleway', sans-serif;
  --font-b:      'Nunito', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  color: #0E0E0E;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.logo-text {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 1.2;
}

.logo-text span {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: var(--bg3);
}

.nav-cta {
  background: var(--gold) !important;
  color: #0E0E0E !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: #0E0E0E !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 5% 20px;
  z-index: 99;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-h);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-gold {
  background: var(--gold);
  color: #0E0E0E;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0E0E0E;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
}

/* ========================================
   SECTION COMMONS
   ======================================== */
section {
  padding: 72px 5%;
}

.section-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* ========================================
   HERO
   ======================================== */
#hero {
  background: var(--bg);
  padding: 64px 5% 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.search-container {
  max-width: 680px;
  margin: 0 auto 48px;
}

.search-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.search-bar {
  display: flex;
  background: var(--bg3);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  overflow: hidden;
  height: 60px;
  transition: border-color 0.2s;
}

.search-bar:focus-within {
  border-color: var(--gold);
}

.search-icon {
  display: flex;
  align-items: center;
  padding: 0 14px 0 22px;
  color: var(--text-muted);
  font-size: 18px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 12px;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text);
  background: transparent;
}

.search-bar input::placeholder {
  color: var(--text-dim);
}

.search-btn {
  background: var(--gold);
  border: none;
  color: #0E0E0E;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  padding: 0 28px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-btn:hover {
  background: var(--gold-light);
}

.search-result {
  margin-top: 14px;
  min-height: 26px;
  font-size: 14px;
  font-family: var(--font-b);
  font-weight: 500;
  transition: all 0.3s;
}

.search-hint {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(30px, 5.5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-h);
  font-weight: 500;
}

.trust-item i {
  color: var(--gold);
  font-size: 16px;
}

.trust-sep {
  width: 1px;
  background: var(--border);
  height: 20px;
  align-self: center;
}

/* ========================================
   PRODUCTS
   ======================================== */
#products {
  background: var(--bg2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--bg3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 20px 24px;
  transition: all 0.25s;
  text-align: center;
}

.product-card:hover {
  border-color: var(--gold-border);
  background: var(--bg4);
  transform: translateY(-3px);
}

.product-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.product-icon i {
  color: var(--gold);
  font-size: 26px;
}

.product-card h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.product-more {
  text-align: center;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 14px;
  font-style: italic;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
#why {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.why-card:hover {
  border-color: var(--gold-border);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon i {
  color: var(--gold);
  font-size: 22px;
}

.why-card h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================================
   ABOUT
   ======================================== */
#about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-h);
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: var(--font-h);
  letter-spacing: 0.3px;
}

.since-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold-light);
  font-family: var(--font-h);
  font-weight: 600;
  margin-bottom: 20px;
}

.since-badge i {
  font-size: 14px;
  color: var(--gold);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
#testimonials {
  background: var(--bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color 0.2s;
}

.testi-card:hover {
  border-color: var(--gold-border);
}

.stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
}

.testi-loc {
  font-size: 12px;
  color: var(--text-dim);
}

/* ========================================
   WHATSAPP BANNER
   ======================================== */
.wa-banner {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 5%;
}

.wa-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.wa-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-icon i {
  color: var(--green-wa);
  font-size: 28px;
}

.wa-text {
  flex: 1;
}

.wa-text strong {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.wa-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.wa-btn {
  background: var(--green-wa);
  color: #0E0E0E;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.wa-btn:hover {
  background: #1db954;
}

/* ========================================
   CONTACT / LOCATION
   ======================================== */
#contact {
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--gold);
  font-size: 18px;
}

.info-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
}

.info-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 3px;
}

.map-link {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.map-link:hover {
  color: var(--gold-light);
}

.phone-link {
  color: var(--text);
  transition: color 0.2s;
}

.phone-link:hover {
  color: var(--gold);
}

.wa-link {
  color: var(--green-wa);
  font-weight: 600;
  transition: opacity 0.2s;
}

.wa-link:hover {
  opacity: 0.8;
}

.hours-table {
  width: 100%;
  font-size: 13px;
  margin-top: 4px;
  border-collapse: collapse;
}

.hours-table td {
  padding: 3px 0;
}

.hours-table td:first-child {
  color: var(--text-muted);
  padding-right: 16px;
}

.hours-table td:last-child {
  font-weight: 600;
  color: var(--white);
}

.closed-note {
  color: #F87171 !important;
  font-weight: 400 !important;
  font-size: 12px;
}

.map-box {
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  background: var(--bg3);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.map-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.map-box strong {
  color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand .logo-circle {
  width: 44px;
  height: 44px;
  font-size: 13px;
  margin-bottom: 12px;
}

.footer-brand-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col p i {
  color: var(--gold);
  margin-right: 5px;
  font-size: 14px;
}

.footer-col p a {
  display: inline;
  color: var(--text-muted);
}

.footer-col p a:hover {
  color: var(--gold);
}

.footer-note {
  font-size: 11px;
  color: var(--text-dim);
  display: block;
  margin-top: 2px;
}

.footer-wa {
  color: var(--green-wa) !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}

.footer-wa:hover {
  color: #1db954 !important;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
  font-size: 12px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  border: 2px solid rgba(37, 211, 102, 0.3);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.wa-fab:hover {
  transform: scale(1.1);
}

.wa-fab i {
  color: white;
  font-size: 28px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .hamburger {
    display: flex;
  }

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

  .about-stats {
    margin-top: 32px;
  }

  .trust-strip {
    gap: 10px;
  }

  .trust-item {
    padding: 0 12px;
    font-size: 12px;
  }

  .trust-sep {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

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

  section {
    padding: 52px 5%;
  }

  .wa-inner {
    flex-direction: column;
    text-align: center;
  }

  .wa-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .search-bar {
    height: 52px;
    border-radius: 14px;
  }

  .search-btn {
    border-radius: 0 14px 14px 0;
    font-size: 13px;
    padding: 0 16px;
  }

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 30px;
  }
}
