:root {
      --primary-blue: #2979ff;
      --primary-blue-dark: #1c55b8;
      --accent-blue-soft: #e3f0ff;
      --text-main: #111111;
      --text-muted: #4b5563;
      --bg-light: #f5f7fb;
      --card-bg: #ffffff;
      --border-subtle: #e0e3ea;
      --shadow-soft: 0 14px 45px rgba(0, 0, 0, 0.12);
      --radius-lg: 18px;
      --radius-xl: 26px;
      --max-width: 1180px;
      --transition-fast: 180ms ease-out;
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont,
                   "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

body {
      font-family: var(--font-sans);
      color: var(--text-main);
      background: var(--bg-light);
      line-height: 1.7;
      font-size: 16.5px;
      overflow-x: hidden; /* prevent sideways scroll/bounce */
    }


    p {
      font-size: 1rem;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page-shell {
      min-height: 100vh;
    }
	
/* =========================
   GLOBAL TOP REVIEW BAR
   ========================= */
.top-review-bar {
  width: 100%;
  background: #000000 !important;   /* force black bar */
  border-bottom: 1px solid #222222;
  font-size: 0.8rem;
  line-height: 1.2;
  padding: 0.25rem 0.75rem;
  box-sizing: border-box;
  z-index: 50;

  display: flex;
  justify-content: center;
  align-items: baseline;            /* align tops of stars + text */
  gap: 0.4rem;

  color: #ffffff;                   /* white text by default */
}

.top-review-bar .star-icons {
  font-size: 0.9rem;
  line-height: 1;
  color: #ffc107;                   /* gold stars */
  display: inline-flex;
  position: relative;
  top: -1px;                        /* nudge stars up; use -2px if needed */
}

.top-review-bar .review-text {
  line-height: 1;
  white-space: nowrap;
  color: #ffffff;
}

.top-review-bar .review-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-review-bar .review-link:hover,
.top-review-bar .review-link:focus {
  text-decoration: none;
}

@media (max-width: 480px) {
  .top-review-bar {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    gap: 0.25rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .top-review-bar .review-text {
    white-space: normal;
  }
}



    /* HEADER */

    header.site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: #05070b;
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.6rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .brand-logo {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

.brand-text span:first-child {
      font-family: var(--font-sans);
      letter-spacing: 0.11em;
      text-transform: uppercase;
      font-size: 0.8rem;
      color: #c5d2ff;
}


    .brand-text span:last-child {
      font-weight: 600;
      color: #ffffff;
      font-size: 1.05rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: #e7edff;
      opacity: 0.9;
      padding: 0.4rem 0.6rem;
      border-radius: 999px;
      transition: background var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
    }

    .nav-links a:hover {
      opacity: 1;
      background: rgba(41, 121, 255, 0.12);
      transform: translateY(-1px);
    }

    .nav-call {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #2979ff, #1c55b8);
      color: #ffffff;
      font-weight: 600;
      font-size: 0.86rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      white-space: nowrap;
    }

    main {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1.7rem 1.4rem 3.5rem;
    }
    .nav-toggle {
  display: none;
  width: 34px;
  height: 30px;
  border: none;
  background: transparent;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
}

    /* HERO */

/* Homepage hero – a little shorter, text starts higher */
.hero {
  position: relative;
  /* was: padding: 6rem 1.5rem 5rem; */
  padding: 3.5rem 1.5rem 3rem;
  color: #f9fafb;
  text-align: left;
  background-image:
    linear-gradient(
      to right,
      rgba(15, 23, 42, 0.90),
      rgba(15, 23, 42, 0.70),
      rgba(15, 23, 42, 0.40)
    ),
    url("images/hero-main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(5, 7, 12, 0.9), rgba(5, 7, 12, 0.6));
      z-index: -1;
    }

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: center;
  /* lower min-height so text sits higher */
  min-height: 320px;
}


.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 3vw + 1.2rem, 3.3rem);
  line-height: 1.08;          /* slightly tighter */
  margin-bottom: 0.6rem;      /* was 0.75rem */
  letter-spacing: 0.03em;
  text-transform: uppercase;
}



    .hero h1 span.accent {
      display: block;
      color: #ffffff;
      text-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    }

    .hero h1 span.brush {
      display: inline-block;
      background: linear-gradient(120deg, #72a4ff, #ffffff);
      -webkit-background-clip: text;
      color: transparent;
      font-weight: 700;
      letter-spacing: 0.12em;
      font-size: 0.75em;
    }

.hero p.lead {
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.45;      /* makes lines a bit closer together */
  color: #dde5ff;
  margin-bottom: 1.1rem;  /* was 1.5rem */
}


    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.1rem;
      margin-bottom: 1.75rem;
      font-size: 0.9rem;
      color: #c4d1ff;
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.8rem;
      border-radius: 999px;
      background: rgba(5, 7, 12, 0.72);
      border: 1px solid rgba(198, 210, 255, 0.33);
    }

    .hero-meta span i {
      font-style: normal;
      font-size: 1rem;
      color: #facc15; /* gold star */
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 0.9rem;
    }

    .btn-primary,
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.6rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
      color: #ffffff;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
      background: linear-gradient(135deg, #4c8dff, #1c55b8);
    }

    .btn-outline {
      background: rgba(9, 12, 20, 0.3);
      color: #e2ebff;
      border: 1px solid rgba(167, 188, 255, 0.7);
    }

    .btn-outline:hover {
      background: rgba(16, 22, 40, 0.8);
      transform: translateY(-1px);
    }

    .hero-media {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .hero-video-wrap {
      position: relative;
      width: 100%;
      max-width: 480px;
      aspect-ratio: 16 / 9;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .hero-video-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* GENERAL SECTIONS */

    section {
      margin-bottom: 3.3rem;
    }

    .section-header {
      margin-bottom: 1.6rem;
    }

    .section-kicker {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.82rem;
      color: var(--primary-blue-dark);
      margin-bottom: 0.4rem;
    }

.section-title {
      font-family: var(--font-sans);
      font-size: 1.7rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
}


    .section-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 36rem;
      margin-top: 0.35rem;
    }

    .section.gallery-preview {
  padding: 3rem 1.5rem;
  background: #05070b;
}

.section.gallery-preview .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.gallery-card {
  background: #0b0f18;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gallery-card-image img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.gallery-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.gallery-card-body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.gallery-card-body p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #c7d0df;
}

.gallery-card-meta {
  font-size: 0.8rem;
  color: #7ea1ff;
}

.gallery-preview-footer {
  margin-top: 2rem;
  text-align: center;
}

    /* REVIEWS */

    .reviews {
      background: #ffffff;
      border-radius: 24px;
      box-shadow: var(--shadow-soft);
      padding: 2.1rem 2rem;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .review-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.1rem 1.1rem 1.2rem;
      border-radius: 18px;
      background: var(--bg-light);
      border: 1px solid var(--border-subtle);
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
      cursor: pointer;
      text-decoration: none;
    }

    .review-card:hover {
      transform: translateY(-4px);
      background: #ffffff;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.11);
      border-color: rgba(41, 121, 255, 0.35);
    }

    .review-stars {
      color: #facc15;
      font-size: 0.95rem;
      margin-bottom: 0.3rem;
    }

    .review-text {
      font-size: 0.95rem;
      color: #323842;
      margin-bottom: 0.8rem;
    }

    .review-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.86rem;
      color: #6b7280;
    }

    .review-meta strong {
      color: #111827;
    }

    .review-city {
      font-size: 0.8rem;
      padding: 0.15rem 0.55rem;
      border-radius: 999px;
      background: #e3f0ff;
      color: #193158;
      font-weight: 500;
    }

    .reviews-aggregate {
      margin-top: 1.3rem;
      font-size: 0.88rem;
      color: #4b5563;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      align-items: center;
    }

    .reviews-aggregate strong {
      color: #111827;
    }

    .reviews-aggregate span.badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.22rem 0.65rem;
      border-radius: 999px;
      background: #101827;
      color: #e5e7eb;
      font-size: 0.82rem;
    }

    .reviews-cta {
      margin-top: 1.2rem;
    }

    .reviews-cta .btn-outline {
      background: #ffffff;
      color: #1f2937;
      border-color: #d1d5db;
    }

    .reviews-cta .btn-outline:hover {
      background: #f3f4f6;
    }

    /* SERVICES */

    .services-section {
      margin-top: 2.4rem;
      margin-bottom: 3.5rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .service-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 1.4rem 1.3rem 1.5rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid #dde4f3;
      text-decoration: none;
      color: inherit;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.11);
      border-color: rgba(41, 121, 255, 0.4);
      background: #f9fbff;
    }

