/* ==========================================================================
   QUICK & QUALITY CONSTRUCTION (NSW) PTY LTD
   Styles: css/style.css
   Modern Australian Architectural Luxury Theme
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1. Design Tokens & CSS Custom Properties                                   */
/* -------------------------------------------------------------------------- */
:root {
  /* Architectural Light Palette (Crisp Limestone & Tactile Porcelain) */
  --bg-main: #FAFAF8;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3F1EC;
  --bg-sandstone: #EAE6DF;
  
  /* Deep Obsidian / Architectural Charcoal (Hero, Dark Sections & Footer) */
  --dark-hero: #0C1017;
  --dark-surface: #141A23;
  --dark-elevated: #1C2430;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-border-subtle: rgba(255, 255, 255, 0.04);
  
  /* Official Brand Champagne Gold & Warm Metallic Brass (from quicklogo) */
  --gold-primary: #B8934C;
  --gold-bright: #D4AF60;
  --gold-dark: #967430;
  --gold-accent: #B8934C;
  --gold-light: rgba(184, 147, 76, 0.12);
  --gold-subtle: rgba(184, 147, 76, 0.06);
  --gold-glow: rgba(184, 147, 76, 0.28);
  --gold-border: rgba(184, 147, 76, 0.35);

  /* Typography Colors */
  --text-main: #181E27;
  --text-heading: #0E131A;
  --text-muted: #596373;
  --text-light-muted: #8E98A8;
  --text-inverse: #FFFFFF;
  --text-inverse-muted: #9DA6B5;

  /* Borders & Dividers */
  --border-light: rgba(24, 30, 39, 0.08);
  --border-medium: rgba(24, 30, 39, 0.14);
  --border-focus: var(--gold-primary);
  
  /* Typography Scale */
  --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Montserrat', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation Shadows */
  --shadow-subtle: 0 2px 8px rgba(14, 19, 26, 0.04);
  --shadow-card: 0 10px 30px rgba(14, 19, 26, 0.06);
  --shadow-elevated: 0 20px 40px rgba(14, 19, 26, 0.1);
  --shadow-dark-card: 0 16px 36px rgba(0, 0, 0, 0.4);
  --shadow-gold-glow: 0 8px 24px rgba(184, 147, 76, 0.28);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1240px;
  --header-height: 80px;
}

/* -------------------------------------------------------------------------- */
/* 2. Global Resets & Base Configuration                                      */
/* -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Accessibility Focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/* 3. Typography & Editorial Headers                                          */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--gold-primary) !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
}

.eyebrow.with-line::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--gold-primary);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/* 4. Luxury Buttons & UI Actions                                             */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

/* Gold Primary CTA */
.btn-gold {
  background-color: var(--gold-primary);
  color: #0E131A;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 4px 16px rgba(184, 147, 76, 0.25);
}

.btn-gold:hover {
  background-color: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 147, 76, 0.35);
}

/* Dark Secondary CTA */
.btn-dark {
  background-color: var(--text-heading);
  color: #FFFFFF;
  border: 1px solid var(--text-heading);
}

.btn-dark:hover {
  background-color: #242B35;
  border-color: #242B35;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 19, 26, 0.15);
}

/* Outline White (for Dark Sections) */
.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Outline Dark (for Light Sections) */
.btn-outline-dark {
  background-color: transparent;
  color: var(--text-heading);
  border: 1px solid var(--border-medium);
}

.btn-outline-dark:hover {
  background-color: var(--text-heading);
  color: #FFFFFF;
  border-color: var(--text-heading);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------------------- */
/* 5. Header & Navigation (Rich Architectural Brand Theme)                     */
/* -------------------------------------------------------------------------- */

/* =========================================================
   PREMIUM BLACK BEFORE & AFTER SECTION
========================================================= */

.before-after-section {
    position: relative;
    width: 100%;
    padding: 120px 30px;
    overflow: hidden;

    /* DEEP BLACK BACKGROUND */
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(197, 160, 89, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(255, 255, 255, 0.025),
            transparent 28%
        ),
        #050608;
}


/* Subtle black texture */
.before-after-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.015) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.before-after-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.before-after-heading {
    position: relative;
    z-index: 5;

    margin-bottom: 65px;
}

.before-after-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 18px;

    color: #c5a059;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.before-after-eyebrow::after {
    content: "";

    width: 65px;
    height: 1px;

    background: #c5a059;
}


.before-after-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(50px, 7vw, 88px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -3px;

    text-transform: uppercase;
}

.before-after-heading h2 span {
    color: #c5a059;
    font-style: italic;
}


.before-after-heading p {
    max-width: 600px;

    margin: 25px 0 0;

    color: rgba(255,255,255,0.55);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   SHOWCASE
========================================================= */

.before-after-showcase {
    position: relative;

    min-height: 680px;
}


/* =========================================================
   BEFORE IMAGE
========================================================= */

.before-image-card {
    position: absolute;

    top: 65px;
    left: 0;

    width: 48%;
    height: 460px;

    overflow: hidden;

    z-index: 1;

    background: #0b0c0e;

    border: 1px solid rgba(255,255,255,0.20);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.75);

    transform: rotate(-1.5deg);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


.before-image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.before-image-card:hover {
    transform:
        rotate(0deg)
        translateY(-8px);

    box-shadow:
        0 40px 90px rgba(0,0,0,0.85);
}


.before-image-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   AFTER IMAGE
========================================================= */

.after-image-card {
    position: absolute;

    top: 0;
    right: 0;

    width: 64%;
    height: 610px;

    overflow: hidden;

    z-index: 3;

    background: #0b0c0e;

    border: 2px solid #c5a059;

    box-shadow:
        0 35px 90px rgba(0,0,0,0.85),
        0 0 40px rgba(197,160,89,0.08);

    transform: rotate(0.5deg);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


.after-image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.after-image-card:hover {
    transform:
        rotate(0deg)
        translateY(-8px);

    box-shadow:
        0 45px 100px rgba(0,0,0,0.9),
        0 0 60px rgba(197,160,89,0.15);
}


.after-image-card:hover img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE LABELS
========================================================= */

.image-label {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 13px 20px;

    background: rgba(0,0,0,0.88);

    border: 1px solid rgba(255,255,255,0.15);

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


.image-label span {
    color: #c5a059;
}


.after-label {
    background: #c5a059;

    border-color: #c5a059;

    color: #050608;
}


.after-label span {
    color: #050608;
}


/* =========================================================
   TRANSFORMATION ARROW
========================================================= */

.before-after-arrow {
    position: absolute;

    top: 420px;
    left: 47%;

    z-index: 10;

    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c5a059;

    color: #050608;

    font-size: 36px;
    font-weight: 700;

    border: 6px solid #050608;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.65),
        0 0 30px rgba(197,160,89,0.18);

    animation: premiumArrowFloat 3s ease-in-out infinite;
}


@keyframes premiumArrowFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-8px) rotate(0deg);
    }

}


/* =========================================================
   PREMIUM FEATURES
========================================================= */

.before-after-features {
    position: absolute;

    left: 25px;
    bottom: 0;

    width: 42%;

    z-index: 8;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.before-after-feature {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.09);

    border-left: 2px solid rgba(197,160,89,0.55);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.35);

    backdrop-filter: blur(10px);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* Gold light effect */

.before-after-feature::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(197,160,89,0.07),
        transparent
    );

    transition: left 0.6s ease;

    pointer-events: none;
}


/* Hover */

.before-after-feature:hover {
    transform: translateX(8px);

    border-color: rgba(197,160,89,0.40);

    border-left-color: #c5a059;

    background:
        linear-gradient(
            135deg,
            rgba(197,160,89,0.10),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 18px 45px rgba(0,0,0,0.55),
        0 0 25px rgba(197,160,89,0.06);
}


.before-after-feature:hover::before {
    left: 130%;
}


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {
    position: relative;

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0a0b0d;

    border: 1px solid rgba(197,160,89,0.65);

    color: #c5a059;

    font-size: 20px;

    box-shadow:
        inset 0 0 20px rgba(197,160,89,0.04);

    transition:
        all 0.35s ease;
}


/* Small corner */

.feature-icon::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    right: -1px;
    bottom: -1px;

    border-right: 2px solid #c5a059;
    border-bottom: 2px solid #c5a059;
}


