/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* ===== NAV ===== */
.nav {
    background: #000;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav__container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav__logo {
    font-weight: bold;
}

.nav__menu {
    display: flex;
    gap: 20px;
}

.nav__menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav__products {
    background: #4CAF50;
    padding: 8px 14px;
    border-radius: 5px;
}

.nav__products:hover {
    background: #3e9443;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: url('images/headerbg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero__content {
    position: relative;
    z-index: 2;
}

.site-logo {
    width: 140px;
    margin-bottom: 15px;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}

.btn:hover {
    background: #3e9443;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 20px; }

/* ===== ABOUT ===== */
.about__container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.about__text p { margin-bottom: 15px; }

.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__feature {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

/* ===== PROJECTS ===== */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project {
    flex: 1 1 300px;
    cursor: pointer;
    transition: 0.3s;
}

.project:hover {
    transform: translateY(-5px);
}

.project img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.project a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ===== SERVICES ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-card:hover {
    transform: translateY(-5px);
}

/* ===== PRODUCTS ===== */
.products-preview {
    text-align: center;
    background: #f5f5f5;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.price {
    font-weight: bold;
    margin: 10px 0;
}

/* ===== CONTACT ===== */
.contact-form {
    max-width: 500px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    background: #f5f5f5;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #4CAF50;
    border: none;
    color: white;
    font-weight: bold;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #111;
    color: #ccc;
    padding-top: 40px;
}

.footer__container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #222;
    margin-top: 30px;
    font-size: 13px;
}

/* ===== PERFECT MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;

  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  height: auto;

  border-radius: 12px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
}

/* IMAGE */
#modal-image {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 8px;
}

/* TITLE */
#modal-title {
  margin-bottom: 10px;
}

/* BUTTONS */
.modal-controls {
  margin-top: 10px;
}

.modal-controls button {
  padding: 10px 16px;
  margin: 0 5px;
  border: none;
  background: #4CAF50;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .nav__toggle { display: flex; }

    .nav__menu {
        position: absolute;
        top: 70px;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav__menu.active {
        display: flex;
    }

    .hero { padding: 80px 20px; }

    h1 { font-size: 2rem; }

    .project img { height: 180px; }

    .about__container {
        grid-template-columns: 1fr;
    }
}
/* ===== MODERN QUOTE / CART ===== */

.quote-box {
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  margin-top:40px;
}

.quote-header {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 40px;
  font-weight:bold;
  color:#777;
  border-bottom:1px solid #eee;
  padding-bottom:10px;
}

.cart-row {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 40px;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid #f1f1f1;
}

.cart-row input {
  width:60px;
  padding:6px;
}

.cart-row button {
  background:#eee;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.cart-row button:hover {
  background:#ddd;
}

.quote-summary {
  margin-top:20px;
}

.quote-summary .line {
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  color:#555;
}

.quote-summary .total {
  font-size:20px;
  font-weight:bold;
  border-top:1px solid #eee;
  margin-top:10px;
  padding-top:10px;
}

#deliveryZone {
  width:100%;
  margin-top:10px;
  padding:10px;
}
/* ===== CUSTOMER FORM ===== */

.customer-form {
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid #eee;
}

.customer-form h3 {
  margin-bottom:10px;
}

.customer-form input,
.customer-form textarea {
  width:100%;
  padding:12px;
  margin-top:10px;
  border:1px solid #ddd;
  border-radius:8px;
}

.customer-form textarea {
  min-height:100px;
  resize:vertical;
}

.quote-btn {
  margin-top:15px;
  background:#4CAF50;
  color:white;
  border:none;
  padding:14px;
  font-weight:bold;
  border-radius:8px;
  cursor:pointer;
}

.quote-btn:hover {
  background:#3e9443;
}

.sponsorships {
  padding: 60px 20px;
  text-align: center;
  background: #f8f8f8;
}

/* SPONSORSHIPS */
.sponsorships {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.sponsorships__container {
  max-width: 1000px;
  margin: auto;
}

.sponsorships__intro {
  margin-top: 10px;
  color: #666;
}

/* LOGO STRIP */
.sponsorships__logos {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* LOGO STYLE */
.sponsor-logo img {
  max-height: 80px;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.sponsor-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* REVIEWS */
.reviews {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}

.reviews__container {
  max-width: 1000px;
  margin: auto;
}

.reviews__intro {
  margin-top: 10px;
  color: #666;
}

/* GRID */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* CARD */
.review-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: left;
}

.review-card h4 {
  margin-top: 15px;
}

/* BUTTON */
.google-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 25px;
  background: #3e9443;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.google-btn:hover {
  background: #333;
}
.google-rating {
  margin-top: 10px;
  font-weight: bold;
}