.service-title {
      font-family: var(--font-sans);
      font-size: 1.15rem;
      font-weight: 700;
}


    .service-image {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    }
	.service-image img {
  width: 100%;
  height: 230px;       /* adjust up/down if you want taller/shorter cards */
  object-fit: cover;   /* crops nicely instead of squishing */
  display: block;
}


    .service-text {
      font-size: 0.94rem;
      color: var(--text-muted);
      flex: 1;
    }

    .service-cta {
      font-size: 0.86rem;
      font-weight: 600;
      color: var(--primary-blue-dark);
    }

    /* WHY CHOOSE */

    .why-choose {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
      gap: 2.1rem;
      align-items: center;
    }

    .why-choose-text p {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .why-choose-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem 1.4rem;
      font-size: 0.95rem;
      color: #2f3742;
      padding-left: 0;
      margin-left: 0;
    }

    .why-choose-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
    }

    .why-choose-list span.icon {
      margin-top: 0.05rem;
      font-size: 1rem;
      color: #22c55e;
    }

    .why-choose-photo {
      position: relative;
    }

    .why-choose-main {
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .why-choose-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* AREA SECTION */

    .area-section {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
      gap: 1.9rem;
      align-items: stretch;
    }

    .area-copy {
      align-self: center;
    }

    .area-copy p {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .area-list {
      font-size: 0.9rem;
      color: #4b5563;
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .area-list a {
      padding: 0.18rem 0.6rem;
      border-radius: 999px;
      background: #e3f0ff;
      transition: background var(--transition-fast), transform var(--transition-fast);
    }

    .area-list a:hover {
      background: #c7d8ff;
      transform: translateY(-1px);
    }

    .map-wrap {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: #ffffff;
    }

    .map-wrap iframe {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 290px;
      border: 0;
    }

    /* FAQ */

    .faq {
      background: #ffffff;
      border-radius: 26px;
      padding: 2.1rem 2rem;
      box-shadow: var(--shadow-soft);
    }

    .faq-list {
      margin-top: 1.4rem;
      border-radius: 18px;
      border: 1px solid #e0e3ea;
      overflow: hidden;
    }

    .faq-item + .faq-item {
      border-top: 1px solid #e5e7eb;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 0.95rem 1.1rem;
      background: #ffffff;
      border: none;
      font-size: 0.98rem;
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #111827;
    }

    .faq-question span.label {
      flex: 1;
      text-align: left;
    }

    .faq-question span.toggle {
      margin-left: 0.8rem;
      font-size: 1.3rem;
      color: var(--primary-blue-dark);
      transition: transform var(--transition-fast);
    }

    .faq-item.open .faq-question span.toggle {
      transform: rotate(90deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 200ms ease-out;
      background: #f7f8fb;
    }

    .faq-answer-inner {
      padding: 0 1.1rem 0.95rem;
      font-size: 0.96rem;
      color: #4b5563;
    }

    /* COMPANY INFO + FOOTER */

    .company-info {
      margin-top: 2.5rem;
      padding: 2rem;
      border-radius: 26px;
      background: linear-gradient(135deg, #05070c, #0d1117);
      color: #e5e7eb;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }

.company-info h2 {
      font-family: var(--font-sans);
      font-size: 1.5rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
}


    .company-info p {
      font-size: 0.98rem;
      color: #cbd5f5;
      margin-bottom: 1rem;
    }

    .company-grid {
      font-size: 0.94rem;
      display: grid;
      gap: 0.45rem;
    }

    .company-row {
      display: grid;
      grid-template-columns: 90px minmax(0, 1fr);
      column-gap: 0.4rem;
      align-items: flex-start;
    }

    .company-row span.label {
      color: #9ca3af;
    }

    .company-row span:last-child a {
      word-break: break-word;
      overflow-wrap: anywhere; /* prevent bleed off screen */
    }

    .company-actions {
      margin-top: 1.1rem;
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.7rem 1.2rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      background: transparent;
      color: #e5e7eb;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast);
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-1px);
    }

    .company-side {
      text-align: right;
    }

    .company-map {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: #ffffff;
    }

    .company-map iframe {
      width: 100%;
      height: 230px;
      border: 0;
      display: block;
    }

    footer {
      text-align: center;
      font-size: 0.85rem;
      color: #6b7280;
      padding: 1.5rem 1.4rem 2.2rem;
    }

    .footer-main {
      margin-bottom: 0.5rem;
    }

    .footer-credit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.8rem;
      color: #6b7280;
    }

    .footer-credit a {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      color: #4b5563;
    }

    .footer-logo {
      width: 110px;
      height: auto;
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      main {
        padding-inline: 1rem;
      }

  .hero {
    /* shorter hero on mobile so text starts higher */
    padding: 3.2rem 1.25rem 2.4rem;
  }


      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.6rem;
        min-height: 0;
      }

      .hero-media {
        justify-content: center; /* center video on mobile */
      }

      .hero-video-wrap {
        max-width: 100%;
      }

      .nav-toggle {
  display: inline-flex;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 1.4rem;      /* align with left side */
  margin-top: 0.4rem;
  background: #05070b;
  border-radius: 16px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  z-index: 40;
}

.site-header.nav-open .nav-links {
  display: flex;
}


      .company-info,
      .why-choose,
      .area-section {
        grid-template-columns: minmax(0, 1fr);
      }

      .company-info {
        text-align: left;
      }

      .company-side {
        text-align: left;
      }

      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 800px) {
      .reviews-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .why-choose-list {
        grid-template-columns: minmax(0, 1fr);
      }
    }
	/* =========================
   JOB DETAIL / PROJECT PAGES
   ========================= */
.section.job-detail {
  padding: 4rem 0;
}

.section.job-detail .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.job-detail .section-header h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.job-detail .section-header p {
  max-width: 52rem;
}

.job-meta {
  margin-top: 1.5rem;
  font-size: 0.98rem;
  color: #cfd3e6;
}

.job-meta p {
  margin: 0.25rem 0;
}

.job-gallery {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.job-gallery figure {
  background: #111827;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.job-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.job-gallery figcaption {
  padding: 1rem 1.25rem 1.4rem;
  font-size: 0.95rem;
  color: #e5e7f3;
}


/* ============================
   Recent Projects / Gallery (updated)
   ============================ */

.gallery-section {
  padding: 4rem 0;
  background: #050b16;
}

.gallery-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.4rem; /* side spacing like rest of site */
}

.gallery-section .section-kicker {
  color: #8fb4ff;
}

.gallery-section .section-title {
  color: #ffffff;
}

.gallery-section .section-subtitle {
  max-width: 720px;
  color: #c7d4ff;   /* light text on dark bg */
}

/* gallery grid */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  background: #0b1324;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.gallery-card a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gallery-card-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card-body {
  padding: 1.75rem 1.75rem 1.5rem;
}

.gallery-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #ffffff;      /* force white text */
}

.gallery-card-body p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d4ddff;      /* light text */
}