.before-after-feature:hover .feature-icon {
    background: #c5a059;

    color: #050608;

    transform: rotate(5deg) scale(1.08);

    box-shadow:
        0 8px 25px rgba(197,160,89,0.20);
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.before-after-feature h3 {
    position: relative;

    margin: 0 0 5px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.before-after-feature p {
    position: relative;

    margin: 0;

    color: rgba(255,255,255,0.48);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .before-after-section {
        padding: 80px 20px;
    }

    .before-after-heading {
        margin-bottom: 45px;
    }

    .before-after-heading h2 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .before-after-heading p {
        font-size: 16px;
    }

    .before-after-showcase {
        min-height: auto;

        display: flex;
        flex-direction: column;
    }

    .before-image-card,
    .after-image-card {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
    }

    .before-image-card {
        width: 94%;
        height: 270px;

        transform: rotate(-1deg);
    }

    .after-image-card {
        width: 94%;
        height: 340px;

        margin-top: -40px;
        margin-left: 6%;

        transform: rotate(0.5deg);
    }

    .before-after-arrow {
        top: 235px;
        left: auto;
        right: 8%;

        width: 55px;
        height: 55px;

        border-width: 4px;

        font-size: 25px;
    }

    .before-after-features {
        position: relative;

        left: auto;
        bottom: auto;

        width: 100%;

        margin-top: 55px;

        gap: 10px;
    }

    .before-after-feature {
        padding: 16px;

        gap: 14px;
    }

    .feature-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        font-size: 17px;
    }

    .before-after-feature h3 {
        font-size: 13px;
    }

    .before-after-feature p {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .before-after-section {
        padding: 70px 15px;
    }

    .before-after-heading h2 {
        font-size: 39px;
    }

    .before-image-card {
        height: 230px;
    }

    .after-image-card {
        height: 285px;

        margin-top: -32px;
    }

    .before-after-arrow {
        top: 198px;

        width: 48px;
        height: 48px;

        font-size: 22px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .before-after-arrow {
        animation: none;
    }

    .before-after-feature,
    .before-image-card,
    .after-image-card,
    .before-image-card img,
    .after-image-card img,
    .feature-icon {
        transition: none;
    }

}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(12, 16, 23, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 147, 76, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(10, 13, 19, 0.98);
  border-bottom-color: rgba(184, 147, 76, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Architectural Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-crest {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(184, 147, 76, 0.35));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-crest {
  transform: scale(1.05);
}

.brand-logo-img-horiz {
  height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(184, 147, 76, 0.3));
}

.footer-logo-img {
  width: 210px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 14px rgba(184, 147, 76, 0.25));
  display: block;
}

.logo-symbol {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-xs);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(184, 147, 76, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  line-height: 1.15;
}

.logo-subtitle {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
}

/* Navigation Links */
.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D1D5DB;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone svg {
  color: var(--gold-primary);
}

.header-phone:hover {
  background: rgba(184, 147, 76, 0.15);
  border-color: var(--gold-primary);
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
    padding: 0.7rem 1.35rem;
    font-size: 0.75rem;
  }
}

/* Mobile Hamburger Button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xs);
}

@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: all var(--transition-fast);
}

.hamburger-btn:hover .hamburger-line {
  background-color: var(--gold-primary);
}

/* -------------------------------------------------------------------------- */
/* 6. Mobile Navigation Drawer                                                */
/* -------------------------------------------------------------------------- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: #0C1017;
  border-left: 1px solid rgba(184, 147, 76, 0.3);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  transition: right var(--transition-normal);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.mobile-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xs);
}

.mobile-close-btn:hover {
  color: var(--gold-primary);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  color: #E5E7EB;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
}

.mobile-nav-link span {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--gold-primary);
  padding-left: 1.25rem;
}

.mobile-drawer-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-phone-link svg {
  color: var(--gold-primary);
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* 7. Cinematic Video Hero Banner Section                                     */
/* -------------------------------------------------------------------------- */

/* =========================================================
   VIDEO BANNER - NO TEXT
========================================================= */

.video-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;

    overflow: hidden;

    background: #111;
}


/* =========================================================
   BACKGROUND VIDEO
========================================================= */

.video-banner-bg {
    position: absolute;

    top: 50%;
    left: 50%;

    min-width: 100%;
    min-height: 100%;

    width: auto;
    height: auto;

    transform: translate(-50%, -50%);

    object-fit: cover;
    object-position: center center;

    /* Bright video */
    filter:
        brightness(1.35)
        contrast(1.02)
        saturate(1.05);

    z-index: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .video-banner {
        height: 75vh;
        min-height: 550px;
    }

    .video-banner-bg {
        object-position: center center;

        filter:
            brightness(1.35)
            contrast(1.02)
            saturate(1.05);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .video-banner {
        width: 100%;
        height: 70vh;
        min-height: 480px;
    }

    .video-banner-bg {
        object-position: center center;

        filter:
            brightness(1.3)
            contrast(1.02)
            saturate(1.05);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .video-banner {
        height: 65vh;
        min-height: 430px;
    }

}
.hero-video {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #17191C;
  color: #FFFFFF;
  overflow: hidden;
}


.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;

    /* Lighter and clearer video */
    filter: brightness(1.35) contrast(1.05) saturate(1.1);

    z-index: 0;
    pointer-events: none;

}

.hero-video-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 25, 28, 0.88) 0%,
    rgba(23, 25, 28, 0.58) 55%,
    rgba(23, 25, 28, 0.38) 100%
  ),
  rgba(0, 0, 0, 0.48);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.65);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.hero-content {
  max-width: 650px;
  text-align: left;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #C5A059;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-description {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: #F5F5F3;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Small Bottom Information Bar */
.hero-bottom-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(23, 25, 28, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  padding: 1.15rem 0;
  margin-top: auto;
}

.hero-bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.hero-info-item {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F5F5F3;
}

.hero-info-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(197, 160, 89, 0.45);
  flex-shrink: 0;
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
  .hero-video {
    height: 85vh;
    min-height: 650px;
    padding-top: calc(var(--header-height) + 1.25rem);
  }

  .hero-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .hero-btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-bottom-bar-inner {
    gap: 0.85rem;
  }

  .hero-info-item {
    font-size: 0.75rem;
  }

  .hero-info-divider {
    display: none;
  }
}




/* =========================================================
   CONSTRUCTION COMPANY SCROLLING BAR
========================================================= */

.construction-marquee {
    width: 100%;
    overflow: hidden;

    background: #1a1d23;

    border-top: 1px solid rgba(197, 160, 89, 0.25);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);

    padding: 22px 0;

    position: relative;
}


/* =========================================================
   SCROLLING TRACK
========================================================= */

.marquee-track {
    display: flex;
    align-items: center;

    width: max-content;

    animation: constructionScroll 35s linear infinite;

    will-change: transform;
}


/* =========================================================
   MARQUEE ITEM
========================================================= */

