   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold:    #DBA139;
      --amber:   #FAA800;
      --charcoal:#313132;
      --white:   #ffffff;
      --black:   #000000;
    }

    html, body {
      height: 100%;
      width: 100%;
      overflow-x: hidden;
      font-family: 'Work Sans', sans-serif;
    }

    a {
        color: #000;
        text-decoration: none;
    }

    /* ══════════════════════════════
       FULL-BLEED HERO
    ══════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* ── Background photo placeholder ── */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(135deg, #1c1c1d 0%, #2b2b2c 40%, #1a1a1b 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .photo-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      pointer-events: none;
      opacity: 0.15;
    }

    .photo-placeholder svg {
      width: 64px;
      height: 64px;
      color: var(--amber);
    }

    .photo-placeholder p {
      font-family: 'Fjalla One', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
    }

    .photo-placeholder::before {
      content: '';
      position: absolute;
      inset: 24px;
      border: 2px dashed rgba(250,168,0,0.25);
    }

    /* Dark gradient overlay */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(
          105deg,
          rgba(0,0,0,0.90) 0%,
          rgba(0,0,0,0.70) 45%,
          rgba(0,0,0,0.20) 100%
        );
    }

    .hero-glow {
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(250,168,0,0.16) 0%, transparent 70%);
      z-index: 1;
      pointer-events: none;
    }

    /* ══════════════════════════════
       NAV
    ══════════════════════════════ */
    nav {
      position: relative;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      height: 78px;
    }

    nav::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--gold), transparent 80%);
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo-block {
      background: var(--white);
      padding: 8px 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-block img {
      width: 32px;
      height: 32px;
      color: var(--black);
    }

    .logo-wordmark {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-left: none;
      padding: 8px 18px;
      font-family: 'Fjalla One', sans-serif;
      font-size: 1.25rem;
      letter-spacing: 0.08em;
      color: var(--white);
      text-transform: uppercase;
    }

    .logo-wordmark span { 
      color: var(--amber);
     }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { 
      color: var(--amber); 
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-phone {
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.05em;
    }

    .nav-phone span { 
      color: var(--amber); 
      font-weight: 600; 
    }

    .nav-btn {
      font-family: 'Fjalla One', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--amber);
      padding: 11px 28px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .nav-btn:hover { 
      background: var(--gold); 
      transform: translateY(-1px); 
    }

    .mobile-nav {
      display: none;
    }

    .mobile-nav-p1{
      display: none;
  }

    .other-nav {
      background-color: var(--charcoal); /*other nave going forward from projects and beyond */
    }

    /* ===============================
   LARGE SCREENS (default styles)
================================ */

/* your existing CSS remains */


/* ===============================
   1200px - Large laptops
================================ */
@media (max-width: 1200px) {

  nav {
    padding: 0 32px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-phone {
    display: none;
  }

}


/* ===============================
   992px - Tablets landscape
================================ */
@media (max-width: 992px) {
  
  nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .logo-wordmark {
    font-size: 1.1rem;
  }

  .mobile-nav-p1{
    display: flex;
  }

  #mobile_nav {
    display: flex;
    background-color: var(--charcoal);
  }

  

}


/* ===============================
   768px - Tablets portrait
================================ */
@media (max-width: 768px) {

  nav {
    padding: 0 20px;
    height: 70px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  /* hide phone + button */
  .nav-phone,
  .nav-btn {
    display: none;
  }

}


/* ===============================
   576px - Mobile phones
================================ */
@media (max-width: 576px) {

  nav {
    padding: 0 16px;
  }

  .logo-block img {
    width: 26px;
    height: 26px;
  }

  .logo-wordmark {
    font-size: 0.95rem;
    padding: 6px 12px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

}


/* ===============================
   400px - Very small phones
================================ */
@media (max-width: 400px) {

  .logo-wordmark {
    font-size: 0.85rem;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 0.65rem;
  }

}

/* Hide mobile button on desktop */
.mobile-btn {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--amber);
    border-radius: 3px;
    transition: 0.3s ease;
}


/* ===============================
   MOBILE NAVIGATION
================================ */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .menu {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 40px 0;

        background: rgba(51, 51, 51, 0.98);
        backdrop-filter: blur(22px);

        transform: translateY(-120%);
        transition: transform 0.35s ease;

        border-bottom: 1px solid #ffe5f4;
    }

    .menu.is-active {
        display: flex;
        transform: translateY(0);
    }

    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        margin-top: 10px;
    }

    .nav-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    .nav-btn {
      display: none;
    }
}


/* ===============================
   Hamburger Animation
================================ */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}




    /* ══════════════════════════════
       HERO BODY
    ══════════════════════════════ */
    .hero-body {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      align-items: center;
      padding: 60px 56px 160px;
      gap: 60px;
    }

    .hero-text {
      flex: 0 0 auto;
      max-width: 580px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
      animation-delay: 0.1s;
    }

    .tag-dot {
      width: 8px; height: 8px;
      background: var(--amber);
      border-radius: 50%;
    }

    .tag-text {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--amber);
    }

    h1 {
      font-family: 'Fjalla One', sans-serif;
      font-size: clamp(3rem, 5.5vw, 6rem);
      line-height: 1;
      text-transform: uppercase;
      color: var(--white);
      animation: fadeUp 0.6s ease both;
      animation-delay: 0.2s;
    }

    h1 .line-gold {
      color: var(--amber);
      display: block;
    }

    .hero-rule {
      width: 64px; height: 4px;
      background: var(--amber);
      margin: 28px 0;
      animation: fadeUp 0.6s ease both;
      animation-delay: 0.3s;
    }

    .hero-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.6);
      margin-bottom: 44px;
      max-width: 460px;
      animation: fadeUp 0.6s ease both;
      animation-delay: 0.35s;
    }

    .hero-desc strong {
      color: rgba(255,255,255,0.9);
      font-weight: 500;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s ease both;
      animation-delay: 0.45s;
    }

    .btn-main {
      font-family: 'Fjalla One', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      background: var(--amber);
      color: var(--black);
      padding: 16px 38px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: background 0.2s, gap 0.2s, transform 0.15s;
    }

    .btn-main:hover { background: var(--gold); gap: 18px; transform: translateY(-2px); }
    .btn-main svg { width: 15px; height: 15px; }

    .btn-outline {
      font-family: 'Fjalla One', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      background: transparent;
      color: var(--white);
      padding: 15px 36px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.3);
      display: inline-flex;
      align-items: center;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }

    .btn-outline:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }

    /* ── Image card ── */
    .hero-image-card {
      flex: 1;
      max-width: 480px;
      min-width: 280px;
      animation: fadeUp 0.8s ease both;
      animation-delay: 0.5s;
    }

    .image-wrap {
      position: relative;
    }

    .image-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 4/3;
      border: 1.5px solid rgba(255,255,255,0.1);
      overflow: hidden;
    }

    /* Corner accents */
    .corner { position: absolute; width: 28px; height: 28px; z-index: 4; }
    .corner-tl { top: -1px; left: -1px; border-top: 3px solid var(--amber); border-left: 3px solid var(--amber); }
    .corner-tr { top: -1px; right: -1px; border-top: 3px solid var(--gold); border-right: 3px solid var(--gold); }
    .corner-bl { bottom: -1px; left: -1px; border-bottom: 3px solid var(--gold); border-left: 3px solid var(--gold); }
    .corner-br { bottom: -1px; right: -1px; border-bottom: 3px solid var(--amber); border-right: 3px solid var(--amber); }

    .img-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: linear-gradient(135deg, #252526 0%, #1e1e1f 100%);
    }

    .img-placeholder img {
      width: 475px; height: 344px;
      opacity: 0.3;
      color: var(--amber);
      
    }

    .img-placeholder p {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.22);
    }

    /* Label bar */
    .card-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 14px 20px;
      background: rgba(0,0,0,0.72);
      backdrop-filter: blur(8px);
      border-top: 2px solid var(--amber);
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 3;
    }

    .card-label-text {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }

    .card-label-badge {
      font-family: 'Fjalla One', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--amber);
      padding: 4px 12px;
    }

    /* Shadow block */
    .image-shadow {
      position: absolute;
      top: 12px; left: 12px;
      right: -12px; bottom: -12px;
      background: rgba(250,168,0,0.07);
      border: 1px solid rgba(250,168,0,0.15);
      z-index: -1;
    }

    /* ══════════════════════════════
       STATS STRIP
    ══════════════════════════════ */
    .stats-strip {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 20;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid rgba(255,255,255,0.08);
      background: rgba(0,0,0,0.78);
      backdrop-filter: blur(16px);
      animation: fadeUp 0.6s ease both;
      animation-delay: 0.65s;
    }

    .stat {
      padding: 20px 28px;
      border-right: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      gap: 16px;
      transition: background 0.2s;
    }

    .stat:last-child { border-right: none; }
    .stat:hover { background: rgba(250,168,0,0.06); }

    .stat-num {
      font-family: 'Fjalla One', sans-serif;
      font-size: 2rem;
      color: var(--amber);
      line-height: 1;
      white-space: nowrap;
    }

    .stat-num sup { font-size: 0.85rem; vertical-align: super; line-height: 0; }

    .stat-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-bottom: 3px;
    }

    .stat-sub {
      font-size: 0.62rem;
      color: rgba(255,255,255,0.32);
    }

    /* ══════════════════════════════
       ANIMATIONS
    ══════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 960px) {
      nav { padding: 0 24px; }
      .nav-links, .nav-phone { display: none; }
      .hero-body { flex-direction: column; padding: 40px 24px 180px; align-items: flex-start; }
      .hero-image-card { width: 100%; max-width: 100%; }
      .stats-strip { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(2) { border-right: none; }
      h1 { font-size: 3rem; }
    }

    @media (max-width: 480px) {
      .stat { padding: 14px 16px; gap: 10px; }
      .stat-num { font-size: 1.5rem; }
    }

    /* ══════════════════════════════
       ABOUT / WHO WE ARE SECTION
    ══════════════════════════════ */
