:root {
  --gold: #f1ab21;
  --gold-dark: #d99512;
  --green: #0c342f;
  --green-deep: #0e3026;
  --teal: #0a7158;
  --teal-soft: #0d8064;
  --cream: #f7f4f1;
  --gray: #595752;
  --border: #ded8cf;
  --white: #ffffff;
  --black: #111111;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(12, 52, 47, 0.08);
  --font: "Poppins", sans-serif;
  --font-head: "Rubik", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: 0.35s; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--green);
  margin: 0 0 12px;
  line-height: 1.25;
  font-weight: 700;
}
p { margin: 0 0 14px; }
button, input, select, textarea { font-family: inherit; }

.container {
  width: min(1320px, calc(100% - 30px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green);
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
}
.btn:hover { background: var(--gold-dark); color: var(--white); }
.btn-dark { background: var(--green); color: var(--white); }
.btn-dark:hover { background: var(--gold); color: var(--green); }

.section { padding: 90px 0; }
.section-cream { background: var(--cream); }
.sec-tag {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}
.sec-title { font-size: 42px; max-width: 640px; }
.sec-head { margin-bottom: 50px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-title { margin-inline: auto; }

/* Topbar */
.topbar {
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar a, .topbar span { color: var(--white); }
.topbar i { margin-right: 8px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  font-size: 12px;
}
.topbar-social a:hover { background: var(--green); border-color: var(--green); }

/* Header */
.header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 18px;
}
.header .logo img {
  height: 82px;
  width: auto;
  object-fit: contain;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  color: var(--white);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 15px;
}
.nav > li > a:hover,
.nav > li.active > a,
.nav > li:hover > a { color: var(--gold); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  padding: 12px 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
  z-index: 20;
}
.nav > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.dropdown a {
  display: block;
  padding: 9px 20px;
  color: var(--green);
  font-size: 14px;
}
.dropdown a:hover { color: var(--gold); background: var(--cream); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  color: var(--white);
  font-size: 18px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--gold);
  color: var(--green);
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Page hero */
.page-hero {
  min-height: 280px;
  background: linear-gradient(rgba(12,52,47,.72), rgba(12,52,47,.72)), url("../images/gallery/kitchen-hood.jpg") center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  padding: 70px 16px;
}
.page-hero h1 { color: var(--white); font-size: 58px; margin-bottom: 8px; }
.breadcrumb { color: var(--white); font-size: 15px; }
.breadcrumb a { color: var(--white); }
.breadcrumb span { color: var(--gold); }

/* Home slider */
.hero {
  position: relative;
  min-height: 680px;
  background: linear-gradient(90deg, rgba(12,52,47,.82) 0%, rgba(12,52,47,.35) 70%), url("../images/hero-kitchen.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero h1 { color: var(--white); font-size: 62px; max-width: 680px; }
.hero p { max-width: 560px; color: rgba(255,255,255,.88); font-size: 18px; }
.hero-tag { color: var(--gold); font-weight: 700; letter-spacing: .5px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.rating-pill {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  padding: 10px 16px;
  border-radius: 40px;
}
.stars { color: var(--gold); }

/* About preview */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 520px; object-fit: cover; }
.exp-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--gold);
  color: var(--green);
  padding: 18px 22px;
  border-radius: 10px;
  font-weight: 800;
}
.exp-badge strong { display: block; font-size: 32px; line-height: 1; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* Service cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-card .body { padding: 22px; }
.service-card h3 { font-size: 22px; }
.service-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.service-foot a { color: var(--gold); font-weight: 700; }
.service-foot i { color: var(--teal); font-size: 22px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-item {
  background: var(--cream);
  padding: 30px 22px;
  border-radius: 12px;
  text-align: center;
}
.process-num {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  background: var(--green);
  color: var(--gold);
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.why-box {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.why-box .ico {
  width: 54px; height: 54px;
  background: var(--gold);
  color: var(--green);
  display: grid; place-items: center;
  border-radius: 10px;
  font-size: 20px;
}

/* Stats */
.stats {
  background: var(--green);
  color: var(--white);
  padding: 70px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats h3 { color: var(--gold); font-size: 42px; }
.stats p { color: rgba(255,255,255,.8); margin: 0; }

/* Team */
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-photo { position: relative; }
.team-photo img { width: 100%; height: 280px; object-fit: cover; }
.years {
  position: absolute;
  left: 14px; bottom: 14px;
  background: var(--white);
  color: var(--green);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
}
.team-info {
  padding: 18px 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-info h3 { margin: 0; font-size: 20px; }
.team-info span { color: var(--gray); font-size: 14px; }
.share-btn {
  width: 40px; height: 40px;
  background: var(--green);
  color: var(--white);
  display: grid; place-items: center;
  border-radius: 6px;
}

/* Projects */
.project-card { position: relative; overflow: hidden; border-radius: 12px; }
.project-card img { width: 100%; height: 320px; object-fit: cover; }
.project-cap {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 22px 18px 16px;
  border-radius: 14px 14px 10px 10px;
  text-align: center;
}
.project-cap h3 { color: var(--white); margin-bottom: 4px; }
.project-cap p { margin: 0; color: rgba(255,255,255,.85); }
.plus {
  position: absolute;
  left: 50%; top: -18px;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
}

/* Testimonials */
.testi-card {
  background: var(--green);
  color: var(--white);
  border-radius: 14px;
  padding: 70px 26px 28px;
  position: relative;
  text-align: center;
  background-image: linear-gradient(180deg, var(--green) 70%, #c98914 140%);
}
.testi-card img {
  width: 86px; height: 86px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  left: 50%; top: -43px;
  transform: translateX(-50%);
  border: 4px solid var(--white);
}
.testi-card h3 { color: var(--white); margin-bottom: 2px; }
.testi-card .loc { color: var(--gold); font-size: 13px; margin-bottom: 12px; display: block; }
.testi-card p { color: rgba(255,255,255,.88); }

/* Pricing */
.price-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.switch {
  width: 58px; height: 30px;
  background: var(--green);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
.switch i {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  transition: .25s;
}
.switch.yearly i { left: 31px; }
.save-tag {
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
}
.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.price-card .price { font-size: 36px; color: var(--green); }
.price-card .price span { font-size: 15px; color: var(--gray); font-weight: 500; }
.rec {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin: 8px 0 16px;
}
.price-card ul { margin: 16px 0 24px; }
.price-card li { padding-left: 26px; position: relative; margin-bottom: 10px; }
.price-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  position: absolute; left: 0;
}

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q i {
  width: 34px; height: 34px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.faq-item.open .faq-q i { background: var(--gold); color: var(--green); }
.faq-a { display: none; padding: 0 20px 18px; color: var(--gray); }
.faq-item.open .faq-a { display: block; }

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: .3s;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-card img { width: 100%; height: 220px; object-fit: cover; }
.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
}
.badge.off { background: #e25b2a; color: var(--white); }
.product-card .body { padding: 16px; }
.product-card h3 { font-size: 18px; margin-bottom: 6px; }
.product-card .price { color: var(--gold); font-weight: 800; }
.sidebar-box {
  background: var(--cream);
  padding: 22px;
  border-radius: 12px;
  margin-bottom: 22px;
}
.sidebar-box h4 { margin-bottom: 14px; }
.sidebar-box input[type="search"],
.sidebar-box input[type="text"] {
  width: 100%;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 6px;
}
.cat-list a, .tag-list a {
  display: flex;
  justify-content: space-between;
  color: var(--green);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a {
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
}
.recent-item { display: grid; grid-template-columns: 70px 1fr; gap: 10px; margin-bottom: 12px; }
.recent-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--green);
  font-weight: 700;
}
.pagination .active { background: var(--gold); }

/* Product details */
.pd-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-thumbs img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.pd-thumbs img.active { border-color: var(--gold); }
.qty {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.qty button { width: 36px; border: none; background: var(--cream); cursor: pointer; }
.qty input { width: 48px; border: none; text-align: center; }
.size-box { display: flex; gap: 8px; margin: 14px 0; }
.size-box button {
  min-width: 44px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  border-radius: 6px;
}
.size-box button.active { background: var(--gold); border-color: var(--gold); color: var(--green); font-weight: 700; }
.tabs { display: flex; gap: 8px; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
.tabs button {
  background: none; border: none; padding: 12px 18px; cursor: pointer; font-weight: 700; color: var(--gray);
}
.tabs button.active { color: var(--green); border-bottom: 3px solid var(--gold); margin-bottom: -2px; }

/* Service details */
.sd-layout { display: grid; grid-template-columns: 320px 1fr; gap: 36px; }
.svc-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 600;
}
.svc-nav a.active { background: var(--gold); color: var(--green); border-color: var(--gold); }
.help-card {
  background: var(--green);
  color: var(--white);
  padding: 28px 22px;
  border-radius: 12px;
  text-align: center;
  margin: 22px 0;
}
.help-card h3, .help-card p { color: var(--white); }
.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: var(--green);
}
.feature-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
.feature-two article {
  background: var(--cream);
  padding: 22px;
  border-radius: 10px;
}

/* Blog */
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.blog-card .thumb { position: relative; }
.blog-card img { width: 100%; height: 230px; object-fit: cover; }
.cat-pill {
  position: absolute;
  left: 16px; bottom: 16px;
  background: #e7f3ee;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.blog-card .body { padding: 20px; }
.meta { color: var(--gold); font-size: 13px; margin-bottom: 8px; }
.blog-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.author { display: flex; align-items: center; gap: 10px; }
.author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.arrow-btn {
  width: 38px; height: 38px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
}

/* Contact */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: -50px; position: relative; z-index: 2; }
.info-card {
  background: var(--cream);
  padding: 30px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.info-card .ico {
  width: 64px; height: 64px;
  margin: 0 auto 12px;
  background: var(--green);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
}
.quote-wrap {
  background: var(--green);
  border-radius: 16px;
  padding: 50px;
  margin-top: 70px;
  color: var(--white);
}
.quote-wrap h2, .quote-wrap p, .quote-wrap label { color: var(--white); }
.quote-wrap .error { color: #ffd9a0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea, .form-grid select,
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 8px;
}
.field { margin-bottom: 16px; }
.field label, .form-grid label { display: block; margin-bottom: 6px; font-weight: 600; color: inherit; }
.light-form { color: var(--gray); }
.light-form h2, .light-form h3, .light-form label { color: var(--green); }
.light-form input, .light-form textarea, .light-form select {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green);
}
.light-form input[type="checkbox"],
.field input[type="checkbox"] {
  width: auto;
  display: inline-block;
  margin-right: 8px;
}
.error { color: #e25b2a; font-size: 13px; margin-top: 4px; display: none; }
.field.error-on .error, .form-group.error-on .error { display: block; }
.field.error-on input, .field.error-on textarea, .field.error-on select,
.form-group.error-on input, .form-group.error-on textarea { border-color: #e25b2a !important; }
.success-msg {
  display: none;
  background: #e8f6ef;
  color: var(--teal);
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; background: var(--green); color: var(--white); padding: 12px; }
.cart-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.cart-summary {
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
}
.empty-cart { text-align: center; padding: 40px 0; }

/* Legal */
.legal { max-width: 920px; }
.legal h2 { margin-top: 28px; font-size: 24px; }
.legal h3 { margin-top: 18px; font-size: 18px; }
.legal ul { margin: 0 0 16px 18px; list-style: disc; }
.legal li { margin-bottom: 8px; }

/* Newsletter */
.newsletter {
  background: var(--cream);
  padding: 50px 0;
  position: relative;
}
.news-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.news-inner h2 { font-size: 30px; max-width: 420px; margin: 0; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-start; }
.news-form .field { margin: 0; }
.news-form .field .error { color: #e25b2a; }
.news-form input {
  min-width: 280px;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 16px 18px;
  border-radius: 8px;
}
.news-form input::placeholder { color: rgba(255,255,255,.7); }

/* Footer */
.footer { background: var(--green-deep); color: rgba(255,255,255,.82); padding: 70px 0 0; }
.footer h4 { color: var(--white); margin-bottom: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.1fr; gap: 30px; }
.hours-box {
  background: var(--teal);
  padding: 22px;
  border-radius: 10px;
  border: 1px solid var(--gold);
}
.hours-box p { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
}
.footer-social a:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
.pill-links a {
  display: block;
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
  background: rgba(10,113,88,.35);
}
.pill-links a:hover { background: var(--gold); color: var(--green); }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.insta-grid img { width: 100%; height: 78px; object-fit: cover; border-radius: 6px; }
.footer-bottom {
  margin-top: 40px;
  border-top: 1px dotted var(--gold);
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }
.footer-bottom .logo img { height: 48px; }
.legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.legal-links a { color: var(--white); font-size: 14px; }
.legal-links a:hover { color: var(--gold); }
.about-company p { margin-bottom: 12px; }

.back-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--green);
  display: grid; place-items: center;
  border-radius: 8px;
  z-index: 50;
  font-weight: 800;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,52,47,.92);
  display: none;
  place-items: center;
  z-index: 2000;
}
.search-overlay.open { display: grid; }
.search-overlay form { width: min(640px, 90%); position: relative; }
.search-overlay input {
  width: 100%;
  padding: 18px 50px 18px 18px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
}
.search-overlay .close-search {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer;
}

/* Quote modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(12,52,47,.75);
  display: none;
  place-items: center;
  z-index: 2100;
  padding: 20px;
}
.modal.open { display: grid; }
.modal-card {
  background: var(--white);
  width: min(560px, 100%);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}
.modal-card h3 { margin-bottom: 16px; }
.close-modal {
  position: absolute; right: 14px; top: 10px;
  background: none; border: none; font-size: 24px; cursor: pointer; color: var(--green);
}

/* Home extra */
.home-services-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-svc {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.home-svc .ico {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--green);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 14px;
}

@media (max-width: 1199px) {
  .grid-4, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 46px; }
  .page-hero h1 { font-size: 44px; }
  .shop-layout, .sd-layout { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--green-deep);
    flex-direction: column;
    padding: 12px 0 20px;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
    box-shadow: none;
    padding-left: 12px;
  }
  .nav > li.open .dropdown { display: block; }
  .dropdown a { color: var(--white); }
  .header { position: relative; }
  .header-inner { flex-wrap: wrap; }
  .about-grid, .why-grid, .pd-grid, .grid-3, .faq-grid, .home-services-row, .info-cards, .footer-grid, .feature-two {
    grid-template-columns: 1fr;
  }
  .sec-title { font-size: 32px; }
}

@media (max-width: 640px) {
  .grid-4, .process-grid, .stats-grid, .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 34px; }
  .header .btn { display: none; }
  .news-form input { min-width: 100%; }
}