.marquee-item {
    display: flex;
    align-items: center;

    white-space: nowrap;

    padding: 0 35px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   GOLD ICON
========================================================= */

.marquee-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-right: 20px;

    color: #c5a059;

    font-size: 18px;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

@keyframes constructionScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   HOVER - PAUSE
========================================================= */

.construction-marquee:hover .marquee-track {
    animation-play-state: paused;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .construction-marquee {
        padding: 19px 0;
    }

    .marquee-item {
        padding: 0 28px;

        font-size: 14px;
    }

    .marquee-icon {
        margin-right: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .construction-marquee {
        padding: 17px 0;
    }

    .marquee-track {
        animation-duration: 28s;
    }

    .marquee-item {
        padding: 0 22px;

        font-size: 12px;

        letter-spacing: 1.2px;
    }

    .marquee-icon {
        margin-right: 12px;

        font-size: 15px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .marquee-track {
        animation: none;
    }

}
/* Accessibility: Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg {
    display: none;
  }

  .hero-video {
    background-image: url('../images/hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
}

/* Floating Hero Stats Bar */
.hero-stats-container {
  position: relative;
  z-index: 5;
}

.hero-stats-panel {
  position: relative;
  background-color: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 147, 76, 0.12);
  border: 1px solid rgba(184, 147, 76, 0.3);
  border-radius: var(--radius-xs);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 0.15rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

/* -------------------------------------------------------------------------- */
/* 8. Trust Bar / Commitments (Crisp Elevated Grid)                           */
/* -------------------------------------------------------------------------- */
.trust-bar-section {
  padding: 5rem 0;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.trust-card:hover .trust-icon-box {
  background-color: var(--gold-primary);
  color: #0C1017;
  border-color: var(--gold-primary);
}

.trust-content h3 {
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.trust-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* 9. About Section (Editorial Architectural Story)                           */
/* -------------------------------------------------------------------------- */
.about-section {
  padding: 7.5rem 0;
  background-color: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.about-media-col {
  position: relative;
}

.about-main-img-box {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border-light);
}

.about-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlap-card {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  background-color: var(--dark-hero);
  color: #FFFFFF;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(184, 147, 76, 0.4);
  max-width: 320px;
  box-shadow: var(--shadow-dark-card);
}

@media (max-width: 640px) {
  .about-overlap-card {
    position: static;
    max-width: 100%;
    margin-top: 1.5rem;
  }
}

.card-highlight-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.about-overlap-card p {
  font-size: 0.875rem;
  color: #D1D5DB;
  line-height: 1.5;
}

.about-content-col {
  display: flex;
  flex-direction: column;
}

.about-quote-box {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  background-color: var(--bg-subtle);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}

.about-quote-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.5;
  font-style: italic;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
  .about-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
}

.pillar-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
/* 10. Services Section (Tactile Limestone Cards)                             */
/* -------------------------------------------------------------------------- */
.services-section {
  padding: 7.5rem 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--gold-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 5;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-border);
}

.service-card:hover::before {
  opacity: 1;
}

.service-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--bg-subtle);
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.06);
}

.service-badge-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(12, 16, 23, 0.85);
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--gold-border);
  letter-spacing: 0.1em;
}

.service-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: var(--bg-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  background-color: var(--gold-primary);
  color: #0C1017;
  border-color: var(--gold-primary);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.service-description {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-heading);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.service-link svg {
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--gold-primary);
  gap: 0.75rem;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* -------------------------------------------------------------------------- */
/* 11. Featured Projects Portfolio (Uniform Equal Size Grid)                  */
/* -------------------------------------------------------------------------- */
.projects-section {
  padding: 7.5rem 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-xs);
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover {
  background-color: #E8E5DD;
  color: var(--text-heading);
  border-color: rgba(184, 147, 76, 0.4);
}

.filter-btn.active {
  background-color: var(--text-heading);
  color: #FFFFFF;
  border-color: var(--text-heading);
  box-shadow: 0 4px 14px rgba(12, 16, 23, 0.25);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Uniform Identical Project Cards */
.project-card {
  position: relative;
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--gold-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 5;
}

.project-card:hover::before {
  opacity: 1;
}

.project-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background-color: var(--dark-hero);
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-fast);
  display: block;
}

.project-card:hover .project-img {
  transform: scale(1.06);
}

.project-badge-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(12, 16, 23, 0.88);
  backdrop-filter: blur(4px);
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(184, 147, 76, 0.35);
  z-index: 2;
}

.project-zoom-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background-color: rgba(12, 16, 23, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(184, 147, 76, 0.3);
  border-radius: 50%;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: all var(--transition-fast);
  z-index: 2;
}

.project-card:hover .project-zoom-indicator {
  opacity: 1;
  transform: scale(1);
}

.project-info {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--bg-surface);
}

.project-location-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-location-bar svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.project-title-text {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  transition: color var(--transition-fast);
}

.project-card:hover .project-title-text {
  color: var(--gold-primary);
}

.project-description-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-heading);
  transition: color var(--transition-fast);
}

.project-action-link span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.project-action-link svg {
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.project-card:hover .project-action-link {
  color: var(--gold-primary);
}

.project-card:hover .project-action-link svg {
  transform: translateX(4px);
}

/* -------------------------------------------------------------------------- */
/* 12. Project Lightbox Modal                                                 */
/* -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(12, 16, 23, 0.95);
  backdrop-filter: blur(14px);
}

.lightbox-content-box {
  position: relative;
  z-index: 2;
  background-color: var(--dark-hero);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
}

.lightbox-media {
  position: relative;
  width: 100%;
  max-height: 65vh;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  max-height: 65vh;
  object-fit: contain;
}

.lightbox-details {
  padding: 1.75rem 2.25rem;
  background-color: var(--dark-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-details-category {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 0.35rem;
  display: block;
}

.lightbox-details-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.lightbox-details-desc {
  color: #9CA3AF;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.lightbox-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: rgba(12, 16, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close-btn:hover {
  background-color: var(--gold-primary);
  color: #0C1017;
  border-color: var(--gold-primary);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(12, 16, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-prev-btn {
  left: 1rem;
}

.lightbox-next-btn {
  right: 1rem;
}

.lightbox-nav-btn:hover {
  background-color: var(--gold-primary);
  color: #0C1017;
  border-color: var(--gold-primary);
}

/* -------------------------------------------------------------------------- */
/* 13. Why Choose Us (Striking Deep Charcoal Section)                         */
/* -------------------------------------------------------------------------- */
.why-us-section {
  padding: 7.5rem 0;
  background-color: var(--dark-hero);
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background-color: var(--dark-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold-primary);
  transition: all var(--transition-fast);
}

.why-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.why-icon-box {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold-primary);
  background: rgba(184, 147, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  border-radius: var(--radius-xs);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.why-card:hover .why-icon-box {
  background-color: var(--gold-primary);
  color: #0C1017;
}

.why-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.why-text {
  font-size: 0.9375rem;
  color: #9CA3AF;
  line-height: 1.65;
}

/* -------------------------------------------------------------------------- */
/* 14. Our Process (4-Step Sequential Architecture)                           */
/* -------------------------------------------------------------------------- */
.process-section {
  padding: 7.5rem 0;
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-light);
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--gold-primary) 0%,
      rgba(184, 147, 76, 0.3) 100%
    );
    z-index: 1;
  }
}

.process-step {
  background-color: var(--bg-surface);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  position: relative;
  z-index: 2;
  transition: all var(--transition-fast);
}

.process-step:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.process-num-badge {
  width: 48px;
  height: 48px;
  background-color: var(--text-heading);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(14, 19, 26, 0.15);
}

.process-step-title {
  font-size: 1.1875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.process-step-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* 15. Construction Gallery                                                   */
/* -------------------------------------------------------------------------- */
.gallery-section {
  padding: 7.5rem 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xs);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--dark-hero);
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay-icon {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 23, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--gold-primary);
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
}

/* -------------------------------------------------------------------------- */
/* 16. Before & After Interactive Slider                                      */
/* -------------------------------------------------------------------------- */
.before-after-section {
  padding: 7.5rem 0;
  background-color:#0c1017;;
  border-top: 1px solid var(--border-light);
}

.ba-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  user-select: none;
  cursor: ew-resize;
  border: 1px solid var(--border-light);
}

