* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 32px;
  font-weight: 700;
}

.logo span {
  color: #29b6f6;
}

.nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.window-types-banner {
  position: relative;
  height: 260px;
  background: url("../img/windowbanner.jpeg")
    center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.window-types-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.window-types-content {
  position: relative;
  width: 100%;
  text-align: center;
}

.window-types-content h2 {
  margin: 0;
}

.window-types-content h2 span {
  display: inline-block;
  background: #1f57d6;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .window-types-banner {
    height: 200px;
  }

  .window-types-content h2 span {
    font-size: 22px;
    padding: 10px 20px;
  }
}
.window-types-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

.window-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.window-card {
  text-decoration: none;
  color: #000;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.window-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.window-card span {
  display: block;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.window-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .window-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .window-types-grid {
    grid-template-columns: 1fr;
  }
}
.energy-efficiency-section {
  padding: 90px 0;
  background: #ffffff;
}

.energy-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.energy-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.energy-text h3 {
  font-size: 20px;
  margin: 25px 0 12px;
  font-weight: 700;
}

.energy-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.energy-text ul {
  margin-left: 18px;
  margin-bottom: 20px;
}

.energy-text ul li {
  font-size: 15px;
  margin-bottom: 6px;
}

.energy-text .note {
  font-weight: 600;
}

.energy-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .energy-grid {
    grid-template-columns: 1fr;
  }
}
.simple-faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.simple-faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.simple-faq-list {
  max-width: 900px;
  margin: auto;
  border: 1px solid #ddd;
}

.simple-faq-item {
  border-bottom: 1px solid #ddd;
}

.simple-faq-item:last-child {
  border-bottom: none;
}

.simple-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
}

.simple-faq-question span:first-child {
  font-size: 15px;
}

.simple-faq-question .toggle {
  font-size: 22px;
  font-weight: 700;
}

.simple-faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.simple-faq-item.active .simple-faq-answer {
  display: block;
}
.simple-faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.simple-faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.simple-faq-list {
  max-width: 900px;
  margin: auto;
  border: 1px solid #ddd;
}

.simple-faq-item {
  border-bottom: 1px solid #ddd;
}

.simple-faq-item:last-child {
  border-bottom: none;
}

.simple-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
}

.simple-faq-question span:first-child {
  font-size: 15px;
}

.simple-faq-question .toggle {
  font-size: 22px;
  font-weight: 700;
}

.simple-faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.simple-faq-item.active .simple-faq-answer {
  display: block;
}
.simple-faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.simple-faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.simple-faq-list {
  max-width: 900px;
  margin: auto;
  border: 1px solid #ddd;
}

.simple-faq-item {
  border-bottom: 1px solid #ddd;
}

.simple-faq-item:last-child {
  border-bottom: none;
}

.simple-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
}

.simple-faq-question span:first-child {
  font-size: 15px;
}

.simple-faq-question .toggle {
  font-size: 22px;
  font-weight: 700;
}

.simple-faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.simple-faq-item.active .simple-faq-answer {
  display: block;
}
.quote-section {
  padding: 90px 0;
  background: #f7f7f7;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  background: #ffffff;
  padding: 50px;
  border-radius: 6px;
}

/* LEFT INFO */
.quote-info .info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.quote-info .icon {
  font-size: 26px;
}

.quote-info h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.quote-info p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.highlight {
  color: #6bbcff;
  font-weight: 600;
}

/* FORM */
.quote-form h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group span {
  color: red;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
}

.radio-group {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.submit-btn {
  background: #007bff;
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}
.footer {
  background: #efefef;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #000;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.mt-20 {
  margin-top: 20px;
}

.service-area {
  color: red;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social span {
  font-size: 14px;
  cursor: pointer;
}

/* COPYRIGHT */
.footer-bottom {
  background: red;
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  font-size: 14px;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