.about {
    position: relative;
    width: 100%;
    background: var(--charcoal);
    padding: 140px 56px 120px;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    max-width: 620px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.about-label-dot {
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(250,168,0,0.4);
}

.about-label-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
}

.about h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
}

.about h2 .highlight {
    color: var(--amber);
    display: block;
}

.about-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
}

.about-desc strong {
    color: var(--white);
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(250,168,0,0.12);
    border-radius: 8px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--amber);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(250,168,0,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--amber);
}

.feature-content h4 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* Visual / Image side */
.about-visual {
    flex: 1;
    position: relative;
    max-width: 560px;
}

.about-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border: 1.5px solid rgba(255,255,255,0.08);
    overflow: hidden;
    border-radius: 12px;
}

.about-image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1e20 0%, #2a2a2c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250,168,0,0.25);
}

.about-image-placeholder img {
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.4;
}

.about-visual p {
  text-align:center;
  margin-top:16px;
  font-size:0.85rem;
  color:rgba(255,255,255,0.5);
}

/* Corner accents - matching hero style */
.corner-accent { 
    position: absolute; 
    width: 36px; 
    height: 36px; 
    z-index: 3; 
}
.corner-accent-tl { top: -2px; left: -2px; border-top: 4px solid var(--amber); border-left: 4px solid var(--amber); }
.corner-accent-tr { top: -2px; right: -2px; border-top: 4px solid var(--gold); border-right: 4px solid var(--gold); }
.corner-accent-bl { bottom: -2px; left: -2px; border-bottom: 4px solid var(--gold); border-left: 4px solid var(--gold); }
.corner-accent-br { bottom: -2px; right: -2px; border-bottom: 4px solid var(--amber); border-right: 4px solid var(--amber); }

