/* ==========================================================================
   JP ELITE DEVELOPMENT -- Main Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

/* -- Reset & Base ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #111111;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* -- Variables ------------------------------------------------------------- */

:root {
  --black: #111111;
  --black-mid: #1c1c1c;
  --black-card: #171717;
  --gold: #C9A030;
  --gold-dark: #a8821a;
  --gold-light: #e0b844;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --nav-height: 72px;
  --container-max: 1240px;
  --section-pad: 96px;
}

/* -- Container ------------------------------------------------------------- */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* -- Section Padding ------------------------------------------------------- */

section {
  padding: var(--section-pad) 0;
}

/* -- Typography ------------------------------------------------------------ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.75;
}

.gold-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
}

/* -- Buttons --------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* -- Image Placeholder ----------------------------------------------------- */

.img-placeholder {
  width: 100%;
  background: var(--black-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.8rem;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 16px;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 160, 48, 0.2);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo-main span {
  color: var(--gold);
}

.nav-logo-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: rgba(201, 160, 48, 0.7);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
  padding: 10px 24px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.99);
  border-bottom: 1px solid rgba(201, 160, 48, 0.25);
  padding: 24px;
  z-index: 999;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-mobile ul li a {
  display: block;
  padding: 16px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}

.nav-mobile ul li a:hover {
  color: var(--gold);
}

.nav-mobile .btn {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  display: block;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Static image fallback (shows if no video file) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.88) 0%,
    rgba(17, 17, 17, 0.6) 60%,
    rgba(17, 17, 17, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 64px) 24px 96px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 820px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  color: var(--gold);
  font-style: normal;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
}

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

.hero-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-phone::before {
  content: '|';
  color: rgba(201, 160, 48, 0.4);
}

.hero-phone:hover {
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ==========================================================================
   LANDSCAPING FEATURE SECTION
   ========================================================================== */

.landscaping-feature {
  background: var(--black);
  border-bottom: 1px solid rgba(201, 160, 48, 0.12);
}

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

.lf-body {
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 24px;
  font-size: 1rem;
}

.lf-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lf-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.lf-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.lf-image-wrap {
  position: relative;
}

.lf-image-wrap img,
.lf-image-wrap .img-placeholder {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.lf-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}

.lf-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.lf-badge-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  text-align: center;
}

/* Featured service card */
.service-card--featured {
  border-top-color: var(--gold-light);
  background: #1a1600;
}

.service-card--featured .service-card-title {
  color: var(--gold);
}

.service-card--featured:hover {
  background: #241e00;
}

/* Responsive for lf-grid */
@media (max-width: 1024px) {
  .lf-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lf-image-wrap img,
  .lf-image-wrap .img-placeholder {
    height: 360px;
  }

  .lf-badge {
    bottom: -16px;
    left: 16px;
  }
}

/* ==========================================================================
   SERVICES OVERVIEW (Home)
   ========================================================================== */

.services-overview {
  background: #0d0d0d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 160, 48, 0.12);
  border: 1px solid rgba(201, 160, 48, 0.12);
  margin-top: 56px;
}

.service-card {
  background: var(--black-card);
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
  transition: background 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.service-card:hover {
  background: #1e1a12;
  transform: translateY(-3px);
  z-index: 1;
  position: relative;
}

.service-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
}

.service-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ==========================================================================
   ABOUT (Home)
   ========================================================================== */

.about {
  background: var(--black);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border: 2px solid rgba(201, 160, 48, 0.25);
  z-index: 0;
  pointer-events: none;
}

.about-image-wrap > * {
  position: relative;
  z-index: 1;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-image-wrap .img-placeholder {
  height: 520px;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-body {
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 40px;
  font-size: 1rem;
}

.trust-badges {
  display: flex;
  border: 1px solid rgba(201, 160, 48, 0.2);
}

.trust-badge {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(201, 160, 48, 0.2);
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  letter-spacing: 0.03em;
}

.trust-badge-label {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

/* ==========================================================================
   SERVICE AREA (Home)
   ========================================================================== */

.service-area {
  background: #0d0d0d;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.area-pill {
  padding: 10px 24px;
  border: 1px solid rgba(201, 160, 48, 0.35);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: all 0.2s;
}

.area-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 160, 48, 0.05);
}

/* ==========================================================================
   CTA SECTION (shared)
   ========================================================================== */

.cta-section {
  background: var(--black-card);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cta-body {
  color: var(--gray-light);
  max-width: 480px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.cta-phone:hover {
  color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #090909;
  border-top: 1px solid rgba(201, 160, 48, 0.18);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-logo-main span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.72rem;
  color: rgba(201, 160, 48, 0.6);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.footer-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 18px;
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 10px;
}

a.footer-contact-item:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 160, 48, 0.25);
  color: var(--gray);
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 160, 48, 0.06);
}

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */

.page-header {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.page-header-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-header-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1;
}

.page-header-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 620px;
  line-height: 1.75;
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.services-page {
  background: var(--black);
}

.service-block {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-block-inner.reverse {
  direction: rtl;
}

.service-block-inner.reverse > * {
  direction: ltr;
}

.service-block-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.service-block .img-placeholder {
  height: 420px;
}

.service-block-content {
  display: flex;
  flex-direction: column;
}

.service-block-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.8;
}

.service-block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.service-block-desc {
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 32px;
  font-size: 0.975rem;
}

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */

.before-after-section {
  background: #0d0d0d;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201, 160, 48, 0.1);
  border: 1px solid rgba(201, 160, 48, 0.1);
  margin-top: 56px;
}

.ba-pair {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.ba-image {
  position: relative;
  overflow: hidden;
}

.ba-image img,
.ba-image .img-placeholder {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.ba-image:hover img,
.ba-image:hover .img-placeholder {
  transform: scale(1.04);
}

.ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ba-label.before {
  background: rgba(17, 17, 17, 0.88);
  color: var(--gray-light);
}

.ba-label.after {
  background: rgba(201, 160, 48, 0.92);
  color: var(--black);
}

.gallery-grid-section {
  background: var(--black);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 56px;
}

.photo-grid-item {
  overflow: hidden;
  position: relative;
}

.photo-grid-item img,
.photo-grid-item .img-placeholder {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.photo-grid-item:hover img,
.photo-grid-item:hover .img-placeholder {
  transform: scale(1.05);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-section {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--black-card);
  padding: 48px;
  border: 1px solid rgba(201, 160, 48, 0.15);
  border-top: 3px solid var(--gold);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.975rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23C9A030' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-color: rgba(255, 255, 255, 0.04);
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: #1c1c1c;
  color: var(--white);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.contact-info-card {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  background: var(--black-card);
  border: 1px solid rgba(201, 160, 48, 0.2);
  border-top: 3px solid var(--gold);
  padding: 40px;
}

.contact-call-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-phone-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 28px;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.contact-phone-big:hover {
  color: var(--gold);
}

.contact-info-item {
  margin-bottom: 20px;
}

.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

a.contact-info-value:hover {
  color: var(--white);
}

.contact-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.contact-area-tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  border: 1px solid rgba(201, 160, 48, 0.25);
  color: var(--gray);
  font-family: 'Barlow', sans-serif;
}

.contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 24px 0;
}

.contact-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(201, 160, 48, 0.25);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}

.contact-fb-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 160, 48, 0.04);
}

/* ==========================================================================
   FADE-IN ANIMATIONS
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap::before { display: none; }

  .about-img,
  .about-image-wrap .img-placeholder { height: 360px; }

  .service-block-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-block-inner.reverse { direction: ltr; }

  .service-block-img,
  .service-block .img-placeholder { height: 300px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-card { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-height: 64px;
  }

  .nav-links,
  .nav-cta { display: none; }

  .nav-hamburger { display: flex; }

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

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

  .ba-image img,
  .ba-image .img-placeholder { height: 200px; }

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

  .photo-grid-item img,
  .photo-grid-item .img-placeholder { height: 200px; }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .cta-actions { align-items: flex-start; }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-wrap { padding: 28px 20px; }

  .trust-badges { flex-direction: column; }

  .trust-badge {
    border-right: none;
    border-bottom: 1px solid rgba(201, 160, 48, 0.2);
  }

  .trust-badge:last-child { border-bottom: none; }

  .hero-phone::before { display: none; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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