/* ==========================================================================
   SIVA CONSTRUCTION - MAIN STYLESHEET
   Clean, Modern, Organized & Responsive CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --gold: #c99b4d;
  --gold-hover: #b3873c;
  --gold-light: rgba(201, 155, 77, 0.15);
  --ink: #171716;
  --dark-bg: #111210;
  --dark-surface: #202020;
  --muted: #77736c;
  --line: #e8e5df;
  --white: #ffffff;
  --bg-light: #f8f7f4;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.18);
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* --------------------------------------------------------------------------
   2. CSS Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   3. Buttons & Component Controls
   -------------------------------------------------------------------------- */
.gold-button,
.quote-button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  padding: 13px 24px;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gold-button:hover,
.quote-button:hover {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 155, 77, 0.3);
}

.outline-button {
  display: inline-block;
  border: 1px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 20px;
  margin-left: 12px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.outline-button:hover {
  background-color: var(--white);
  color: var(--ink);
}

.dark-button {
  display: inline-block;
  background: #151515;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 13px 18px;
  margin-top: 14px;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

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

.small-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 10px 18px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.small-outline:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   4. Header & Global Navigation
   -------------------------------------------------------------------------- */
.site-header {
  height: 72px;
  background-color: var(--dark-bg);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 6.5%;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}

.brand-mark {
  font-size: 35px;
  color: var(--gold);
  line-height: 1;
}

.brand b {
  display: block;
  font-size: 18px;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-top: 4px;
  color: #aaa;
}

.main-nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav a {
  height: 72px;
  display: grid;
  place-items: center;
  position: relative;
  opacity: 0.85;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.main-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.main-nav a.active {
  opacity: 1;
  color: var(--gold);
}

.main-nav a.active::after {
  content: '';
  height: 2px;
  background-color: var(--gold);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.quote-button {
  margin-left: 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 24px;
  padding: 5px;
}

/* --------------------------------------------------------------------------
   5. Hero Section & Slider Controls
   -------------------------------------------------------------------------- */
.hero {
  height: 480px;
  width: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('siva 35.png') center/cover no-repeat;
  transform: scale(1.02);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--hero-glare-x, 50%) var(--hero-glare-y, 50%), rgba(255, 255, 255, 0.22) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hero:hover .hero-image::after {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1) 80%),
              linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 7.5%;
  top: 50%;
  transform: translateY(-45%) translateZ(40px);
  max-width: 480px;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.eyebrow,
.kicker {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 10px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(201, 155, 77, 0.25);
  animation: floatUpDownHero 4.5s ease-in-out infinite;
}

.hero-content > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.95);
  animation: floatSubtleHero 5s ease-in-out infinite 0.4s;
}

.hero-content > div:not(.hero-sub-line) {
  animation: floatUpDownHero 4.8s ease-in-out infinite 0.8s;
}

/* ==========================================================================
   HERO UP & DOWN FLOATING MOTION ANIMATION ENGINE
   ========================================================================== */

@keyframes floatUpDownHero {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSubtleHero {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes heroPulseBg {
  0%, 100% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes bounceScrollArrow {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.hero-sub-line {
  animation: floatSubtleHero 4.2s ease-in-out infinite 1.2s;
  display: inline-block;
  background: rgba(201, 155, 77, 0.15);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201, 155, 77, 0.3);
  margin-top: 14px;
}

/* Up & Down Scroll Indicator Tag at Hero Bottom */
.hero-scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
}

.scroll-arrow {
  font-size: 16px;
  color: var(--gold);
  animation: bounceScrollArrow 2s ease-in-out infinite;
}



.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.prev {
  left: 3%;
}

.next {
  right: 3%;
}

/* --------------------------------------------------------------------------
   6. Key Performance / Stats Bar
   -------------------------------------------------------------------------- */
.stats {
  height: 77px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  background-color: var(--white);
}

.stats > div {
  min-width: 190px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  transition: background-color var(--transition-fast);
}

.stats > div:hover {
  background-color: var(--bg-light);
}

.stats > div:first-child {
  border-left: 1px solid var(--line);
}

.stats strong {
  font-size: 28px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}

.stats span {
  color: #888;
  font-size: 12px;
}

.stats b {
  display: block;
  color: #202020;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

/* --------------------------------------------------------------------------
   7. General Section Utilities
   -------------------------------------------------------------------------- */
.section {
  max-width: 1130px;
  margin: 0 auto;
  padding: 44px 20px;
}

.section h2,
.about-copy h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 14px;
}

.centered {
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 330px;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.about-image img,
.about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: var(--radius-sm);
}

.about-image:hover img,
.about-image:hover video {
  transform: scale(1.02);
}

.about-copy > p:not(.kicker) {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 6px 0 16px;
}

/* Mission & Vision Layout */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mv-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  flex-shrink: 0;
}

.mv-header h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.mv-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.mv-divider {
  width: 1px;
  background-color: var(--line);
  align-self: stretch;
}

@media (max-width: 992px) {
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mv-divider {
    width: 100%;
    height: 1px;
  }
}

/* --------------------------------------------------------------------------
   9. Our Expertise Showcase Grid (7 Cards Matching Reference Design)
   -------------------------------------------------------------------------- */
.expertise-section {
  border-top: 1px solid var(--line);
  max-width: none;
  padding: 56px 3.5%;
  background-color: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 155, 77, 0.4);
}

.expertise-card-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: var(--bg-light);
}