/* Subtle glow behind image */
.about-glow {
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at 30% 70%, rgba(250,168,0,0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Fade-up animation (reuse from hero) */
.about,
.about h2,
.about-desc,
.about-features,
.about-visual {
    animation: fadeUp 0.8s ease both;
}

.about { animation-delay: 0.1s; }
.about h2 { animation-delay: 0.2s; }
.about-desc { animation-delay: 0.3s; }
.about-features { animation-delay: 0.4s; }
.about-visual { animation-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 960px) {
    .about {
        padding: 100px 32px 80px;
    }
    .about-container {
        flex-direction: column;
        gap: 60px;
    }
    .about-text,
    .about-visual {
        max-width: 100%;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about h2 {
        font-size: 2.6rem;
    }
    .feature-item {
        padding: 16px;
    }
}

/* ══════════════════════════════
       BUILDING SYSTEM / PARKHOMES SECTION
    ══════════════════════════════ */
.building-system {
    position: relative;
    width: 100%;
    background: var(--charcoal);
    padding: 120px 56px 100px;
    overflow: hidden;
}

.building-system::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.building-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.building-text {
    flex: 1;
    max-width: 620px;
}

.building-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.building-label-dot {
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(250,168,0,0.4);
}

.building-label-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
}

.building-system h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
}

.building-system h2 .highlight {
    color: var(--amber);
    display: block;
}

.building-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
}