.ba-img-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-img-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after-wrapper {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-after-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.ba-badge {
  position: absolute;
  top: 1.25rem;
  padding: 0.4rem 0.85rem;
  background-color: rgba(12, 16, 23, 0.88);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  border: 1px solid var(--gold-border);
  z-index: 4;
}

.ba-badge.before {
  left: 1.25rem;
}

.ba-badge.after {
  right: 1.25rem;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--gold-primary);
  z-index: 5;
  transform: translateX(-50%);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background-color: var(--dark-hero);
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.ba-caption {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* 17. Customer Reviews & Testimonials                                        */
/* -------------------------------------------------------------------------- */
.reviews-section {
  padding: 7.5rem 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.reviews-slider-wrapper {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.review-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 0.5rem;
}

.review-card-inner {
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

@media (max-width: 640px) {
  .review-card-inner {
    padding: 2.25rem 1.5rem;
  }
}

.review-stars {
  font-size: 1.25rem;
  color: var(--gold-primary);
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
}

.review-quote-text {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-heading);
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-heading);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.review-project-type {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.review-nav-btn:hover {
  background-color: var(--text-heading);
  color: #FFFFFF;
  border-color: var(--text-heading);
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background-color: var(--border-medium);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-dot.active {
  background-color: var(--gold-primary);
  width: 26px;
}

/* -------------------------------------------------------------------------- */
/* 18. Social Media Channels                                                  */
/* -------------------------------------------------------------------------- */
.social-section {
  padding: 7.5rem 0;
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-light);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.social-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}

.social-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-xs);
  background-color: var(--bg-subtle);
  color: var(--gold-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.social-card:hover .social-icon-box {
  background-color: var(--gold-primary);
  color: #0C1017;
  border-color: var(--gold-primary);
}

.social-name {
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.social-link-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.social-action-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* -------------------------------------------------------------------------- */
/* 19. Sydney Service Area Section                                            */
/* -------------------------------------------------------------------------- */
.service-area-section {
  padding: 7.5rem 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.service-area-box {
  background-color: var(--dark-hero);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 3.5rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-dark-card);
}

.area-address-card {
  background-color: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xs);
  padding: 2rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.area-location-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.area-suburbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.suburb-tag {
  background: rgba(255, 255, 255, 0.06);
  color: #D1D5DB;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* -------------------------------------------------------------------------- */
/* 20. Free Quote CTA Banner                                                  */
/* -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 7.5rem 0;
  background: linear-gradient(135deg, #0C1017 0%, #161D28 100%);
  color: #FFFFFF;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner-content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.cta-banner-desc {
  font-size: 1.0625rem;
  color: #D1D5DB;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* -------------------------------------------------------------------------- */
/* 21. Contact & Free Quote Section                                           */
/* -------------------------------------------------------------------------- */
.contact-section {
  padding: 7.5rem 0;
  background-color: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-detail-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background-color: var(--bg-subtle);
  color: var(--gold-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text h3 {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.contact-item-text a:hover {
  color: var(--gold-primary);
}

/* Quote Form (Crisp White Card) */
.quote-form-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 2.75rem;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .form-group.full-width {
    grid-column: span 2;
  }
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-heading);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xs);
  background-color: var(--bg-main);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #9CA3AF;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background-color: var(--bg-surface);
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(184, 147, 76, 0.15);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.file-upload-box {
  position: relative;
  border: 2px dashed var(--border-medium);
  border-radius: var(--radius-xs);
  padding: 1.75rem 1rem;
  text-align: center;
  background-color: var(--bg-main);
  transition: all var(--transition-fast);
  cursor: pointer;
  color: var(--text-muted);
}

.file-upload-box:hover {
  background-color: rgba(184, 147, 76, 0.05);
  border-color: var(--gold-primary);
  color: var(--text-heading);
}

.file-input-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.form-success-alert {
  display: none;
  background-color: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
  padding: 1.25rem;
  border-radius: var(--radius-xs);
  margin-bottom: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/* 22. Footer                                                                 */
/* -------------------------------------------------------------------------- */
.site-footer {
  background-color: #080B10;
  color: #9CA3AF;
  padding-top: 5.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  color: #9CA3AF;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: #9CA3AF;
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-primary);
  padding-left: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6B7280;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* -------------------------------------------------------------------------- */
/* 23. Floating Mobile Action Bar & Scroll To Top                             */
/* -------------------------------------------------------------------------- */
.floating-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  background: rgba(12, 16, 23, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184, 147, 76, 0.3);
  padding: 0.75rem 1rem;
  display: none;
  gap: 0.75rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .floating-mobile-bar {
    display: flex;
  }
}

.floating-mobile-bar .btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.6875rem;
}

.scroll-top-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background-color: var(--dark-hero);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background-color: var(--gold-primary);
  color: #0C1017;
  transform: translateY(-3px);
}

/* -------------------------------------------------------------------------- */
/* 24. 4K Cinematic Video Walkthrough Modal                                    */
/* -------------------------------------------------------------------------- */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 16, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  background: #0F141F;
  border: 1px solid rgba(184, 147, 76, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(184, 147, 76, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-backdrop.open .video-modal-container {
  transform: scale(1) translateY(0);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 24, 38, 0.9);
}

.video-modal-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.video-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.6);
  color: #F87171;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-modal-badge .badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #EF4444;
  animation: videoPulse 1.5s infinite;
}

.video-modal-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.video-modal-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xs);
  color: #94A3B8;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #EF4444;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.video-modal-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  flex-grow: 1;
  overflow: hidden;
  max-height: calc(90vh - 70px);
}

@media (max-width: 900px) {
  .video-modal-body {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
}

.video-player-wrapper {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 300px;
}

.modal-video-player {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  background: #000000;
}

.video-modal-sidebar {
  background: rgba(15, 20, 31, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.video-chapters-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.chapter-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xs);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.chapter-nav-item:hover {
  background: rgba(184, 147, 76, 0.15);
  border-color: rgba(184, 147, 76, 0.4);
}

.chapter-nav-item.active {
  background: rgba(184, 147, 76, 0.2);
  border-color: var(--gold-primary);
}

.chapter-time {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--gold-bright);
  padding: 0.2rem 0.4rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  flex-shrink: 0;
}

.chapter-meta strong {
  display: block;
  font-size: 0.8125rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.chapter-meta small {
  display: block;
  font-size: 0.6875rem;
  color: #94A3B8;
  margin-top: 1px;
}

.video-specs-card {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.video-specs-list li {
  display: flex;
  justify-content: space-between;
  color: #94A3B8;
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.video-specs-list li strong {
  color: #FFFFFF;
}

.video-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}



/* =========================================
   HERO
========================================= */

.qq-hero-slider {
    position: relative;

    width: 100%;
    height: 820px;

    overflow: hidden;

    background: #111;

    color: #fff;
}


/* =========================================
   SLIDE
========================================= */

.qq-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.qq-slide.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   IMAGE
========================================= */

.qq-slide-image {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.08);

    transition:
        transform 7s ease;
}

.qq-slide.active .qq-slide-image {
    transform: scale(1);
}


/* =========================================
   DARK OVERLAY
========================================= */

.qq-slide-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.80) 35%,
            rgba(0,0,0,.48) 65%,
            rgba(0,0,0,.62) 100%
        );
}


/* Additional bottom shadow */

.qq-slide-overlay::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 35%;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.65)
        );
}


/* =========================================
   INNER
========================================= */

.qq-hero-inner {
    position: relative;

    z-index: 5;

    width: min(1240px, 90%);

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;
}


/* =========================================
   CONTENT
========================================= */

.qq-hero-content {
    max-width: 800px;

    padding-top: 30px;
}


/* =========================================
   EYEBROW
========================================= */

.qq-eyebrow {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: #c5a059;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.qq-eyebrow::before {

    content: "";

    width: 45px;

    height: 2px;

    background: #c5a059;
}


/* =========================================
   HEADING
========================================= */

.qq-hero-content h1 {

    margin: 0 0 28px;

    color: #fff;

    font-size: clamp(48px, 6vw, 86px);

    line-height: .98;

    font-weight: 800;

    letter-spacing: -3px;
}

.qq-hero-content h1 span {

    color: #c5a059;
}


/* =========================================
   DESCRIPTION
========================================= */

.qq-hero-content p {

    max-width: 680px;

    margin: 0 0 35px;

    color: rgba(255,255,255,.78);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   BUTTONS
========================================= */

.qq-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.qq-btn {

    min-height: 58px;

    padding: 0 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.2px;

    transition: all .3s ease;
}


.qq-btn b {

    font-size: 19px;

    transition: transform .3s ease;
}


/* GOLD */

.qq-btn-gold {

    background: #c5a059;

    color: #111;

    border: 1px solid #c5a059;
}

.qq-btn-gold:hover {

    background: #fff;

    border-color: #fff;

    transform: translateY(-3px);
}

.qq-btn-gold:hover b {

    transform: translate(4px,-4px);
}


/* LIGHT */

.qq-btn-light {

    color: #fff;

    border: 1px solid rgba(255,255,255,.45);

    background: rgba(255,255,255,.04);

    backdrop-filter: blur(5px);
}

.qq-btn-light:hover {

    background: #fff;

    color: #111;

    border-color: #fff;

    transform: translateY(-3px);
}


/* =========================================
   TRUST
========================================= */

.qq-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 12px 28px;

    margin-top: 40px;
}