.expertise-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.expertise-card:hover .expertise-card-img img {
  transform: scale(1.06);
}

.expertise-card-body {
  padding: 16px 12px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.expertise-card-body h3 {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.expertise-card-body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1300px) {
  .expertise-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .expertise-card-img {
    height: 130px;
  }
  .expertise-card-body {
    padding: 12px 10px 16px;
  }
  .expertise-card-body h3 {
    font-size: 14px;
  }
  .expertise-card-body p {
    font-size: 11.5px;
  }
}

@media (max-width: 440px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-card-grid {
    grid-template-columns: 1fr;
  }
}

.service-card-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.service-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 155, 77, 0.4);
}

.service-card-item:hover::before {
  opacity: 1;
}

.service-card-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.service-card-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--ink);
}

.service-card-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 22px 0;
  flex-grow: 1;
}

.service-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card-item:hover .service-card-link {
  color: var(--gold-hover);
  gap: 10px;
}

.services-feature-strip {
  text-align: center;
  background: #f5f3ec;
  border: 1px solid var(--line);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   9B. Full Services Page Styles (Services.html)
   -------------------------------------------------------------------------- */
.services-hero-banner {
  background-color: var(--white);
  padding: 60px 6.5% 45px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.services-hero-banner h1 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  margin: 10px 0 16px;
  color: var(--ink);
}

.services-hero-banner p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.service-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.service-pill-item:hover {
  background: var(--dark-bg);
  color: var(--white);
  border-color: var(--dark-bg);
}

.service-detail-section {
  padding: 70px 6.5%;
  border-bottom: 1px solid var(--line);
  background-color: var(--white);
}

.service-detail-section:nth-child(even) {
  background-color: var(--bg-light);
}

.service-detail-container {
  max-width: 1150px;
  margin: 0 auto;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-detail-image {
  height: 380px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.service-detail-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.03);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.service-detail-content h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 14px 0;
  color: var(--ink);
}

.service-tagline {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

@media (max-width: 580px) {
  .service-features-list {
    grid-template-columns: 1fr;
  }
}

.service-features-list li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.service-features-list li span.check-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}

.service-photo-showcase {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.service-photo-showcase h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 16px 0;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-photo-item {
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-photo-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.service-photo-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.service-cta-wrapper {
  margin-top: 28px;
}

/* --------------------------------------------------------------------------
   10. Featured Projects Section
   -------------------------------------------------------------------------- */
.projects {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
}

.section-title h2 {
  margin: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-grid article {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding-bottom: 10px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.project-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.project-grid img {
  height: 180px;
  transition: transform 0.4s ease;
}

.project-grid article:hover img {
  transform: scale(1.04);
}

.project-grid b,
.project-grid small {
  display: block;
  padding: 6px 12px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
}

.project-grid small {
  padding-top: 2px;
  font-family: var(--sans);
  font-size: 12px;
  color: #8b8881;
}

.project-grid i {
  margin: 0 7px;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   11. Before & After Comparison Feature
   -------------------------------------------------------------------------- */
.before-after {
  background-color: #252525;
  color: var(--white);
  padding: 12px 6.5%;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 35px;
  align-items: center;
}

.before-after h2 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 16px;
}

.before-after .kicker {
  color: #eee;
}

.before-after-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ba-card {
  position: relative;
  height: 230px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ba-card:hover img {
  transform: scale(1.04);
}

.ba-card .ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(20, 20, 20, 0.88);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 155, 77, 0.4);
  z-index: 3;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .before-after {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 5%;
  }
  .before-after-display {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ba-card {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .before-after-display {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* --------------------------------------------------------------------------
   12. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why {
  border-bottom: 1px solid var(--line);
}

.why h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 8px;
}

.why-grid strong {
  grid-row: span 2;
  font-size: 26px;
  color: var(--gold);
  font-weight: 400;
}

.why-grid b {
  font-size: 13px;
  color: var(--ink);
}

.why-grid p {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
  margin: 3px 0 0;
}

/* --------------------------------------------------------------------------
   13. Contact Call-to-Action Strip
   -------------------------------------------------------------------------- */
.contact-strip {
  background-color: var(--dark-surface);
  color: var(--white);
  padding: 20px 6.5%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-strip h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.contact-strip p {
  font-size: 13px;
  margin: 0;
  color: #bbb;
}

.contact-strip > div {
  margin-right: auto;
}

.whatsapp {
  background-color: var(--gold);
  color: var(--white);
  padding: 10px 15px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.whatsapp:hover {
  background-color: var(--gold-hover);
  transform: scale(1.05);
}

.hero-sub-line {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 14px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   13b. Process Workflow Steps ("How We Transform Your Space")
   -------------------------------------------------------------------------- */
.process-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 12px;
  text-align: center;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.process-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.process-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   13c. Gallery Preview (Masonry Grid)
   -------------------------------------------------------------------------- */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
  margin-bottom: 24px;
}

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  height: 160px;
}

.gallery-preview-item.tall {
  height: 220px;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* --------------------------------------------------------------------------
   13e. Gallery 2-Column Showcase Grid (Left 1 Image, Right 1 Image)
   -------------------------------------------------------------------------- */
.gallery-grid-section {
  padding: 56px 6.5%;
  background-color: var(--bg-light);
  border-top: 1px solid var(--line);
}

.gallery-two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.gallery-card-item {
  position: relative;
  height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.gallery-card-item:hover img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 28px 18px 14px;
  color: var(--white);
}

.gallery-card-overlay span {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .gallery-two-column-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .gallery-card-item {
    height: 240px;
  }
}

/* --------------------------------------------------------------------------
   13d. Customer Reviews Section
   -------------------------------------------------------------------------- */
.reviews-section {
  border-bottom: 1px solid var(--line);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.review-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 14px;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   13e. Contact Preview Section & Google Map
   -------------------------------------------------------------------------- */
.contact-preview-section {
  border-bottom: 1px solid var(--line);
}

.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 20px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
}

.contact-info-icon {
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}

.contact-info-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-info-text span {
  color: var(--muted);
  font-size: 13px;
}

.map-container {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   13f. Timeline / Journey Section
   -------------------------------------------------------------------------- */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 30px auto 0;
  padding-left: 30px;
  border-left: 2px solid var(--gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}

.timeline-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   13g. Values Section ("What We Believe")
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.value-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px;
}

.value-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   13h. Approach Section ("Our Approach")
   -------------------------------------------------------------------------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 25px;
}

.approach-card {
  background-color: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.approach-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.approach-step {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.approach-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}

.approach-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   13i. Compact Services Overview Tags
   -------------------------------------------------------------------------- */
.compact-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.compact-service-tag {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.compact-service-tag:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   13j. Icon Features Grid ("Why Clients Choose Us")
   -------------------------------------------------------------------------- */
.feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.feature-icon-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-icon-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-icon-symbol {
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}

.feature-icon-card b {
  font-size: 13px;
  color: var(--ink);
  display: block;
}

/* --------------------------------------------------------------------------
   14. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background-color: #171817;
  color: #ddd;
  padding: 32px 6.5% 42px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) 1.25fr;
  gap: 38px;
  font-size: 12px;
}

.site-footer .brand {
  color: var(--white);
}

.footer-brand p {
  font-size: 12px;
  color: #aaa;
  margin: 8px 0 10px;
}

.site-footer > div:not(.footer-brand):not(.gallery) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer b {
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.site-footer span {
  color: #aaa;
}

.gallery img {
  display: inline-block;
  width: 75px;
  height: 50px;
  margin-right: 3px;
  border-radius: 2px;
  object-fit: cover;
}

.copyright {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  border-top: 1px solid #303130;
  padding-top: 7px;
  color: #888;
  font-size: 11px;
}

/* --------------------------------------------------------------------------
   15. Responsive Media Queries
   -------------------------------------------------------------------------- */

/* Tablet & Mobile Screens (<= 800px) */
@media (max-width: 800px) {
  .site-header {
    height: 62px;
    padding: 0 5%;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    flex-direction: column;
    padding: 15px 5%;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    height: 44px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .quote-button {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero {
    height: 420px;
  }

  .hero-content {
    left: 8%;
    right: 5%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .stats {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stats > div,
  .stats > div:first-child {
    min-width: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 11px 12px;
  }

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

  .about-image {
    width: 100%;
    max-width: 290px;
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: 480px;
    margin: 0 auto;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .service-grid a {
    height: 120px;
  }

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

  .before-after {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 6.5%;
  }

  .compare {
    height: 190px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .contact-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .contact-strip {
    flex-wrap: wrap;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-brand,
  .gallery {
    grid-column: span 2;
  }
}

/* Small Mobile Devices (<= 460px) */
@media (max-width: 460px) {
  .hero h1 {
    font-size: 34px;
  }

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

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

  .feature-icon-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-strip .gold-button {
    order: 3;
  }

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

  .footer-brand,
  .gallery {
    grid-column: auto;
  }
}

/* --------------------------------------------------------------------------
   16. Scroll Reveal Animations (Entry Effects for Images & Text)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   17. Zigzag Alternating Projects Showcase Layout (About Page)
   -------------------------------------------------------------------------- */
.zigzag-projects-container {
  display: flex;
  flex-direction: column;
  gap: 54px;
  margin-top: 36px;
}

.zigzag-project-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.zigzag-project-row.reverse .zigzag-img-col {
  order: 2;
}

.zigzag-project-row.reverse .zigzag-text-col {
  order: 1;
}

.zigzag-img-col {
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.zigzag-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.zigzag-img-col:hover img {
  transform: scale(1.05);
}

.zigzag-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.zigzag-text-col h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 8px 0 12px;
}

.zigzag-text-col p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
}

@media (max-width: 800px) {
  .zigzag-project-row,
  .zigzag-project-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zigzag-project-row.reverse .zigzag-img-col {
    order: 1;
  }

  .zigzag-project-row.reverse .zigzag-text-col {
    order: 2;
  }

  .zigzag-img-col {
    height: 260px;
  }
}

/* --------------------------------------------------------------------------
   18. Full-screen Image Lightbox Modal & Interactive Slider
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0d0d0d;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 0;
  margin: 0;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.lightbox-img {
  max-width: 580px;
  max-height: 420px;
  width: 82vw;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0b0c0a;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.03) saturate(1.05);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.lightbox-img.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}

.lightbox-caption {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000000;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000000;
  transition: background 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.lightbox-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 15px;
}

.lightbox-next {
  right: 15px;
}

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

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

/* --------------------------------------------------------------------------
   19. Modern Services Card Grid & Feature Strip
   -------------------------------------------------------------------------- */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 28px;
}

.service-card-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.service-card-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.service-card-icon {
  font-size: 34px;
  margin-bottom: 14px;
  line-height: 1;
}

.service-card-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}

.service-card-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
  flex-grow: 1;
}

.service-card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.service-card-link:hover {
  color: var(--gold-hover);
}

.services-feature-strip {
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-transform: uppercase;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .services-card-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   18. Projects Page Styles (Projects.html)
   -------------------------------------------------------------------------- */
.projects-hero-banner {
  background-color: var(--white);
  padding: 60px 6.5% 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.projects-hero-banner h1 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  margin: 10px 0 16px;
  color: var(--ink);
}

.projects-hero-banner p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.project-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.project-filter-btn {
  background: var(--bg-light);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.project-filter-btn:hover {
  background: var(--dark-bg);
  color: var(--white);
  border-color: var(--dark-bg);
}

.project-filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.projects-portfolio-section {
  padding: 60px 6.5%;
  background-color: var(--bg-light);
}

.projects-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 350px));
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .projects-portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card-item {
    width: 100% !important;
    max-width: 100% !important;
  }
  .portfolio-card-image {
    height: 200px !important;
  }
}

.portfolio-card-item {
  width: 100%;
  max-width: 350px;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.portfolio-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  border-color: var(--gold);
}

.portfolio-card-image {
  width: 100%;
  height: 220px;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  border-radius: 14px 14px 0 0;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.03) saturate(1.05) brightness(1.01);
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.portfolio-card-item:hover .portfolio-card-image img {
  filter: contrast(1.06) saturate(1.08) brightness(1.03);
  transform: scale(1.05);
}

.portfolio-card-item:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17, 18, 16, 0.85);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.portfolio-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
}

.portfolio-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px;
  flex-grow: 1;
}

.portfolio-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.portfolio-card-specs li {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-card-specs li strong {
  color: var(--ink);
}

.portfolio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.portfolio-location {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.portfolio-action-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}

.portfolio-card-item:hover .portfolio-action-btn {
  gap: 8px;
}

.project-upload-note {
  max-width: 1200px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .project-upload-note {
    flex-direction: column;
    text-align: center;
  }
}

.project-upload-note h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--ink);
}

.project-upload-note p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   19. Gallery Page Bento Layout (Gallery.html)
   -------------------------------------------------------------------------- */
.gallery-hero-banner {
  background-color: var(--white);
  padding: 60px 6.5% 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.gallery-hero-banner h1 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  margin: 10px 0 16px;
  color: var(--ink);
}

.gallery-hero-banner p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.gallery-bento-section {
  padding: 50px 6.5%;
  background-color: var(--bg-light);
}

.gallery-bento-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

@media (max-width: 860px) {
  .gallery-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}

.bento-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: #111;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.bento-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.bento-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17, 18, 16, 0.85);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

/* Bento Placements */
.bento-large-project {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-kitchen {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-wardrobe {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-house {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-interior {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-exterior {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-bedroom {
  grid-column: span 1;
  grid-row: span 1;
}

@media (max-width: 860px) {
  .bento-large-project,
  .bento-kitchen,
  .bento-wardrobe,
  .bento-house,
  .bento-interior,
  .bento-exterior,
  .bento-bedroom {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* Additional Gallery Grid */
.gallery-full-section {
  padding: 60px 6.5%;
  background-color: var(--white);
  border-top: 1px solid var(--line);
}

.gallery-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto 0;
}

@media (max-width: 900px) {
  .gallery-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .gallery-grid-3col {
    grid-template-columns: 1fr;
  }
}

.gallery-photo-card {
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
  background: #111;
}

.gallery-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* --------------------------------------------------------------------------
   19B. Full Interactive Slide-by-Slide Photo Slider (Gallery Page)
   -------------------------------------------------------------------------- */
.gallery-slider-section {
  padding: 60px 6.5%;
  background-color: var(--white);
  border-top: 1px solid var(--line);
}

.gallery-slider-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.gallery-slider-main {
  height: 500px;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--dark-bg);
}

@media (max-width: 768px) {
  .gallery-slider-main {
    height: 330px;
  }
}

.gallery-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.gallery-slide-item.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.gallery-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(17, 18, 16, 0.75);
  backdrop-filter: blur(4px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.gallery-slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-slider-prev {
  left: 20px;
}

.gallery-slider-next {
  right: 20px;
}

.gallery-slide-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(17, 18, 16, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  z-index: 10;
}

.gallery-thumbnails-strip {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.gallery-thumb-item {
  width: 105px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity var(--transition-fast), border-color var(--transition-fast);
}

.gallery-thumb-item.active,
.gallery-thumb-item:hover {
  opacity: 1;
  border-color: var(--gold);
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   20. Reviews Page Styles (Reviews.html)
   -------------------------------------------------------------------------- */
.reviews-hero-banner {
  background-color: var(--white);
  padding: 60px 6.5% 45px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.reviews-hero-banner h1 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  margin: 10px 0 16px;
  color: var(--ink);
}

.reviews-hero-banner p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.google-trust-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  margin-top: 10px;
  box-shadow: var(--shadow-sm);
}

.google-trust-score {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.google-trust-stars {
  color: #f4b400;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.google-trust-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reviews-grid-section {
  padding: 60px 6.5%;
  background-color: var(--bg-light);
}

.reviews-container {
  max-width: 1150px;
  margin: 0 auto;
}

.reviews-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .reviews-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid-3col {
    grid-template-columns: 1fr;
  }
}

.review-card-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-bg);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.review-user-info h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--ink);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1a73e8;
  font-size: 11px;
  font-weight: 600;
}

.review-stars {
  color: #f4b400;
  font-size: 16px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 20px;
  flex-grow: 1;
}

.review-service-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.reviews-upload-note {
  max-width: 1150px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ==========================================================================
   21. Comprehensive Mobile & Phone View Optimizations (<= 768px)
   - Reduced Button Sizes & Padding
   - Scaled Down Spacing & Content Typography
   - Enhanced Touch Navigation & Mobile Drawer Options
   ========================================================================== */
@media (max-width: 768px) {
  /* --- 1. Medium Responsive Button Sizing --- */
  .gold-button,
  .quote-button,
  .dark-button,
  .outline-button,
  .small-outline,
  button.gold-button,
  button.dark-button {
    font-size: 11px !important;
    padding: 10px 18px !important;
    letter-spacing: 0.04em !important;
    border-radius: var(--radius-sm) !important;
    width: auto !important;
    max-width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .outline-button {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  /* Medium flex button container when in hero, cards, or CTA blocks */
  .hero-content > div:not(.hero-sub-line),
  .hero-buttons,
  .cta-actions,
  .banner-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-buttons .gold-button,
  .hero-buttons .outline-button,
  .cta-actions .gold-button,
  .cta-actions .outline-button {
    width: auto !important;
    max-width: fit-content !important;
    text-align: center !important;
  }

  /* --- 2. Compact Content Spacing & Typography --- */
  h1, .hero-content h1, .reviews-hero-banner h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  h2, .section-title, .section h2 {
    font-size: 21px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  h3, .card-title, .service-card-item h3 {
    font-size: 16px !important;
  }

  p, .hero-content p, .reviews-hero-banner p, .about-copy p {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  /* Reduced Section & Card Padding */
  .section,
  section,
  .hero,
  .reviews-hero-banner,
  .reviews-grid-section,
  .gallery-full-section,
  .gallery-slider-section {
    padding: 32px 4% !important;
  }

  .hero {
    height: auto !important;
    min-height: 360px !important;
    padding: 40px 5% !important;
  }

  .service-card-item,
  .review-card-item,
  .process-card,
  .value-card,
  .about-copy,
  .project-card {
    padding: 16px 18px !important;
  }

  /* --- 3. Enhanced Mobile Header & Navigation Drawer --- */
  .site-header {
    height: 60px !important;
    padding: 0 4.5% !important;
  }

  .brand-mark {
    font-size: 28px !important;
  }

  .brand b {
    font-size: 15px !important;
  }

  .brand small {
    font-size: 10px !important;
  }

  /* Show Mobile Hamburger Toggle */
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--white);
    font-size: 20px;
    margin-left: auto;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .menu-toggle:hover,
  .menu-toggle.active {
    background: var(--gold);
    color: var(--white);
  }

  /* Mobile Slide-Down Navigation Menu */
  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(17, 18, 16, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px 24px 40px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open,
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Mobile Navigation Links & Option Items */
  .main-nav a {
    height: auto !important;
    padding: 14px 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .main-nav a.active,
  .main-nav a:hover {
    color: var(--gold) !important;
    background: rgba(201, 155, 77, 0.06);
    border-radius: 4px;
  }

  .main-nav a.active::after {
    display: none !important;
  }

  .site-header .quote-button {
    display: none !important;
  }

  .reviews-upload-note {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px !important;
  }
}



/* ==========================================================================
   PHONE FIT OPTIMIZATION (Contact Form, Inputs, Cards, Maps & Text wrapping)
   ========================================================================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .contact-form-card {
    padding: 24px 18px !important;
    margin-bottom: 24px !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-sm) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-form-card form > div {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact-info-card {
    padding: 24px 18px !important;
    border-radius: var(--radius-sm) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-map-card {
    min-height: 280px !important;
    height: 280px !important;
    border-radius: var(--radius-sm) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-details-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
  }

  /* Input, Textarea, Select Phone Fit */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    padding: 12px 14px !important;
  }

  .gold-button,
  .dark-button,
  .quote-button,
  .outline-button {
    width: auto !important;
    max-width: fit-content !important;
    font-size: 11px !important;
    padding: 10px 18px !important;
    box-sizing: border-box !important;
    word-break: normal !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Text & Card Box Phone Fit */
  h1, h2, h3, h4, p, span, a, div, strong {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }

  .contact-info-card h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .contact-info-card div {
    font-size: 13.5px !important;
  }
}

@media (max-width: 480px) {
  .contact-form-card,
  .contact-info-card {
    padding: 20px 14px !important;
  }

  .contact-form-card h3 {
    font-size: 22px !important;
  }

  .contact-map-card {
    min-height: 240px !important;

/* --------------------------------------------------------------------------
   20. Portrait View Video Player & Scroll Autoplay Showcase
   -------------------------------------------------------------------------- */
.video-showcase-section {
  padding: 48px 20px;
  background-color: var(--bg-light, #faf9f6);
  border-top: 1px solid var(--line, #e2ded8);
  border-bottom: 1px solid var(--line, #e2ded8);
  text-align: center;
}

.portrait-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.portrait-video-wrapper,
.index-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  max-height: 570px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(212, 175, 55, 0.4);
  background: #0b0c0a;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.portrait-video-wrapper:hover,
.index-video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.portrait-video-wrapper video,
.index-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Overlay UI Controls */
.video-overlay-header {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.video-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 12, 10, 0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.video-status-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ff3b30;
}

.portrait-video-wrapper.is-playing .video-status-badge .dot,
.index-video-wrapper.is-playing .video-status-badge .dot {
  background-color: #34c759;
  box-shadow: 0 0 8px #34c759;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.video-sound-toggle {
  pointer-events: auto;
  background: rgba(11, 12, 10, 0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-sound-toggle:hover {
  background: rgba(212, 175, 55, 0.85);
  transform: scale(1.08);
}

.video-play-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 56px;
  height: 56px;
  background: rgba(11, 12, 10, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9;
}

.portrait-video-wrapper:hover .video-play-center-btn,
.index-video-wrapper:hover .video-play-center-btn,
.portrait-video-wrapper.paused .video-play-center-btn,
.index-video-wrapper.paused .video-play-center-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f7e096);
  width: 0%;
  z-index: 10;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .video-showcase-section {
    padding: 36px 15px;
  }
}

/* --------------------------------------------------------------------------
   21. Extended Project Execution Gallery Grid (siva 42.jpeg to siva 62.jpeg)
   -------------------------------------------------------------------------- */
.projects-execution-section {
  padding: 50px 6.5%;
  background-color: var(--bg-light, #faf9f6);
  border-top: 1px solid var(--line, #e2ded8);
}

.projects-execution-header {
  margin-bottom: 36px;
  text-align: center;
}

.projects-execution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 180px) !important;
  justify-content: center !important;
  gap: 16px !important;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .projects-execution-grid {
    grid-template-columns: repeat(auto-fill, 180px) !important;
  }
}

.execution-card-item {
  width: 180px !important;
  max-width: 180px !important;
  min-width: 180px !important;
  box-sizing: border-box;
  background: var(--white, #ffffff);
  border: 1px solid var(--line, #e2ded8);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.execution-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  border-color: var(--gold, #d4af37);
}

.execution-card-image {
  position: relative;
  width: 180px !important;
  height: 180px !important;
  max-width: 180px !important;
  max-height: 180px !important;
  min-width: 180px !important;
  min-height: 180px !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
}

.execution-card-image img,
img[src*="siva 18"], img[src*="siva 19"], img[src*="siva 20"], img[src*="siva 21"],
img[src*="siva 22"], img[src*="siva 23"], img[src*="siva 24"], img[src*="siva 25"],
img[src*="siva 26"], img[src*="siva 27"], img[src*="siva 28"], img[src*="siva 29"],
img[src*="siva 42"], img[src*="siva 43"], img[src*="siva 44"], img[src*="siva 45"],
img[src*="siva 46"], img[src*="siva 47"], img[src*="siva 48"], img[src*="siva 49"],
img[src*="siva 50"], img[src*="siva 51"], img[src*="siva 52"], img[src*="siva 53"],
img[src*="siva 54"], img[src*="siva 55"], img[src*="siva 56"], img[src*="siva 57"],
img[src*="siva 58"], img[src*="siva 59"], img[src*="siva 60"], img[src*="siva 61"],
img[src*="siva 62"] {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.04) saturate(1.06) brightness(1.01);
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.execution-card-item:hover .execution-card-image img {
  filter: contrast(1.07) saturate(1.09) brightness(1.03);
  transform: scale(1.05);
}

.execution-category-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(11, 12, 10, 0.78);
  backdrop-filter: blur(8px);
  color: var(--gold, #d4af37);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 12px;
  text-transform: uppercase;
  z-index: 2;
}

.execution-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.execution-card-body h3 {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #1a1a18);
  margin: 0 0 6px;
  line-height: 1.3;
}

.execution-card-body p {
  font-size: 13.5px;
  color: var(--muted, #666);
  line-height: 1.55;
  margin: 0 0 14px;
}

.execution-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-top: 1px dashed var(--line, #e2ded8);
  padding-top: 12px;
  font-size: 12px;
  color: #555;
}

.execution-card-specs li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.execution-card-specs li strong {
  color: var(--ink, #111);
}

.execution-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line, #e2ded8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.execution-location {
  font-size: 11px;
  color: var(--muted, #777);
  font-weight: 500;
}

.execution-action-btn {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold, #d4af37);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.execution-action-btn:hover {
  color: var(--ink, #111);
  transform: translateX(3px);
}

/* Filter Hide/Show Animations */
.portfolio-card-item.is-hidden,
.execution-card-item.is-hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .projects-execution-section {
    padding: 36px 16px;
  }
  
  .projects-execution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --------------------------------------------------------------------------
   22. Lightbox Modal Medium Sizing & Mobile Hero Adjustments
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 800px;
  max-height: 800px;
  width: 800px;
  height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  width: 800px;
  height: 800px;
  max-width: 90vw;
  max-height: 85vh;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 840px) {
  .lightbox-content,
  .lightbox-img {
    width: 90vw;
    height: 90vw;
    max-width: 90vw;
    max-height: 90vw;
  }
}











