* {
  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;
  }
}
.glazed-doors-section {
  padding: 90px 0;
  background: #ffffff;
}

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

.glazed-doors-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.glazed-doors-text h3 {
  font-size: 20px;
  margin: 26px 0 12px;
  font-weight: 700;
}

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

.glazed-doors-text ul {
  margin-left: 18px;
  margin-bottom: 18px;
}

.glazed-doors-text ul li {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.6;
}

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

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



.turn-widow-sec {
   position: relative;
  height: 460px;
  background: url("../img/turn-window-banner.jpg")
    center center / cover no-repeat !important;
  display: flex;
  align-items: center;
}
.front-door-sec {
  position: relative;
  height: 460px;
  background: url("../img/front-end-door-banner.jpg")
    center center / cover no-repeat !important;
  display: flex;
  align-items: center;
}




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

.tilt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.reverse {
  grid-template-columns: 1fr 1fr;
}

.tilt-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.tilt-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.tilt-image img {
  width: 100%;
  border-radius: 4px;
}

.tilt-cta {
  background: #c9f1d6;
  text-align: center;
  padding: 50px 20px;
}

.tilt-cta h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tilt-cta p {
  margin-bottom: 20px;
}

.btn-outline {
  padding: 10px 25px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.btn-dark {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .tilt-grid {
    grid-template-columns: 1fr;
  }
}
/* Benefits */
.tt-benefits {
  text-align: center;
  padding: 80px 20px;
  background: #f6f6f6;
}

.tt-benefits h2 {
  font-size: 26px;
  margin-bottom: 50px;
}

.benefit-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.benefit-card img {
  width: 40px;
  margin-bottom: 15px;
}

.benefit-card h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Window Configuration */
.window-config {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.window-config h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.window-config p {
  font-size: 14px;
  margin-bottom: 40px;
  color: #ccc;
}

.config-image img {
  max-width: 1200px;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}
.tt-features {
  padding: 80px 20px;
  background: #f6f6f6;
  text-align: center;
}

.tt-features h2 {
  font-size: 26px;
  margin-bottom: 50px;
}

.feature-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.feature-card img {
  width: 40px;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 70px auto 0;
  text-align: left;
}

.faq h3 {
  text-align: center;
  margin-bottom: 25px;
}

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

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #fafafa;
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.tt-features {
  padding: 80px 20px;
  background: #f6f6f6;
  text-align: center;
}

.tt-features h2 {
  font-size: 26px;
  margin-bottom: 50px;
}

.feature-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.feature-card img {
  width: 40px;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 70px auto 0;
  text-align: left;
}

.faq h3 {
  text-align: center;
  margin-bottom: 25px;
}

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

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #fafafa;
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.fb-doors {
  padding: 80px 20px;
  background: #ffffff;
}

.fb-top {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.fb-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.fb-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

.fb-image img {
  width: 100%;
  border-radius: 6px;
}

.section-title {
  text-align: center;
  margin: 70px 0 40px;
  font-size: 24px;
}

/* Benefits */
.benefits-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
}

.benefit-card img {
  width: 42px;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .fb-top {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.features-section {
  padding: 80px 20px;
  background: #ffffff;
}

.features-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 50px;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  text-align: center;
}

.feature-card img {
  width: 42px;
  margin-bottom: 14px;
}

.feature-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.alfresco-section {
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.alfresco-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.alfresco-content h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.alfresco-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

.alfresco-image img {
  width: 100%;
  border-radius: 6px;
}

.alfresco-intro {
  max-width: 900px;
  margin: 60px auto 40px;
  text-align: center;
}

.alfresco-intro h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.alfresco-intro p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

.benefits-title {
  text-align: center;
  font-size: 24px;
  margin: 50px 0 40px;
}

/* Feature Cards (shared system) */
.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  text-align: center;
}

.feature-card img {
  width: 42px;
  margin-bottom: 14px;
}

.feature-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
  .alfresco-top {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-section {
  padding: 80px 20px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  text-align: center;
}

.feature-card img {
  width: 42px;
  margin-bottom: 14px;
}

.feature-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.option {
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.option.full {
  grid-column: span 2;
}

.option:hover {
  transform: scale(1.01);
}

/* selected state */
.option.active {
  outline: 3px solid #c77b30;
}

/* sample colours (adjust if needed) */
.malt-oak { background:#a8927b; }
.toffee-oak { background:#7b6a61; }
.golden-oak { background:#a5602d; }
.walnut { background:#6b4c3b; }
.mahogany { background:#5b2a38; }

.creme { background:#e9ecef; color:#000; }
.primrose { background:#e3decd; color:#000; }
.silver { background:#b7bcc0; }
.dune { background:#bfb6aa; }
.gold-bronze { background:#5a5246; }
.red { background:#8e141c; }
.monument { background:#3f4a54; }
.timber-green { background:#041c14; }
.timber-blue { background:#041c3a; }
.jet-black { background:#0b1118; }
.white { background:#ffffff; color:#000; border:1px solid #ccc; }