.qq-trust span {

    color: rgba(255,255,255,.72);

    font-size: 12px;

    font-weight: 600;
}

.qq-trust span::first-letter {

    color: #c5a059;
}


/* =========================================
   SLIDER CONTROLS
========================================= */

.qq-slider-controls {

    position: absolute;

    z-index: 10;

    right: 5%;

    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 20px;
}


.qq-arrow {

    width: 48px;

    height: 48px;

    border: 1px solid rgba(255,255,255,.35);

    background: rgba(0,0,0,.25);

    color: #fff;

    cursor: pointer;

    font-size: 18px;

    transition: .3s ease;
}

.qq-arrow:hover {

    background: #c5a059;

    border-color: #c5a059;

    color: #111;
}


.qq-dots {

    display: flex;

    gap: 8px;
}


.qq-dot {

    width: 30px;

    height: 3px;

    padding: 0;

    border: 0;

    background: rgba(255,255,255,.35);

    cursor: pointer;

    transition: .3s ease;
}


.qq-dot.active {

    width: 55px;

    background: #c5a059;
}


/* =========================================
   NUMBER
========================================= */

.qq-slide-number {

    position: absolute;

    z-index: 10;

    right: 5%;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.45);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.qq-slide-number .qq-current {

    color: #c5a059;

    font-size: 18px;
}


.qq-slide-number i {

    width: 35px;

    height: 1px;

    background: rgba(255,255,255,.35);
}


/* =========================================
   SCROLL
========================================= */

.qq-scroll-down {

    position: absolute;

    z-index: 10;

    left: 5%;

    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 12px;
}


.qq-scroll-down span {

    display: block;

    width: 38px;

    height: 1px;

    background: #c5a059;
}


.qq-scroll-down small {

    color: rgba(255,255,255,.5);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   ANIMATION
========================================= */

.qq-slide.active .qq-hero-content {

    animation:
        qqContent .9s ease both;
}


@keyframes qqContent {

    from {

        opacity: 0;

        transform: translateY(35px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:900px) {

    .qq-hero-slider {

        height: 720px;
    }

    .qq-hero-inner {

        width: 88%;
    }

    .qq-hero-content {

        max-width: 700px;
    }

    .qq-hero-content h1 {

        font-size: clamp(45px, 9vw, 68px);

        letter-spacing: -2px;
    }

    .qq-hero-content p {

        font-size: 16px;

        max-width: 580px;
    }

    .qq-slide-number {

        display: none;
    }

}


@media(max-width:600px) {

    .qq-hero-slider {

        height: 700px;
    }

    .qq-slide-image {

        background-position: 65% center;
    }

    .qq-slide-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.90),
                rgba(0,0,0,.64)
            );
    }

    .qq-hero-content h1 {

        font-size: 44px;

        line-height: 1.02;

        margin-bottom: 20px;
    }

    .qq-eyebrow {

        font-size: 9px;

        letter-spacing: 1.5px;

        margin-bottom: 18px;
    }

    .qq-eyebrow::before {

        width: 25px;
    }

    .qq-hero-content p {

        font-size: 14px;

        line-height: 1.6;

        margin-bottom: 25px;
    }

    .qq-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .qq-btn {

        width: 100%;

        min-height: 53px;
    }

    .qq-trust {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        margin-top: 28px;
    }

    .qq-trust span {

        font-size: 9px;
    }

    .qq-slider-controls {

        right: auto;

        left: 6%;

        bottom: 22px;
    }

    .qq-scroll-down {

        display: none;
    }

}

/* ---------------------------------------------------- innerpage css ------------------------------*/
/* =========================================================
   MARSHALL TRADE SERVICES
   ABOUT US / INNER PAGE STYLES
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL INNER PAGE
--------------------------------------------------------- */

.mts-page-banner,
.mts-page-banner *,
#about-intro,
#about-intro *,
#why-choose-us,
#why-choose-us *,
#process,
#process *,
.mts-bottom-cta,
.mts-bottom-cta * {
    box-sizing: border-box;
}

.mts-page-banner {
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 170px 30px 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .52)
        ),
        url("../images/commercial.png")
        center center / cover no-repeat;
}

.mts-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(197, 160, 89, .12),
            transparent 45%
        );
    pointer-events: none;
}

.mts-page-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mts-page-banner h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.mts-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;

    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 500;
}

.mts-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color .3s ease;
}

.mts-breadcrumb a:hover {
    color: #c5a059;
}

.mts-breadcrumb span {
    color: #c5a059;
    font-weight: 700;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    position: relative;
    width: 100%;
    padding: 110px 30px;
    background: #fff;
}

.section-dark {
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(197, 160, 89, .08),
            transparent 30%
        ),
        #1a1d23;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {
    max-width: 760px;
    margin: 0 auto 65px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: #c5a059;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: #c5a059;
}

.eyebrow-light {
    color: #c5a059;
}

.section-header h2 {
    margin: 0 0 18px;

    color: #1a1d23;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.8px;
}

.section-dark .section-header h2 {
    color: #fff;
}

.section-header p {
    margin: 0;

    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, .68);
}


/* =========================================================
   ABOUT INTRO
========================================================= */

#about-intro {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 85px;
}


/* ---------------------------------------------------------
   ABOUT IMAGE
--------------------------------------------------------- */

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.about-main-img {
    display: block;
    width: 100%;
    height: 530px;

    object-fit: cover;
    object-position: center;

    border-radius: 3px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .16);
}

.about-image-wrapper::before {
    content: "";
    position: absolute;

    width: 90px;
    height: 90px;

    top: -18px;
    left: -18px;

    border-top: 3px solid #c5a059;
    border-left: 3px solid #c5a059;

    z-index: 2;
}

.about-image-wrapper::after {
    content: "";
    position: absolute;

    width: 90px;
    height: 90px;

    right: -18px;
    bottom: -18px;

    border-right: 3px solid #c5a059;
    border-bottom: 3px solid #c5a059;

    z-index: 2;
}


/* ---------------------------------------------------------
   ABOUT BADGE
--------------------------------------------------------- */

.about-accent-badge {
    position: absolute;
    z-index: 4;

    right: -35px;
    bottom: 35px;

    width: 205px;
    min-height: 150px;

    padding: 25px 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #1a1d23;
    border-left: 4px solid #c5a059;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.about-badge-number {
    margin-bottom: 7px;

    color: #c5a059;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
}

.about-badge-label {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
}


/* ---------------------------------------------------------
   ABOUT CONTENT
--------------------------------------------------------- */

.about-grid > .wp-block-group,
.about-grid > div:not(.about-image-wrapper) {
    min-width: 0;
}

.about-grid > div:not(.about-image-wrapper) p {
    margin: 0 0 20px;

    color: #666;
    font-size: 16px;
    line-height: 1.9;
}

.about-grid > div:not(.about-image-wrapper) h2,
.about-grid > div:not(.about-image-wrapper) h3,
.about-grid > div:not(.about-image-wrapper) h4 {
    margin: 0 0 18px;

    color: #1a1d23;
    line-height: 1.25;
    font-weight: 800;
}

.about-grid > div:not(.about-image-wrapper) h2 {
    font-size: 40px;
}

.about-grid > div:not(.about-image-wrapper) h3 {
    font-size: 28px;
}

.about-grid > div:not(.about-image-wrapper) ul {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.about-grid > div:not(.about-image-wrapper) li {
    position: relative;

    margin-bottom: 12px;
    padding-left: 28px;

    color: #555;
    line-height: 1.7;
}

.about-grid > div:not(.about-image-wrapper) li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;

    color: #c5a059;
    font-weight: 800;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

#why-choose-us {
    overflow: hidden;
}

#why-choose-us::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(197, 160, 89, .12);
    border-radius: 50%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;

    background: rgba(255, 255, 255, .10);

    border-top: 1px solid rgba(255, 255, 255, .10);
    border-left: 1px solid rgba(255, 255, 255, .10);
}

.why-item {
    position: relative;

    min-height: 250px;
    padding: 38px 35px;

    background: #1a1d23;

    border-right: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);

    transition:
        transform .35s ease,
        background .35s ease;
}

.why-item::after {
    content: "";

    position: absolute;
    left: 35px;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #c5a059;

    transition: width .35s ease;
}