.building-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

/* Reuse .feature-item, .feature-icon, .feature-content from about section — copy if needed */

/* Visual side */
.building-visual {
    flex: 1;
    position: relative;
    max-width: 560px;
}

.building-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border: 1.5px solid rgba(255,255,255,0.08);
    overflow: hidden;
    border-radius: 12px;
}

.building-image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1e20 0%, #2a2a2c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.building-image-placeholder img {
  width:100%;
  height:100%; 
  object-fit:cover; 
  opacity:0.4;
}

.building-glow {
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at 70% 30%, rgba(250,168,0,0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Corner accents — copy from about or hero */
.corner-accent { 
    position: absolute; 
    width: 36px; 
    height: 36px; 
    z-index: 3; 
}
.corner-accent-tl { top: -2px; left: -2px; border-top: 4px solid var(--amber); border-left: 4px solid var(--amber); }
.corner-accent-tr { top: -2px; right: -2px; border-top: 4px solid var(--gold); border-right: 4px solid var(--gold); }
.corner-accent-bl { bottom: -2px; left: -2px; border-bottom: 4px solid var(--gold); border-left: 4px solid var(--gold); }
.corner-accent-br { bottom: -2px; right: -2px; border-bottom: 4px solid var(--amber); border-right: 4px solid var(--amber); }

/* Animations — reuse fadeUp */
.building-system,
.building-system h2,
.building-desc,
.building-features,
.building-visual {
    animation: fadeUp 0.8s ease both;
}

.building-system { animation-delay: 0.1s; }
.building-system h2 { animation-delay: 0.2s; }
.building-desc { animation-delay: 0.3s; }
.building-features { animation-delay: 0.4s; }
.building-visual { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 960px) {
    .building-system {
        padding: 100px 32px 80px;
    }
    .building-container {
        flex-direction: column;
        gap: 60px;
    }
    .building-text,
    .building-visual {
        max-width: 100%;
    }
    .building-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .building-system h2 {
        font-size: 2.6rem;
    }
}


/* ══════════════════════════════
       CONTAINER SYSTEM SECTION
    ══════════════════════════════ */
.container-system {
    position: relative;
    width: 100%;
    background: var(--charcoal);
    padding: 120px 56px 100px;
    overflow: hidden;
}

.container-system::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.container-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.container-text {
    flex: 1;
    max-width: 620px;
}

.container-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.container-label-dot {
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(250,168,0,0.4);
}

.container-label-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
}

.container-system h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
}

.container-system h2 .highlight {
    color: var(--amber);
    display: block;
}

.container-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
}

