* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background: #f7f9fc;
  color: #1f2937;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
}

.logo span {
  color: #2563eb;
}

.main-nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.btn-dark {
  background: #111827;
  color: #fff;
}

/* HERO */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.badge {
  display: inline-block;
  background: #f59e0b;
  color: #111827;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
}

.hero h1 span {
  color: #60a5fa;
}

.hero p {
  margin: 20px 0 30px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* FORM */
.hero-form {
  background: #fff;
  color: #111827;
  padding: 30px;
  border-radius: 12px;
}

.hero-form h3 {
  margin-bottom: 20px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}

/* SERVICES */
.services {
  padding: 90px 0;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
}

.section-intro {
  text-align: center;
  color: #6b7280;
  margin: 15px 0 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-card i {
  font-size: 2.4rem;
  color: #263b74;
  margin-bottom: 15px;
}

/* CTA */
.cta {
  background: #2563eb;
  color: #fff;
  padding: 60px 0;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* ===============================
   FOOTER (FIXED & BALANCED)
================================ */

.site-footer {
  background: #0b0b0b;
  color: #bdbdbd;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 60px 20px;
  align-items: start;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  width: 36px;
  height: 2px;
  background: #1e88e5; /* brand blue */
  display: block;
  margin-top: 6px;
}

/* BRAND */
.footer-brand img {
  max-width: 140px;   /* ↓ reduced */
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #9e9e9e;
}

/* LINKS */
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #1e88e5;
}

/* CONTACT */
.footer-contact i {
  color: #1e88e5;
  margin-right: 8px;
}

/* MAP */
.footer-map iframe {
  width: 100%;
  height: 180px;
  border-radius: 6px;
  border: none;
  filter: grayscale(90%) brightness(0.9);
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #1c1c1c;
  text-align: center;
  padding: 18px;
  font-size: 13px;
  color: #7a7a7a;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-map iframe {
    height: 220px;
  }
}


/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* LOGO */
.logo {
  font-size: 1.6rem;
  font-weight: 800;
}

.logo span {
  color: #2563eb;
}

/* NAV */
.main-nav {
  display: flex;              /* 🔴 THIS WAS MISSING */
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
  display: inline-flex;       /* 🔴 IMPORTANT */
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 160%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #1f2937;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* SHOW */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover i {
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}
/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;      /* adjust if needed */
  width: auto;
  display: block;
}
/* =====================
   HERO / BANNER WITH BG IMAGE
===================== 

.hero {
  position: relative;
  background: url("../images/main-img1.jpg") center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}*/


.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* =====================
   SERVICES OVERVIEW
===================== */

.section {
  padding: 30px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6b7280;
  max-width: auto!important;
  margin: 10 auto;
  font-size: 1.05rem;
}

.services {
  background: #f7f9fc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 2.6rem;
  color: #263b74;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* =====================
   WHY CHOOSE US
===================== */

.why-choose {
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-card {
  background: #f9fafb;
  padding: 45px 30px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.why-card i {
  font-size: 2.4rem;
  color: #263b74;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
/* =====================
   DETAILED SERVICES (IMAGE GRID)
===================== */

.detailed-services {
  background: #eef3f8;
}

.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

.service-box {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

.service-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.service-box h3 {
  font-size: 1.2rem;
  padding: 18px;
  color: #111827;
  background: #ffffff;
}
.review-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.review-link:hover {
  text-decoration: underline;
}
/* =====================
   TESTIMONIALS (FIXED)
===================== */

.testimonials {
  background: #f8fafc;
}

.testimonials .section-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: stretch;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* STARS */
.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

/* TEXT */
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 24px;
}

/* AUTHOR */
.testimonial-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: #111827;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #6b7280;
}

/* GOOGLE LINK */
.review-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.review-link:hover {
  text-decoration: underline;
}
/* =====================
   AREAS COVERED
===================== */

.areas-covered {
  background: #f7f9fc;
}

.areas-covered .section-header {
  max-width: 850px;
  margin: 0 auto 60px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.area-item {
  background: #ffffff;
  padding: 16px 18px;
  text-align: center;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #111827;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.area-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}
/* =====================
   AREAS COVERED
===================== */

.areas-covered {
  background: #f7f9fc;
}

.areas-covered .section-header {
  max-width: 850px;
  margin: 0 auto 60px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

/* AREA ITEM AS LINK */
.area-item {
  background: #ffffff;
  padding: 16px 18px;
  text-align: center;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #111827;
  text-decoration: none;              /* 🔴 important */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  display: inline-block;
}

/* HOVER */
.area-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  color: #2563eb;
}

/* EXTERNAL LINK INDICATOR */
.area-item::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* SUBTEXT */
.map-hint {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: #6b7280;
}
/* =====================
   FAQ
===================== */

.faq {
  background: #ffffff;
}

.faq .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.faq-item summary {
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS is the key */
  object-position: center;
  z-index: 0;
}



.hero-grid {
  position: relative;
  z-index: 2;
}
/* =====================
   SERVICE PAGE – TWO COLUMN LAYOUT
===================== */

.service-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.service-image img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-image img {
    max-height: 420px;
  }
}
.service-image {
    height: -webkit-fill-available;
}
/* =========================
   FLAT ROOF – DETAIL SECTIONS
========================= */

.flat-roof-details {
  background: #f7f9fc;
}

.roof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.roof-row.reverse {
  direction: rtl;
}

.roof-row.reverse > * {
  direction: ltr;
}

/* Text */
.roof-text h3 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  color: #111827;
}

.roof-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 15px;
}

/* Image */
.roof-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .roof-row,
  .roof-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .roof-image img {
    height: 260px;
  }
}
/* =========================
   RECENT WORK COLLAGE
========================= */

.recent-work {
  background: #ffffff;
}

.work-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-item:hover img {
  transform: scale(1.08);
}

/* Variations */
.work-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-item.wide {
  grid-column: span 2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .work-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .work-item.large,
  .work-item.wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .work-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .work-item.large,
  .work-item.wide {
    grid-column: span 1;
  }
}
/* =====================
   MOBILE HEADER
===================== */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #111;
  border-radius: 2px;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
  }

  .main-nav a,
  .nav-dropdown {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
  }

  .main-nav.active {
    display: flex;
  }

  /* Hide desktop CTA button */
  .header-flex > .btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(
        rgba(15, 23, 42, 0.6),
        rgba(15, 23, 42, 0.6)
      ),
      url("../images/main-img1-mobile.jpg") center/cover no-repeat;
  }
}
/* =====================
   HERO MOBILE FIX (FORM OVERFLOW)
===================== */