.why-item:hover {
    background: #20242b;
    transform: translateY(-5px);
}

.why-item:hover::after {
    width: 55px;
}

.why-number {
    margin-bottom: 28px;

    color: #c5a059;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.why-title {
    margin: 0 0 15px;

    color: #fff;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.why-desc {
    margin: 0;

    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   PROCESS / HOW WE WORK
========================================================= */

#process {
    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #f8f8f7 100%
        );
}

.process-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-grid::before {
    content: "";

    position: absolute;

    top: 40px;
    left: 12%;
    right: 12%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d8c7a4,
            transparent
        );

    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;

    padding: 0 20px 20px;

    text-align: center;
}

.process-step-num {
    position: relative;

    width: 80px;
    height: 80px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1a1d23;
    background: #fff;

    border: 1px solid #c5a059;
    border-radius: 50%;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 0 0 10px #f8f8f7;
}

.process-step-title {
    margin: 0 0 14px;

    color: #1a1d23;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.process-step-desc {
    margin: 0;

    color: #707070;
    font-size: 14px;
    line-height: 1.8;
}

.process-empty {
    padding: 40px;
    text-align: center;

    color: #777;
    background: #f5f5f4;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.mts-bottom-cta {
    position: relative;
    overflow: hidden;

    padding: 75px 30px;

    background:
        linear-gradient(
            110deg,
            #15181d,
            #1f232a
        );

    color: #fff;
}

.mts-bottom-cta::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -180px;
    right: -100px;

    border: 1px solid rgba(197, 160, 89, .2);
    border-radius: 50%;
}

.mts-bottom-cta::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -150px;
    left: 5%;

    border: 1px solid rgba(197, 160, 89, .12);
    border-radius: 50%;
}

.mts-bottom-cta-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.mts-bottom-cta h2 {
    margin: 0 0 12px;

    color: #fff;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.2;
    font-weight: 800;
}

.mts-bottom-cta p {
    max-width: 680px;

    margin: 0;

    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    line-height: 1.7;
}

.mts-bottom-cta-button {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    min-height: 55px;
    padding: 0 30px;

    color: #1a1d23;
    background: #c5a059;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;

    border: 1px solid #c5a059;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.mts-bottom-cta-button:hover {
    color: #fff;
    background: transparent;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .25);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal-fade {
    animation: mtsFadeUp .7s ease both;
}

@keyframes mtsFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   WORDPRESS CONTENT FIXES
========================================================= */

.about-grid .wp-block-image {
    margin: 0;
}

.about-grid img {
    max-width: 100%;
}

.about-grid iframe,
.about-grid video {
    max-width: 100%;
}

.about-grid table {
    width: 100%;
    border-collapse: collapse;
}

.about-grid strong {
    color: #1a1d23;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .mts-page-banner {
        min-height: 450px;
        padding: 150px 25px 110px;
    }

    .section {
        padding: 90px 25px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
    }

    .about-main-img {
        height: 460px;
    }

    .about-accent-badge {
        right: -20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 55px;
    }

    .process-grid::before {
        display: none;
    }

    .mts-bottom-cta-inner {
        align-items: flex-start;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mts-page-banner {
        min-height: 390px;
        padding: 135px 20px 90px;
    }

    .mts-page-banner h1 {
        font-size: 38px;
        letter-spacing: -.8px;
    }

    .mts-breadcrumb {
        font-size: 13px;
    }


    /* GENERAL */

    .section {
        padding: 70px 20px;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .eyebrow::before,
    .eyebrow::after {
        width: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* ABOUT */

    #about-intro {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 55px;
    }

    .about-image-wrapper {
        width: calc(100% - 12px);
        max-width: none;
        margin-left: 6px;
    }

    .about-main-img {
        height: 380px;
    }

    .about-image-wrapper::before {
        width: 60px;
        height: 60px;

        top: -10px;
        left: -10px;
    }

    .about-image-wrapper::after {
        width: 60px;
        height: 60px;

        right: -10px;
        bottom: -10px;
    }

    .about-accent-badge {
        right: -5px;
        bottom: 20px;

        width: 175px;
        min-height: 125px;

        padding: 18px;
    }

    .about-badge-number {
        font-size: 31px;
    }

    .about-badge-label {
        font-size: 11px;
    }

    .about-grid > div:not(.about-image-wrapper) h2 {
        font-size: 32px;
    }

    .about-grid > div:not(.about-image-wrapper) h3 {
        font-size: 25px;
    }

    .about-grid > div:not(.about-image-wrapper) p {
        font-size: 15px;
        line-height: 1.8;
    }


    /* WHY CHOOSE */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        min-height: auto;
        padding: 32px 25px;
    }

    .why-item::after {
        left: 25px;
    }

    .why-number {
        margin-bottom: 20px;
    }

    .why-title {
        font-size: 20px;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        padding: 0 10px 10px;
    }

    .process-step-num {
        width: 70px;
        height: 70px;

        margin-bottom: 25px;

        box-shadow:
            0 0 0 8px #f8f8f7;
    }

    .process-step-title {
        font-size: 19px;
    }

    .process-step-desc {
        max-width: 330px;
        margin: 0 auto;
    }


    /* CTA */

    .mts-bottom-cta {
        padding: 60px 20px;
    }

    .mts-bottom-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .mts-bottom-cta h2 {
        font-size: 30px;
    }

    .mts-bottom-cta p {
        font-size: 14px;
    }

    .mts-bottom-cta-button {
        width: 100%;
        min-height: 54px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mts-page-banner {
        min-height: 350px;
        padding: 120px 15px 75px;
    }

    .mts-page-banner h1 {
        font-size: 32px;
    }

    .section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-main-img {
        height: 320px;
    }

    .about-accent-badge {
        right: -5px;
        bottom: 15px;

        width: 155px;
        min-height: 110px;
        padding: 15px;
    }

    .about-badge-number {
        font-size: 27px;
    }

    .about-badge-label {
        font-size: 10px;
    }

    .section-header h2 {
        font-size: 29px;
    }

    .why-item {
        padding: 28px 20px;
    }

    .mts-bottom-cta h2 {
        font-size: 27px;
    }
}

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */

#testimonials {
    position: relative;
    padding: 100px 0;
    background: #1a1d23;
    color: #fff;
    overflow: hidden;
}

/* Subtle background decoration */
#testimonials::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -150px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.05);
    pointer-events: none;
}

#testimonials::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -120px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.04);
    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

#testimonials .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

#testimonials .section-header {
    max-width: 760px;
    margin: 0 auto 55px;
}

#testimonials .text-center {
    text-align: center;
}

#testimonials .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #c5a059;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
}

#testimonials .section-header h2,
#testimonials #testimonial-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

#testimonials .section-header p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   TESTIMONIAL GRID
   ========================================================= */

#testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}


/* =========================================================
   TESTIMONIAL CARD
   ========================================================= */

#testimonials .testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 34px 32px 30px;
    background: #22262d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Gold top line */
#testimonials .testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #c5a059;
    transition: width 0.4s ease;
}

#testimonials .testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

#testimonials .testimonial-card:hover::before {
    width: 100%;
}


/* =========================================================
   QUOTE
   ========================================================= */

#testimonials .testimonial-quote {
    position: relative;
    flex: 1;
    padding-top: 38px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.85;
}

/* Big quotation mark */
#testimonials .testimonial-quote::before {
    content: "“";
    position: absolute;
    top: -15px;
    left: -3px;
    color: #c5a059;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.85;
}

#testimonials .testimonial-quote p {
    margin: 0 0 12px;
}

#testimonials .testimonial-quote p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   AUTHOR BOX
   ========================================================= */

#testimonials .testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   AVATAR
   ========================================================= */

#testimonials .testimonial-avatar {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: #c5a059;
    border: 2px solid rgba(197, 160, 89, 0.35);
    color: #1a1d23;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#testimonials .testimonial-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   AUTHOR NAME
   ========================================================= */

#testimonials .testimonial-author-name {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   AUTHOR ROLE
   ========================================================= */

#testimonials .testimonial-author-role {
    color: #c5a059;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

#testimonials .reveal-fade {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   LARGE TABLET
   992px - 1199px
   ========================================================= */