.gallery-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4ea3ff;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.65);
  border-color: rgba(78, 163, 255, 0.8);
}

/* Gallery CTA button */

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #216bff, #1bb3ff);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.btn-gallery:hover {
  transform: translateY(-2px);
}
``` :contentReference[oaicite:0]{index=0}
::contentReference[oaicite:1]{index=1}

/* Fix gallery header/text on dark blue background */
.gallery-section .section-kicker {
  color: #8fb4ff;
}

.gallery-section .section-subtitle {
  color: #d4ddff;
}

.gallery-card-body h3 {
  color: #ffffff;
}

.gallery-card-body p {
  color: #d4ddff;
}
/* Tighten space between hero and services */
.hero {
  margin-bottom: 0;        /* in case hero had a bottom margin */
}

.services-section {
  padding-top: 1.5rem;     /* was probably larger (like 3–4rem) */
  margin-top: 0;
}

/* Let the Services intro text use the full content width */
.services-section .section-header {
  max-width: 100%;
}

.services-section .section-subtitle {
  max-width: 100%;
}
/* White card containers for Why + Areas sections */
.why-choose,
.area-section {
  max-width: 1150px;
  margin: 3rem auto 4rem;
  padding: 3rem 2.5rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

/* Make sure inner layout still works nicely on desktop */
.why-choose,
.area-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

/* Text / content column grows nicely */
.why-choose-text,
.area-copy {
  flex: 1 1 320px;
}

/* Photo / map column */
.why-choose-photo,
.area-map {
  flex: 1 1 320px;
}

/* === WHY CHOOSE US – text + photo columns, equal height === */

.why-choose {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  display: flex;
  gap: 3rem;
  align-items: stretch;         /* make both columns same height */
}

.why-choose-text {
  flex: 1 1 380px;
}

.why-choose-photo {
  flex: 0 0 380px;              /* width of the photo column */
  display: flex;
}

.why-choose-main {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* IMPORTANT: image fills full column height */
.why-choose-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* crop to fill vertical space */
  display: block;
}

/* Mobile: stack text + photo */
@media (max-width: 900px) {
  .why-choose {
    flex-direction: column;
    padding: 3.5rem 1.5rem;
  }

  .why-choose-photo {
    flex: none;
    max-width: 640px;
    margin: 0 auto 2rem;
  }

  .why-choose-main img {
    height: auto;               /* normal image on mobile */
  }
}


/* Stack nicely on mobile */
@media (max-width: 900px) {
  .why-choose {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
  }

  .why-choose-photo {
    order: -1;              /* show photo above text on mobile */
    max-width: 640px;
    margin: 0 auto 2rem;
  }

  .why-choose-main {
    height: auto;           /* let it size itself on small screens */
  }

  .why-choose-main img {
    height: auto;
  }
}
/* ===========================
   CONTACT PAGE (restored)
   =========================== */

/* Page heading block on contact page */
.page-title {
  margin-bottom: 1.5rem;
}

.page-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--primary-blue-dark);
  margin-bottom: 0.4rem;
}

.page-heading {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 38rem;
}

/* Two-column contact layout */
.contact-layout {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Left card (info) */
.contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

.contact-info {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.contact-info strong {
  color: var(--text-main);
}

/* Info list inside the card */
.info-list {
  list-style: none;
  margin-top: 0.7rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.info-list span.label {
  font-weight: 600;
  color: #111827;
}

/* Right card (form) */
.contact-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

.contact-form h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.contact-form p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 1.3rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

/* Labels & inputs scoped to the contact form */
.contact-form label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #111827;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  font-family: inherit;
  font-size: 0.96rem;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(41, 121, 255, 0.2);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Status messages */
.form-status {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #16a34a;
  display: none;
}

.form-status.error {
  color: #dc2626;
}

/* Contact layout on smaller screens */
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ==================================
   SERVICE PAGE HERO – COMPACT
   ================================== */

/* compact height */
.hero.hero-subpage {
  padding: 2.2rem 1.5rem 1.8rem;   /* smaller top/bottom padding */
}

/* let content control height, no big min-height */
.hero.hero-subpage .hero-inner {
  min-height: 0;
}

/* slightly smaller heading + tighter spacing */
.hero.hero-subpage h1 {
  font-size: clamp(1.8rem, 2vw + 0.9rem, 2.3rem);
  margin-bottom: 0.5rem;
}

.hero.hero-subpage p.lead {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.hero.hero-subpage .hero-meta {
  margin-bottom: 0.8rem;
}

/* optional: a bit tighter buttons row */
.hero.hero-subpage .hero-actions {
  margin-bottom: 0.5rem;
}

/* mobile tweak */
@media (max-width: 960px) {
  .hero.hero-subpage {
    padding: 2rem 1.25rem 1.6rem;
  }
}
/* =========================
   SERVICE DETAIL INTRO (Houston Pergolas page)
   ========================= */
.inner-intro {
  padding: 3rem 0 1rem;
}

.inner-intro .section-inner {
  max-width: 1100px;     /* same container width as other white cards */
  margin: 0 auto;
  padding: 0;            /* let <main> handle side padding */
}

.inner-intro-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 2rem 2.4rem;
}

.inner-intro .section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--primary-blue-dark);
  margin-bottom: 0.4rem;
}

.inner-intro .section-title {
  margin-bottom: 0.8rem;
}

.inner-intro .section-subtitle {
  max-width: 40rem;
  margin-bottom: 1.4rem;
}

.inner-intro-body p {
  margin-bottom: 1rem;
}

.inner-intro-body ul {
  margin: 1rem 0 1.4rem 1.2rem;
  padding-left: 0;
}

.inner-intro-body li {
  margin-bottom: 0.45rem;
}

/* Mobile */
@media (max-width: 960px) {
  .inner-intro {
    padding: 2.5rem 0 1rem;
  }

  .inner-intro .section-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;          /* same visual width as FAQ on mobile */
  }

  .inner-intro-card {
    padding: 1.7rem 1.2rem 2rem;
  }
}

.hero-video-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.video-placeholder {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}