@media (max-width: 768px) {

  .hero {
    height: auto !important;
    min-height: unset !important;
    padding-bottom: 40px;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column;
  }

  .hero-form {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 24px 0 0;
  }

  .hero-form form {
    width: 100%;
  }
}
html, body {
  overflow-x: hidden;
}
/* =====================
   MOBILE NAV DROPDOWN FIX
===================== */

@media (max-width: 768px) {

  .nav-dropdown {
    position: static;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f9fafb;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 30px;
    font-size: 0.95rem;
  }
}
/* =====================
   FIX MOBILE NAV OVERLAP
===================== */

.site-header {
  position: relative;
  z-index: 1000;
}

@media (max-width: 768px) {

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 999;
  }

  /* Push hero down when menu is open */
  .main-nav.active {
    display: flex;
  }
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}




/* ===== SERVICE OVERVIEW ===== */
.service-overview {
  text-align: center;
  background: #f7f9fc;
}

.service-highlights {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-weight: 600;
  color: #1a73e8;
}

/* ===== TYPES SECTIONS ===== */
.service-types {
  background: #fff;
}

.service-types.light-bg {
  background: #f7f9fc;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 50px;
}

/* ===== GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
}

.service-grid.reverse {
  direction: rtl;
}

.service-grid.reverse .service-text {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
}

/* ===== WHY IMPORTANT ===== */
.why-important {
  background: #111;
  color: #fff;
  text-align: center;
}

.why-important p {
  color: #ccc;
  max-width: 900px;
  margin: auto;
}

/* ===== RECENT WORK ===== */
.recent-work {
  background: #fff;
  text-align: center;
}

.work-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.work-grid img {
  width: 100%;
  border-radius: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid.reverse {
    direction: ltr;
  }
}


/* ===============================
   SECTION BASE
================================ */
.section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   SECTION HEADER
================================ */
.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ===============================
   ROOF / SERVICE DETAILS LAYOUT
   (used by flat roof, guttering, fascia)
================================ */
.flat-roof-details {
  background: #fff;
}

.roof-row {
  
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}



.roof-text {
  flex: 1;
}

.roof-text h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.roof-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.roof-image {
  flex: 1;
}

.roof-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* ===============================
   TYPES INTRO SECTION
================================ */
.flat-roof-types {
  background: #f7f9fc;
}

/* ===============================
   RECENT WORK
================================ */
.recent-work {
  background: #f7f9fc;
}

.work-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 15px;
}

.work-item {
  overflow: hidden;
  border-radius: 6px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-item.wide {
  grid-column: span 2;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .roof-row {
    flex-direction: column;
  }

  .roof-row.reverse {
    flex-direction: column;
  }

  .work-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .work-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .work-item.large,
  .work-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}


/* CONTACT FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.btn-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary:hover {
  background: #333;
}

.map-wrapper iframe {
  border-radius: 6px;
}

.form-success {
  background: #e6f9ee;
  color: #0f5132;
  padding: 12px;
  margin-bottom: 15px;
  border-left: 4px solid #0f5132;
}

.form-error {
  background: #fdecea;
  color: #842029;
  padding: 12px;
  margin-bottom: 15px;
  border-left: 4px solid #842029;
}