@media (max-width: 1199px) {

    #testimonials {
        padding: 90px 0;
    }

    #testimonials .container {
        max-width: 1000px;
    }

    #testimonials .testimonials-grid {
        gap: 22px;
    }

    #testimonials .testimonial-card {
        padding: 30px 27px 28px;
    }

}


/* =========================================================
   TABLET
   768px - 991px
   ========================================================= */

@media (max-width: 991px) {

    #testimonials {
        padding: 80px 0;
    }

    #testimonials .section-header {
        margin-bottom: 45px;
    }

    #testimonials .section-header h2,
    #testimonials #testimonial-title {
        font-size: 38px;
    }

    #testimonials .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    #testimonials .testimonial-card {
        min-height: 290px;
        padding: 30px 26px 27px;
    }

}


/* =========================================================
   MOBILE
   576px - 767px
   ========================================================= */

@media (max-width: 767px) {

    #testimonials {
        padding: 70px 0;
    }

    #testimonials .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    #testimonials .section-header {
        margin-bottom: 38px;
    }

    #testimonials .eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
    }

    #testimonials .section-header h2,
    #testimonials #testimonial-title {
        font-size: 32px;
        line-height: 1.2;
    }

    #testimonials .section-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    #testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #testimonials .testimonial-card {
        min-height: auto;
        padding: 29px 24px 25px;
    }

    #testimonials .testimonial-quote {
        padding-top: 34px;
        font-size: 14px;
        line-height: 1.8;
    }

    #testimonials .testimonial-quote::before {
        font-size: 64px;
    }

    #testimonials .testimonial-author-box {
        margin-top: 24px;
        padding-top: 19px;
    }

}


/* =========================================================
   SMALL MOBILE
   BELOW 576px
   ========================================================= */

@media (max-width: 575px) {

    #testimonials {
        padding: 60px 0;
    }

    #testimonials .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #testimonials .section-header {
        margin-bottom: 32px;
    }

    #testimonials .eyebrow {
        margin-bottom: 11px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    #testimonials .section-header h2,
    #testimonials #testimonial-title {
        font-size: 28px;
    }

    #testimonials .section-header p {
        font-size: 13px;
    }

    #testimonials .testimonials-grid {
        gap: 15px;
    }

    #testimonials .testimonial-card {
        padding: 25px 21px 23px;
        border-radius: 3px;
    }

    #testimonials .testimonial-quote {
        padding-top: 31px;
        font-size: 14px;
        line-height: 1.75;
    }

    #testimonials .testimonial-quote::before {
        top: -12px;
        font-size: 58px;
    }

    #testimonials .testimonial-author-box {
        gap: 12px;
        margin-top: 21px;
        padding-top: 17px;
    }

    #testimonials .testimonial-avatar {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 13px;
    }

    #testimonials .testimonial-author-name {
        font-size: 14px;
    }

    #testimonials .testimonial-author-role {
        font-size: 11px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   BELOW 380px
   ========================================================= */

@media (max-width: 379px) {

    #testimonials {
        padding: 50px 0;
    }

    #testimonials .section-header h2,
    #testimonials #testimonial-title {
        font-size: 25px;
    }

    #testimonials .testimonial-card {
        padding: 23px 18px 21px;
    }

    #testimonials .testimonial-quote {
        font-size: 13px;
    }

    #testimonials .testimonial-avatar {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

}



/* ==========================================================
   QUICK & QUALITY CONSTRUCTION
   CONTACT FORM 7
   ========================================================== */

.qqc-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    color: #2b2b2b;
}

/* Box sizing */
.qqc-form *,
.qqc-form *::before,
.qqc-form *::after {
    box-sizing: border-box;
}


/* ==========================================================
   FORM ROW
   ========================================================== */

.qqc-form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================
   FORM GROUP
   ========================================================== */

.qqc-form-group {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}


/* Remove CF7 paragraph spacing */
.qqc-form p {
    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================
   LABEL
   ========================================================== */

.qqc-form label {
    display: block !important;
    width: 100% !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}

.qqc-form label span {
    color: #c59a4a !important;
}


/* Required star */
.qqc-form label span {
    color: #c59a4a !important;
    font-weight: 700 !important;
}


/* ==========================================================
   INPUTS
   ========================================================== */

.qqc-form input[type="text"],
.qqc-form input[type="email"],
.qqc-form input[type="tel"],
.qqc-form select,
.qqc-form textarea {

    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;

    padding: 14px 16px !important;

    border: 1px solid #dddddd !important;
    border-radius: 6px !important;

    background: #ffffff !important;

    color: #333333 !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 400 !important;

    line-height: 1.5 !important;

    outline: none !important;

    box-shadow: none !important;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease !important;
}


/* ==========================================================
   INPUT HEIGHT
   ========================================================== */

.qqc-form input[type="text"],
.qqc-form input[type="email"],
.qqc-form input[type="tel"],
.qqc-form select {

    height: 54px !important;
}


/* ==========================================================
   TEXTAREA
   ========================================================== */

.qqc-form textarea {

    min-height: 145px !important;
    height: 145px !important;

    resize: vertical !important;
}


/* ==========================================================
   PLACEHOLDER
   ========================================================== */

.qqc-form input::placeholder,
.qqc-form textarea::placeholder {

    color: #8a8a8a !important;

    opacity: 1 !important;
}


/* ==========================================================
   SELECT
   ========================================================== */

.qqc-form select {

    color: #333333 !important;

    cursor: pointer !important;

    appearance: auto !important;
    -webkit-appearance: auto !important;
}


/* ==========================================================
   FOCUS
   ========================================================== */

.qqc-form input[type="text"]:focus,
.qqc-form input[type="email"]:focus,
.qqc-form input[type="tel"]:focus,
.qqc-form select:focus,
.qqc-form textarea:focus {

    border-color: #c59a4a !important;

    background: #ffffff !important;

    color: #222222 !important;

    outline: none !important;

    box-shadow:
        0 0 0 3px rgba(197, 154, 74, 0.12) !important;
}


/* ==========================================================
   FULL WIDTH
   ========================================================== */

.qqc-form .qqc-full {

    width: 100% !important;
}


/* ==========================================================
   SUBMIT AREA
   ========================================================== */

.qqc-submit {

    width: 100% !important;

    margin: 5px 0 0 0 !important;
    padding: 0 !important;
}


/* ==========================================================
   SUBMIT BUTTON
   ========================================================== */

.qqc-form input[type="submit"] {

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 205px !important;

    height: 54px !important;

    margin: 0 !important;
    padding: 0 30px !important;

    border: 0 !important;
    border-radius: 6px !important;

    background: #c59a4a !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
}


/* Button hover */

.qqc-form input[type="submit"]:hover {

    background: #aa833d !important;

    color: #ffffff !important;

    transform: translateY(-2px) !important;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12) !important;
}


/* Button active */

.qqc-form input[type="submit"]:active {

    transform: translateY(0) !important;

    box-shadow: none !important;
}


/* ==========================================================
   CF7 VALIDATION
   ========================================================== */

.qqc-form input.wpcf7-not-valid,
.qqc-form select.wpcf7-not-valid,
.qqc-form textarea.wpcf7-not-valid {

    border-color: #c0392b !important;

    background: #fffafa !important;
}


/* Error text */

.qqc-form .wpcf7-not-valid-tip {

    display: block !important;

    margin: 5px 0 0 0 !important;

    padding: 0 !important;

    color: #c0392b !important;

    font-size: 12px !important;
    font-weight: 500 !important;
}


/* ==========================================================
   CF7 RESPONSE MESSAGE
   ========================================================== */

.qqc-form ~ .wpcf7-response-output {

    margin: 20px 0 0 0 !important;

    padding: 13px 16px !important;

    border-radius: 6px !important;

    font-size: 14px !important;

    line-height: 1.5 !important;

    color: #333333 !important;
}


/* ==========================================================
   SPINNER
   ========================================================== */