.container-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

/* Reuse .feature-item / .feature-icon / .feature-content styles from previous sections */

/* Visual */
.container-visual {
    flex: 1;
    position: relative;
    max-width: 560px;
}

.container-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border: 1.5px solid rgba(255,255,255,0.08);
    overflow: hidden;
    border-radius: 12px;
}

.container-image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1e20 0%, #2a2a2c 100%);
}

.container-image-placeholder img {
  width:100%; 
  height:100%; 
  object-fit:cover; 
  opacity:0.4;
}

.container-glow {
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at 30% 70%, rgba(250,168,0,0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Corner accents (copy from previous) */
.corner-accent { position: absolute; width: 36px; height: 36px; z-index: 3; }
.corner-accent-tl { top: -2px; left: -2px; border-top: 4px solid var(--amber); border-left: 4px solid var(--amber); }
.corner-accent-tr { top: -2px; right: -2px; border-top: 4px solid var(--gold); border-right: 4px solid var(--gold); }
.corner-accent-bl { bottom: -2px; left: -2px; border-bottom: 4px solid var(--gold); border-left: 4px solid var(--gold); }
.corner-accent-br { bottom: -2px; right: -2px; border-bottom: 4px solid var(--amber); border-right: 4px solid var(--amber); }

/* Animations */
.container-system,
.container-system h2,
.container-desc,
.container-features,
.container-visual {
    animation: fadeUp 0.8s ease both;
}

.container-system { animation-delay: 0.1s; }
.container-system h2 { animation-delay: 0.2s; }
.container-desc { animation-delay: 0.3s; }
.container-features { animation-delay: 0.4s; }
.container-visual { animation-delay: 0.5s; }

/* Responsive (same as previous) */
@media (max-width: 960px) {
    .container-system { padding: 100px 32px 80px; }
    .container-container { flex-direction: column; gap: 60px; }
    .container-text, .container-visual { max-width: 100%; }
    .container-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container-system h2 { font-size: 2.6rem; }
}


/* ══════════════════════════════
       TESTIMONIALS SECTION
    ══════════════════════════════ */
.testimonials {
    position: relative;
    width: 100%;
    background: var(--charcoal);
    padding: 120px 56px 100px;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.testimonials-title .highlight {
    color: var(--amber);
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: transform 0.45s ease-in-out;
    will-change: transform;
    padding-left: 50vw;
    padding-right: 50vw;
    box-sizing: content-box;
}

.testimonial {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    min-width: 600px;
    max-width: 600px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s ease;
    transform: scale(0.85);
    opacity: 0.6;
}

.testimonial.active {
    transform: scale(1);
    opacity: 1;
    border-color: var(--amber);
    box-shadow: 0 20px 40px rgba(250,168,0,0.12);
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.client {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--amber);
}

.client-name {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
}

.client-role {
    font-size: 0.9rem;
    color: var(--amber);
    margin: 4px 0 0;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--amber);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--black);
}

.arrow svg {
    width: 24px;
    height: 24px;
}

.arrow-left { left: 0; }
.arrow-right { right: 0; }

.arrow:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 960px) {
    .testimonials { padding: 100px 32px 80px; }
    .testimonial { min-width: 80vw; max-width: 80vw; padding: 32px; }
    .testimonials-track { gap: 2rem; }
}

@media (max-width: 480px) {
    .testimonials-title { font-size: 2.6rem; }
    .arrow { height: 60px; width: 60px; }
}

/* ══════════════════════════════
       CTA SECTION
    ══════════════════════════════ */
