* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ===== Legal Strip ===== */
.legal-strip {
  background: #f4f4f4;
  text-align: center;
  font-size: 13px;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

/* ===== Header ===== */
.header {
  text-align: center;
  padding: 20px 15px;
  background: #0b2c55;
  color: #fff;
}

.header h1 {
  margin: 0;
  font-size: 24px;
}

.header p {
  font-size: 14px;
  margin-top: 5px;
}

/* ===== Hero ===== */
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Lead Form Section Upgrade ===== */

.lead-form {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.lead-form h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Card Style Form */
.main-form {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Input Fields */
.main-form input[type="text"],
.main-form input[type="tel"],
.main-form input[type="email"] {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
  background: #fafafa;
}

.main-form input:focus {
  border-color: #15345b;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(21,52,91,0.1);
}

/* Consent */
.form-consent {
  margin: 18px 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

.consent-label input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: #15345b;
  flex-shrink: 0;
}

/* Submit Button Premium */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #15345b, #1e4a82);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21,52,91,0.3);
}

/* ===== Responsive Fine Tune ===== */

@media (max-width: 600px) {

  .lead-form {
    padding: 40px 15px;
  }

  .main-form {
    padding: 25px;
    border-radius: 10px;
  }

  .lead-form h2 {
    font-size: 20px;
  }

}

/* ===== Sections ===== */
.projects-simple,
.projects-grid,
.projects-detailed {
  padding: 10px 15px;
}

.projects-simple h2,
.projects-grid h2,
.projects-detailed h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 20px;
}

/* ===== Simple Grid ===== */
.simple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.simple-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* ===== Image Grid ===== */
.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.project-card img {
  width: 100%;
  height: auto;
}

.project-card-content {
  padding: 15px;
  text-align: center;
}

/* ===== Why Choose Section ===== */
.detailed-card {
  margin: 15px 0;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
  text-align: center;
}

/* ===== Enquiry Button ===== */
.enquiry-btn {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #0b2c55;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.enquiry-btn:hover {
  opacity: 0.9;
}

/* ===== Popup ===== */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.popup-content input {
  width: 100%;
  margin: 10px 0;
  padding: 8px;
  border: 1px solid #ccc;
}

.popup-content button {
  width: 100%;
  padding: 10px;
  background: #0b2c55;
  color: #fff;
  border: none;
}

.close-btn {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 20px;
  cursor: pointer;
}

/* ===== Footer ===== */
.footer {
  background: #111;
  color: #ccc;
  padding: 30px 15px;
  text-align: center;
  font-size: 13px;
}

.footer a {
  color: #f4c430;
  text-decoration: none;
}

.footer-disclaimer {
  font-size: 12px;
  margin-top: 10px;
}

.disclaimer-mini {
  font-size: 11px;
  color: #777;
  margin-top: 10px;
}

/* ===== Desktop Upgrade ===== */
@media (min-width: 768px) {

  .header h1 {
    font-size: 28px;
  }

  .simple-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .enquiry-btn {
    width: auto;
    padding: 8px 18px;
  }

}
.lead-form {
  padding: 10px 15px;
  background: #f7f7f7;
}

.main-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 15px;
}

.main-form input[type="text"],
.main-form input[type="tel"],
.main-form input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* ===== Consent ===== */
.form-consent {
  margin: 15px 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.consent-label input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.consent-label span {
  flex: 1;
}

/* ===== Submit Button ===== */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #15345b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #0f2742;
}