.qqc-form .wpcf7-spinner {

    margin: 0 0 0 10px !important;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media screen and (max-width: 768px) {

    .qqc-form-row {

        grid-template-columns: 1fr !important;

        gap: 0 !important;
    }


    .qqc-form-group {

        margin-bottom: 18px !important;
    }


    .qqc-form input[type="text"],
    .qqc-form input[type="email"],
    .qqc-form input[type="tel"],
    .qqc-form select {

        height: 52px !important;
    }


    .qqc-form textarea {

        min-height: 135px !important;

        height: 135px !important;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media screen and (max-width: 480px) {

    .qqc-form {

        width: 100% !important;
    }


    .qqc-form-row {

        display: block !important;

        width: 100% !important;
    }


    .qqc-form-group {

        width: 100% !important;

        margin-bottom: 16px !important;
    }


    .qqc-form label {

        font-size: 13px !important;

        margin-bottom: 7px !important;
    }


    .qqc-form input[type="text"],
    .qqc-form input[type="email"],
    .qqc-form input[type="tel"],
    .qqc-form select {

        width: 100% !important;

        height: 50px !important;

        padding: 0 14px !important;

        font-size: 14px !important;
    }


    .qqc-form textarea {

        width: 100% !important;

        min-height: 120px !important;

        height: 120px !important;

        padding: 13px 14px !important;

        font-size: 14px !important;
    }


    .qqc-submit {

        width: 100% !important;

        margin-top: 5px !important;
    }


    .qqc-form input[type="submit"] {

        width: 100% !important;

        min-width: 100% !important;

        height: 52px !important;

        padding: 0 20px !important;

        font-size: 14px !important;
    }
}


/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media screen and (max-width: 360px) {

    .qqc-form .qqc-form-group {

        margin-bottom: 14px !important;
    }


    .qqc-form input[type="text"],
    .qqc-form input[type="email"],
    .qqc-form input[type="tel"],
    .qqc-form select {

        height: 48px !important;
    }


    .qqc-form textarea {

        min-height: 110px !important;

        height: 110px !important;
    }
}



/* =========================================================
   MARSHALL TRADE SERVICES
   CONTACT PAGE
   ========================================================= */

.mts-contact-page {
    background: #1a1d23;
    color: #ffffff;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.mts-contact-breadcrumb {
    background:
        linear-gradient(
            rgba(10, 12, 16, .78),
            rgba(10, 12, 16, .78)
        ),
        url('<?php echo esc_url(get_template_directory_uri() . '/assets/images/project2.jpeg'); ?>')
        center/cover no-repeat;

    padding: 160px 20px;
    text-align: center;
    color: #ffffff;
}

.mts-contact-breadcrumb h1 {
    margin: 0 0 12px;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.mts-breadcrumb {
    font-size: 15px;
    color: #b9bec5;
}

.mts-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: .25s ease;
}

.mts-breadcrumb a:hover {
    color: #c5a059;
}

.mts-breadcrumb span {
    margin: 0 8px;
    color: #777d86;
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.mts-contact-section {
    padding: 90px 20px;
    background: #1a1d23;
}

.mts-contact-container {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.mts-contact-intro {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.mts-section-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #c5a059;

    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.mts-contact-intro h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 40px;
    line-height: 1.25;
    font-weight: 800;
}

.mts-contact-intro p {
    margin: 0;

    color: #b9bec5;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT GRID
   ========================================================= */

.mts-contact-grid {
    display: grid;

    grid-template-columns: 38% 62%;

    gap: 30px;

    align-items: stretch;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.mts-contact-info {
    position: relative;
    overflow: hidden;

    background: #22262d;

    padding: 45px 38px;

    border: 1px solid #30353e;
    border-radius: 8px;

    color: #ffffff;

    box-shadow: 0 15px 45px rgba(0,0,0,.18);
}

.mts-contact-info:after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -110px;
    bottom: -110px;

    border-radius: 50%;

    border: 40px solid rgba(197,160,89,.07);
}

.mts-contact-info h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 800;
}

.mts-contact-info > p {
    margin: 0 0 35px;

    color: #b9bec5;

    line-height: 1.75;
}


/* =========================================================
   INFO ITEM
   ========================================================= */

.mts-info-item {
    position: relative;
    z-index: 2;

    display: flex;

    gap: 17px;

    margin-bottom: 27px;
}

.mts-info-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c5a059;

    color: #1a1d23;

    border-radius: 5px;

    font-size: 19px;
    font-weight: 700;
}

.mts-info-content strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .8px;
}

.mts-info-content a,
.mts-info-content span {
    color: #b9bec5;

    text-decoration: none;

    font-size: 15px;

    line-height: 1.6;

    transition: .25s ease;
}

.mts-info-content a:hover {
    color: #c5a059;
}


/* =========================================================
   FORM BOX
   ========================================================= */

.mts-contact-form-box {
    background: #22262d;

    padding: 45px;

    border: 1px solid #30353e;
    border-radius: 8px;

    box-shadow: 0 15px 45px rgba(0,0,0,.18);
}

.mts-contact-form-box h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 29px;
    font-weight: 800;
}

.mts-form-intro {
    margin: 0 0 30px;

    color: #b9bec5;

    line-height: 1.7;
}


/* =========================================================
   FORM
   ========================================================= */

.mts-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.mts-form-group {
    margin-bottom: 19px;
}

.mts-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}

.mts-form-group input,
.mts-form-group textarea,
.mts-form-group select {

    width: 100%;

    box-sizing: border-box;

    background: #1a1d23;

    border: 1px solid #353a43;

    border-radius: 4px;

    padding: 14px 15px;

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition: .25s ease;
}

.mts-form-group input,
.mts-form-group select {
    height: 51px;
}

.mts-form-group textarea {
    min-height: 140px;

    resize: vertical;
}

.mts-form-group input::placeholder,
.mts-form-group textarea::placeholder {
    color: #777e88;
}

.mts-form-group select {
    color: #b9bec5;
}

.mts-form-group select option {
    background: #1a1d23;
    color: #ffffff;
}

.mts-form-group input:focus,
.mts-form-group textarea:focus,
.mts-form-group select:focus {

    border-color: #c5a059;

    box-shadow:
        0 0 0 3px rgba(197,160,89,.10);
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.mts-submit {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #c5a059;

    color: #1a1d23;

    border: 0;

    padding: 15px 32px;

    border-radius: 4px;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition: .25s ease;
}

.mts-submit:hover {

    background: #ffffff;

    color: #1a1d23;

    transform: translateY(-2px);
}


/* =========================================================
   CTA
   ========================================================= */

.mts-contact-cta {

    margin-top: 35px;

    background: #c5a059;

    padding: 45px 40px;

    border-radius: 8px;

    color: #1a1d23;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

.mts-contact-cta h3 {

    margin: 0 0 8px;

    color: #1a1d23;

    font-size: 28px;
    font-weight: 800;
}

.mts-contact-cta p {

    margin: 0;

    color: rgba(26,29,35,.75);

    line-height: 1.6;
}

.mts-cta-button {

    display: inline-block;

    background: #1a1d23;

    color: #ffffff;

    padding: 14px 28px;

    border-radius: 4px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    white-space: nowrap;

    transition: .25s ease;
}

.mts-cta-button:hover {

    background: #ffffff;

    color: #1a1d23;
}


/* =========================================================
   MAP
   ========================================================= */

.mts-map-section {

    padding: 0 20px 90px;

    background: #1a1d23;
}

.mts-map-container {

    max-width: 1180px;

    margin: 0 auto;
}

.mts-map {

    width: 100%;

    height: 400px;

    display: block;

    border: 0;

    border-radius: 8px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .mts-contact-grid {
        grid-template-columns: 1fr;
    }

    .mts-contact-info {
        padding: 35px 28px;
    }

    .mts-contact-form-box {
        padding: 35px 28px;
    }

    .mts-contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .mts-contact-breadcrumb {
        padding: 90px 15px;
    }

    .mts-contact-breadcrumb h1 {
        font-size: 34px;
    }

    .mts-contact-section {
        padding: 60px 15px;
    }

    .mts-contact-intro {
        margin-bottom: 40px;
    }

    .mts-contact-intro h2 {
        font-size: 30px;
    }

    .mts-contact-intro p {
        font-size: 15px;
    }

    .mts-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .mts-contact-form-box {
        padding: 28px 20px;
    }

    .mts-contact-info {
        padding: 30px 22px;
    }

    .mts-contact-cta {
        padding: 35px 25px;
    }

    .mts-contact-cta h3 {
        font-size: 24px;
    }

    .mts-map {
        height: 320px;
    }
}