.cta {
    position: relative;
    width: 100%;
    background: var(--charcoal);
    padding: 120px 56px;
    display: flex;
    align-items: center;
    gap: 80px;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(250,168,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-text {
    flex: 1;
    max-width: 620px;
    z-index: 2;
}

.cta-text h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-text h2 .highlight {
    color: var(--amber);
    display: block;
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-image {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.cta-image-frame {
    position: relative;
    aspect-ratio: 4/3;
    border: 1.5px solid rgba(255,255,255,0.1);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.cta-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.4;
}

.cta-image-frame:hover img {
    transform: scale(1.05);
}

/* Reuse your existing .btn-main and .btn-outline styles — they match perfectly */

/* Animations */
.cta,
.cta-text h2,
.cta-text p,
.cta-buttons,
.cta-image {
    animation: fadeUp 0.8s ease both;
}

.cta { animation-delay: 0.1s; }
.cta-text h2 { animation-delay: 0.2s; }
.cta-text p { animation-delay: 0.3s; }
.cta-buttons { animation-delay: 0.4s; }
.cta-image { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 960px) {
    .cta {
        flex-direction: column;
        padding: 100px 32px;
        text-align: center;
    }
    .cta-text { max-width: 100%; }
    .cta-image { max-width: 100%; }
    .cta-buttons { justify-content: center; }
}

@media (max-width: 480px) {
    .cta-text h2 { font-size: 2.6rem; }
}




/* =========================
   Projects Gallery Section
========================= */

.projects-gallery {
    padding: 100px 60px;
    background: var(--charcoal);
    color: var(--white);
}

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


/* Title */

.projects-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: 0.08em;
}


/* Project Section */

.project-section {
    margin-bottom: 70px;
}

.project-section h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--amber);
}


/* Gallery Grid */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}


/* Gallery Items */

.gallery-item {
    height: 220px;
    background: linear-gradient(135deg,var(--amber),var(--gold));
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gallery-item img {
  height: 100%;
  width:100%;
  border-radius: 4px;
}

.gallery-item:hover {
    transform: scale(1.04);
}




/* Responsive */

@media (max-width: 768px) {

.projects-gallery {
    padding: 80px 24px;
}

.projects-title {
    font-size: 2.1rem;
}

.project-section h2 {
    font-size: 1.4rem;
}

}



.products {
  padding: 80px 10%;
  background: var(--white);
  background-color: var(--charcoal);
}

.products-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--charcoal);
}

.product-section {
  margin-bottom: 80px;
}

.product-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

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

.product-info p {
  margin-bottom: 20px;
  color: var(--white);
}

.product-info ul {
  list-style: none;
  padding-left: 0;
}

.product-info li {
  margin-bottom: 8px;
  color: var(--white);
  position: relative;
  padding-left: 28px;
}

.product-info li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}


/* ACCORDION */

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

.accordion-header {
  width: 100%;
  text-align: left;
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 18px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.accordion-header:hover {
  background: var(--gold);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f7f7f7;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 20px;
  color: var(--charcoal);
}


/* MOBILE */

@media (max-width: 768px){

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

  .products-title{
    font-size: 34px;
  }

}


/* Industries */

.industries {
  padding: 80px 10%;
  background-color: var(--charcoal);
}

.industries-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--white);
}

.industries-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  color: var(--white);
}


.industry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

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

.industry-content h2 {
  color: var(--gold);
  margin-bottom: 15px;
}

.industry-content p {
  margin-bottom: 15px;
  color: var(--white);
}

.industry-content ul {
  list-style: none;
  padding-left: 0;
}

.industry-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: var(--white);
}

.industry-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gold);
}


/* MOBILE */

@media (max-width: 768px){

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

  .industries-title {
    font-size: 34px;
  }

}

.about1 {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 60px 20px;
}

.about1 .about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about1 .about-text {
  flex: 1 1 500px;
}

.about1 .about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.about1 .about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--white);
}

.about1 .about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about1 .about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  object-fit: cover;
}


/* Contact-us */

.contact1{
  background: var(--white);
  padding: 60px 20px;
}

.contact-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info{
  flex: 1 1 450px;
}

