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

:root {
  --green:  #4a7c2f;
  --yellow: #f5c400;
  --dark:   #000;
  --mid:    #444;
  --light:  #f4f4f4;
  --white:  #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--yellow); }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  background: var(--dark);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
nav img.logo { height: 48px; width: auto; }

nav ul { list-style: none; display: flex; gap: 28px; }
nav ul a {
  color: var(--white);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
nav ul a:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

.nav-cta {
  background: var(--yellow);
  color: var(--dark) !important;
  padding: 8px 16px !important;
  border-bottom: none !important;
  font-weight: bold !important;
}
.nav-cta:hover { background: #e6b800; color: var(--dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

#mob-menu { display: none; background: var(--dark); padding: 16px 24px; }
#mob-menu.open { display: block; }
#mob-menu ul { list-style: none; }
#mob-menu ul li { border-bottom: 1px solid #333; padding: 12px 0; }
#mob-menu ul a {
  color: var(--white);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: url('images/bg1.jpg') center center / cover no-repeat;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.hero-inner p { margin: 0 auto 32px; }
.hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-inner h1 span { color: var(--yellow); }
.hero-inner p {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-phone {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 22px;
  font-weight: 900;
  padding: 14px 32px;
  letter-spacing: 1px;
  margin-right: 12px;
  margin-bottom: 12px;
}
.hero-phone:hover { background: #e6b800; color: var(--dark); }

.hero-btn {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  transition: all .2s;
}
.hero-btn:hover { background: var(--white); color: var(--dark); }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--green);
  padding: 28px 24px;
  text-align: center;
}
.intro-strip p {
  color: var(--white);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.intro-strip strong { color: var(--yellow); }

/* ── SECTIONS ── */
section { padding: 72px 24px; width: 100%; }
.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-align: center;
}
.section-sub {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
.accent-bar {
  width: 50px;
  height: 5px;
  background: var(--yellow);
  margin: 12px auto 32px;
}

/* ── ABOUT / PDR ── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-grid img { width: 100%; height: 340px; object-fit: cover; }
.about-text h2 {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.about-text p { font-size: 15px; line-height: 1.8; color: var(--mid); margin-bottom: 16px; }
.about-text ul { list-style: none; margin-bottom: 20px; }
.about-text ul li {
  font-size: 15px;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
.about-text ul li::before { content: "✔"; color: var(--green); margin-right: 10px; font-weight: bold; }

/* ── SERVICES ── */
#services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card { background: var(--white); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-body { padding: 20px; }
.service-body h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-body p { font-size: 14px; line-height: 1.7; color: var(--mid); }

/* ── BEFORE & AFTER SLIDER ── */
#gallery { background: var(--dark); padding-bottom: 56px; }
#gallery .section-title { color: var(--white); }
#gallery .section-sub { color: rgba(255,255,255,.5); }
#gallery .accent-bar { background: var(--yellow); }

.slider-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}
.slide {
  min-width: 100%;
  width: 100%;
  flex: 0 0 100%;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #000;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  width: 48px;
  height: 48px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: rgba(0,0,0,.85); }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background .2s;
  padding: 0;
}
.dot.active { background: var(--yellow); }

/* ── WHY US ── */
#why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.why-card { text-align: center; padding: 32px 20px; border: 1px solid #e8e8e8; }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-size: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.why-card p { font-size: 14px; line-height: 1.7; color: var(--mid); }

/* ── SHOP BAND ── */
#shopband {
  background: url('images/bg2.jpg') center center / cover no-repeat;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
}
#shopband::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.shopband-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}
.shopband-inner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.shopband-inner p { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }

/* ── CONTACT ── */
#contact { background: var(--light); }

.contact-map {
  margin-top: 24px;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  overflow: hidden;
}
.contact-map iframe { display: block; width: 100%; border: 0; }

.contact-info {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-right: 3px solid #e0e0e0;
  border-bottom: 3px solid #e0e0e0;
  padding: 36px 40px;
}
.contact-info h3 { font-size: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: var(--dark); }
.contact-info .detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.contact-info .detail:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.detail-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.detail-text p { font-size: 15px; color: var(--mid); line-height: 1.6; }
.detail-text strong { display: block; color: var(--dark); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 32px 24px; text-align: center; }
footer img.foot-logo { height: 60px; margin: 0 auto 16px; }
footer p { color: rgba(255,255,255,.4); font-size: 13px; }
footer strong { color: var(--yellow); }

.foot-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; }
.foot-socials a { color: rgba(255,255,255,.5); transition: color .2s; }
.foot-socials a:hover { color: var(--yellow); }

.nav-social { color: rgba(255,255,255,.6) !important; display: flex; align-items: center; padding: 0 !important; border-bottom: none !important; transition: color .2s; }
.nav-social:hover { color: var(--yellow) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text { text-align: center; }
  .about-text ul li { text-align: left; }
  .ba-grid { grid-template-columns: 1fr; }
  .hero-inner { text-align: center; }
  .hero-inner p { margin: 0 auto 32px; }
}
@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