.contact-info h1{
  color: var(--charcoal);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info p{
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-details strong{
  color: var(--charcoal);
}

.map iframe{
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 20px;
  border-radius: 5px;
}

.contact-form{
  flex: 1 1 400px;
  background: var(--charcoal);
  padding: 30px;
  border-radius: 6px;
}

.contact-form h2{
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-form form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input{
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
}

.checkbox-group{
  display: flex;
  gap: 20px;
  color: var(--white);
  margin-top: 10px;
}

.checkbox-group input{
  margin-right: 5px;
}

.contact-form button{
  background: var(--gold);
  color: var(--black);
  padding: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.contact-form button:hover{
  background: var(--amber);
}


/*Thank You Page */

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  padding: 40px;
  text-align: center;
}

.thank-you-container {
  max-width: 600px;
}

.thank-you h1 {
  color: var(--amber);
  font-size: 3rem;
  margin-bottom: 20px;
}

.thank-you p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.home-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.home-btn:hover {
  background: var(--amber);
}

/* Privacy Policy */

.pp {
  width: 100vw;
  background-color: var(--charcoal);
}

.privacy-policy{
max-width:900px;
margin:0 auto;
padding:50px 25px;
background:var(--charcoal);
color:var(--white);
line-height:1.7;
}

.privacy-policy h1{
color:var(--amber);
font-size:2.8rem;
margin-bottom:25px;
}

.privacy-policy h2{
color:var(--gold);
margin-top:35px;
margin-bottom:10px;
font-size:1.5rem;
}

.privacy-policy p{
margin-bottom:18px;
font-size:1.05rem;
}


/* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
.footer {
    background: #1a1a1b;
    color: rgba(255,255,255,0.7);
    padding: 0;
    font-family: 'Work Sans', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cta {
    background: linear-gradient(135deg, rgba(250,168,0,0.12) 0%, transparent 70%);
    border-bottom: 1px solid rgba(250,168,0,0.15);
    padding: 60px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-cta-text h3 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-cta-text p {
    font-size: 1.05rem;
    max-width: 500px;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--amber);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-phone svg {
   width: 20px; 
   height: 20px; 
  }
.footer-phone:hover { 
  color: var(--gold); 
}

.footer-cta-btn { 
  padding: 14px 32px; 
  font-size: 0.9rem; 
}

.footer-main {
    padding: 80px 56px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    background-color: var(--charcoal);
}

.footer-brand .footer-logo { 
  display: flex; 
  align-items: center; 
  text-decoration: none; 
  margin-bottom: 24px;
 }

.footer-brand .logo-block { 
  background: var(--white); 
  padding: 10px 16px;
 }

.footer-brand .logo-wordmark { 
  background: rgba(255,255,255,0.06); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-left: none; 
  padding: 10px 20px; 
  font-size: 1.4rem; 
  color: var(--white); 
  text-transform: uppercase;
 }

.footer-brand .logo-wordmark span { 
  color: var(--amber); 
}

.footer-desc { 
  font-size: 0.95rem; line-height: 1.7; max-width: 320px; 
  color: var(--white);
}

.footer-menu h4, .footer-social h4 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-menu li { 
  margin-bottom: 12px; 
}

.footer-menu a { 
  color: rgba(255,255,255,0.7); 
  text-decoration: none; 
  transition: color 0.2s; 
}

.footer-menu a:hover { 
  color: var(--amber); 
}

.social-icons { 
  display: flex; 
  gap: 20px; 
}

.social-icons a { 
  color: rgba(255,255,255,0.6); 
  transition: all 0.2s; 
}
.social-icons a svg { 
  width: 28px; height: 28px; 
}
.social-icons a:hover { 
  color: var(--amber); 
  transform: translateY(-3px); 
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 32px 56px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
    .footer-cta {
       flex-direction: column; 
       text-align: center; 
      }
    .footer-main { 
      grid-template-columns: 1fr; 
      text-align: center; 
    }
    .footer-menu ul, .social-icons {
      justify-content: center; 
    }
}

@media (max-width: 480px) {
    .footer-cta { padding: 40px 24px; }
    .footer-main { padding: 60px 24px 40px; }
    .footer-bottom { padding: 24px; flex-direction: column; gap: 12px; }
}