/* Global Variables & Fonts */
:root {
  --bg-color: #ffffff;
  --bg-dark: #1e2a24;
  --bg-light: #ffffff;
  --text-dark: #1e2a24;
  --text-light: #ffffff;
  --text-muted: rgba(30, 42, 36, 0.6);
  --text-muted-light: rgba(255, 255, 255, 0.6);
  --primary-accent: #395239;
  --secondary-accent: #283b28;
  --card-bg: #ffffff;
  
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-serif: 'Montserrat', sans-serif;
  
  --container-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.title-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary-accent);
  color: var(--bg-light);
}
.btn-primary:hover {
  background-color: var(--secondary-accent);
  box-shadow: 0 10px 20px rgba(30, 42, 36, 0.15);
}

.btn-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.btn-white {
  background-color: var(--bg-light);
  color: var(--text-dark);
}
.btn-white:hover {
  background-color: #ffffff;
}

.btn-yellow {
  background-color: #deb574;
  color: var(--text-dark);
  border-radius: 8px; /* Slightly more rectangular */
}
.btn-yellow:hover {
  background-color: #deb574;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /* Glassmorphism */
  background: rgba(30, 42, 36, 0.0);
  transition: background 0.3s ease, padding 0.3s ease;
}

.header-col-left {
  display: flex;
  justify-content: flex-start;
}

.header-col-center {
  display: flex;
  justify-content: center;
}

.header-col-right {
  display: flex;
  justify-content: flex-end;
}

.header.scrolled {
  background: rgba(30, 42, 36, 0.85);
  backdrop-filter: blur(12px);
  padding: 15px 40px;
}

.logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

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

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* offset for header */
  overflow: hidden;
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* Slight zoom for parallax feel */
}

/* Add a dark gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(30, 42, 36, 0.4) 0%, rgba(30, 42, 36, 0.1) 100%);
}

.hero-content {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px 80px; /* added 80px bottom padding for ticker */
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-left {
  flex: 1;
  max-width: 700px;
  padding-bottom: 60px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 62px;
  line-height: 1.05;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.title-accent {
  color: #deb574;
}

.hero-right {
  flex: 0 0 400px;
  z-index: 10;
}

.hero-card {
  position: absolute;
  right: 40px;
  bottom: 110px; /* Float nicely above the yellow ticker */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-light);
  padding: 16px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(30, 42, 36, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  width: 380px;
  box-sizing: border-box;
  z-index: 100;
}

.hero-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-card-small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.hero-card-large {
  font-size: 14px;
  color: var(--text-light);
}

.hero-card-large strong {
  font-size: 24px;
  font-weight: 700;
}

/* Ticker Section */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #deb574;
  color: var(--text-dark);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-wrapper {
  display: flex;
  width: max-content;
  animation: ticker-move-left 30s linear infinite;
}

@keyframes ticker-move-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.ticker-content {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  width: max-content;
  padding-right: 60px;
}

/* About Section */
.about-section {
  background-color: var(--bg-color);
  padding: 120px 0;
}

.about-section.vision-section {
  background-color: #395239;
  color: var(--text-light);
  padding: 195px 0;
}

.vision-section .about-badge {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--text-light) !important;
}

.vision-section .about-title {
  color: var(--text-light) !important;
  font-size: 42px;
}

.vision-section .about-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

.vision-section .vision-lead {
  color: var(--text-light) !important;
}

.vision-section .vision-content {
  color: rgba(255, 255, 255, 0.8) !important;
}

.vision-section .vision-highlight {
  color: #deb574 !important;
}

.vision-section .vision-list li {
  color: rgba(255, 255, 255, 0.85) !important;
}

.vision-section .vision-list li::before {
  color: #deb574 !important;
}

.vision-section .vision-list li strong {
  color: #ffffff !important;
}

.vision-section .vision-quote {
  border-left-color: #deb574 !important;
  color: #ffffff !important;
}

.about-section .container {
  max-width: 1350px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: stretch;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-badge {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(30, 42, 36, 0.2);
  border-radius: 50px;
  color: var(--text-dark);
}

.about-title {
  font-size: 36px;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 95%;
}

.vision-container {
  max-width: 850px;
  margin: 0 auto;
}

.vision-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.vision-content {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.vision-content p {
  margin-bottom: 24px;
}

.vision-highlight {
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 15px;
}

.vision-list {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 24px;
}

.vision-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--text-muted);
  padding-left: 10px;
}

.vision-list li::before {
  content: "o";
  position: absolute;
  left: -12px;
  top: -1px;
  font-size: 12px;
  color: var(--text-muted);
}

.vision-quote {
  border-left: 2px dotted rgba(30, 42, 36, 0.4);
  padding-left: 20px;
  margin-top: 24px;
  margin-bottom: 28px;
  font-style: normal;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.65;
}

.about-review-block {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: center;
}

.review-card {
  background: #395239;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  width: 180px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.review-top {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.rating-stars {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.rating-stars span:first-child {
  font-size: 12px;
  margin-bottom: 2px;
}

.review-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.review-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quote-mark {
  color: #395239;
  font-size: 48px;
  line-height: 0.5;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
}

.quote-line {
  border: none;
  border-top: 1px solid rgba(30, 42, 36, 0.1);
  width: 100%;
  margin: 12px 0;
}

.quote-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-right {
  display: flex;
  height: 100%;
}

.about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Footer */
.footer {
  background-color: #395239;
  color: var(--text-light);
  padding: 80px 0 40px;
}

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

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

.social-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  background: var(--primary-accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-cta-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 700;
}

.footer-title .title-serif {
  color: #deb574;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.footer-right .btn-yellow {
  padding: 16px 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 13px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  margin: 30px 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #deb574;
}

.footer-col a {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 10px;
}

/* Stats Section */
.stats-section {
  padding: 120px 0;
  background-color: var(--bg-color);
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-badge {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(30, 42, 36, 0.2);
  border-radius: 50px;
  color: var(--text-dark);
}

.stats-title {
  font-size: 48px;
  letter-spacing: -1px;
}

.stats-title .title-serif {
  color: var(--primary-accent);
  font-style: italic;
  font-family: var(--font-serif);
}

.stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(30, 42, 36, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 340px; /* Fixed height to prevent dynamic expansion */
  box-shadow: 0 10px 30px rgba(30, 42, 36, 0.02);
}

.stat-card-dark {
  background: #395239;
  color: #ffffff;
  border: none;
}

.stat-badge-inner {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 40px;
  display: inline-block;
}

.stat-card-dark .stat-badge-inner {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.stat-card:not(.stat-card-dark) .stat-badge-inner {
  background: rgba(30, 42, 36, 0.05);
  color: var(--text-muted);
}

.stat-num-container {
  display: flex;
  align-items: baseline;
  margin-top: auto;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-suffix {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-left: 4px;
}

.stat-card-dark .stat-suffix {
  color: rgba(255, 255, 255, 0.8);
}

.stat-card:not(.stat-card-dark) .stat-suffix {
  color: var(--text-dark);
}

.stat-desc {
  font-size: 14px;
  line-height: 1.5;
}

.stat-card-dark .stat-desc {
  color: rgba(255, 255, 255, 0.75);
}

.stat-card:not(.stat-card-dark) .stat-desc {
  color: var(--text-muted);
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background-color: var(--secondary-accent);
  color: var(--text-light);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-end;
  margin-bottom: 80px;
}

.services-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-badge {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--text-light);
  display: inline-block;
}

.services-title {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 700;
}

.services-header-right {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.services-header-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 85%;
  margin-bottom: 8px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
}

.service-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-row-name {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.service-row-right {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.service-row-num {
  font-size: 36px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
}

.service-row-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 80%;
}

/* Featured Projects Section */
.featured-projects {
  padding: 120px 0;
  background-color: var(--bg-color);
  overflow: hidden;
}

.projects-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-badge {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(30, 42, 36, 0.2);
  border-radius: 50px;
  color: var(--text-dark);
  display: inline-block;
}

.projects-title {
  font-size: 48px;
  letter-spacing: -1px;
}

.projects-title .title-serif {
  color: var(--primary-accent);
  font-style: italic;
  font-family: var(--font-serif);
}

.projects-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.projects-marquee-wrapper {
  display: flex;
  width: max-content;
  animation: projects-scroll-left 45s linear infinite;
}

@keyframes projects-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.projects-marquee-content {
  display: flex;
  gap: 30px;
  padding-right: 30px;
}

.project-img-card {
  position: relative;
  display: block;
  width: 960px;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(30, 42, 36, 0.08);
  cursor: pointer;
}

.project-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 42, 36, 0.6) 0%, rgba(30, 42, 36, 0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

.project-img-card:hover .project-img-overlay {
  background: linear-gradient(to top, rgba(30, 42, 36, 0.7) 0%, rgba(30, 42, 36, 0.1) 60%);
}

.project-img-info {
  color: var(--text-light);
  text-align: left;
}

.project-img-info h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
}

.project-img-info p {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.85;
}

/* Projects Page Collage */
.projects-collage-section {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.projects-collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project-collage-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 10px 30px rgba(30, 42, 36, 0.05);
}

.project-card-full {
  grid-column: span 2;
  height: 600px;
}

.project-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-collage-card:hover .project-card-bg {
  transform: scale(1.03);
}

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(30, 42, 36, 0.75) 0%, rgba(30, 42, 36, 0.3) 50%, transparent 100%);
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.project-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-card-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.project-card-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.project-card-arrow {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
  margin-bottom: 4px;
}

.project-collage-card:hover .project-card-arrow {
  transform: translateX(5px);
  color: var(--text-light);
}

@media (max-width: 768px) {
  .project-img-card {
    width: 320px;
    height: 220px;
    border-radius: 16px;
  }
  .project-img-overlay {
    padding: 20px;
  }
  .project-img-info h3 {
    font-size: 20px;
    margin: 0 0 4px 0;
  }
  .project-img-info p {
    font-size: 11px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat-card {
    height: auto;
    min-height: 280px;
  }
  .projects-collage-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project-collage-card {
    height: 400px;
  }
  .project-card-full {
    grid-column: span 1;
    height: 400px;
  }
  .project-card-title {
    font-size: 24px;
  }
  .project-card-overlay {
    padding: 24px;
  }
}

/* Project Detail Pages */
.project-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  overflow: hidden;
  padding: 0;
}

.project-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(30, 42, 36, 0.4) 0%,
    rgba(30, 42, 36, 0.2) 60%,
    rgba(30, 42, 36, 0.6) 100%
  );
  z-index: 1;
}

.project-hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
}

.project-hero-content {
  text-align: center;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-hero-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
  background-color: rgba(30, 42, 36, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.project-hero-title {
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text-light);
  margin: 0;
}

.project-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1000px;
}

.project-metric-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-metric-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  text-transform: uppercase;
}

.project-metric-value {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-light);
}

/* Project Overview & Breakdown Section */
.project-overview {
  padding: 120px 0 80px;
  background-color: var(--bg-color);
}

.project-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.project-overview-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-overview-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(30, 42, 36, 0.2);
  border-radius: 50px;
  color: var(--text-dark);
  display: inline-block;
}

.project-overview-left h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--text-dark);
}

.project-overview-left p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Right Column Table List */
.project-overview-right {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(30, 42, 36, 0.1);
  width: 100%;
}

.project-overview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(30, 42, 36, 0.1);
}

.project-overview-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(30, 42, 36, 0.6);
  text-transform: uppercase;
}

.project-overview-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}

.project-overview-services {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.project-service-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid rgba(30, 42, 36, 0.25);
  border-radius: 50px;
  color: var(--text-dark);
  text-transform: uppercase;
  background-color: transparent;
}

/* Project Process & Highlights Split */
.project-split-section {
  padding: 120px 0;
  background-color: #395239;
  color: var(--text-light);
}

.project-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
}

.project-split-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
  display: block;
}

.project-process-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.project-process-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.project-process-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-accent);
  opacity: 0.8;
  line-height: 1;
}

.project-process-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-light);
}

.project-process-info p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.project-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.project-highlight-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 16px;
}

.project-highlight-num {
  font-size: 40px;
  font-weight: 700;
  color: #deb574;
  margin-bottom: 12px;
  display: block;
}

.project-highlight-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* Project Visuals Grid Collage */
.project-visuals {
  padding: 80px 0;
  background-color: var(--bg-color);
  width: 100%;
}

.project-visuals-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.project-visual-item {
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(30, 42, 36, 0.04);
}

/* Collage Spans */
.project-visual-item:nth-child(1) { grid-column: span 4; }
.project-visual-item:nth-child(2) { grid-column: span 8; }
.project-visual-item:nth-child(3) { grid-column: span 7; }
.project-visual-item:nth-child(4) { grid-column: span 5; }
.project-visual-item:nth-child(5) { grid-column: span 5; }
.project-visual-item:nth-child(6) { grid-column: span 7; }

/* Dynamic layout when exactly 3 visual items are present */
.project-visual-item:nth-child(1):nth-last-child(3) { grid-column: span 7; }
.project-visual-item:nth-child(2):nth-last-child(2) { grid-column: span 5; }
.project-visual-item:nth-child(3):last-child { grid-column: span 12; }

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

.project-visual-item:hover img {
  transform: scale(1.04);
}

/* Lightbox overlay styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 42, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  user-select: none;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(30, 42, 36, 0.6);
  animation: zoomIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s, background-color 0.3s;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.lightbox-close:hover {
  color: #fff;
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.15);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-arrow:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

@media (max-width: 992px) {
  .project-hero-title {
    font-size: 52px;
  }
  .project-hero-metrics {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .project-overview-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 120px;
  }

  .hero-card {
    position: static;
    margin: 30px auto 0;
    width: 100%;
    max-width: 400px;
  }

  .project-visuals-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }
  
  .project-visual-item {
    height: 320px;
    width: 100%;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
  .lightbox-close { top: 20px; right: 20px; }
  .lightbox-content { max-width: 95%; max-height: 75%; }
}

/* Page Header Section (Light Styling) */
.page-header {
  background: var(--bg-color) !important;
  color: var(--text-dark) !important;
  padding: 180px 0 60px !important;
  text-align: left !important;
  border-bottom: none !important;
}

.page-header .hero-subtitle {
  background: #ffffff !important;
  color: var(--text-dark) !important;
  border: 1px solid rgba(30, 42, 36, 0.12) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  margin-bottom: 16px !important;
  backdrop-filter: none !important;
}

.page-header h1 {
  font-size: 48px !important;
  line-height: 1.2 !important;
  color: var(--text-dark) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  letter-spacing: -1px !important;
  font-weight: 600 !important;
}

.page-header h1 .title-serif {
  color: #395239 !important; /* Premium branding green */
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

/* Light Header Navigation Bar (at first / transparent) */
.header-light:not(.scrolled) {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.header-light:not(.scrolled) .nav-links a {
  color: var(--text-dark) !important;
}

.header-light:not(.scrolled) .nav-links a::after {
  background-color: var(--text-dark) !important;
}

.header-light:not(.scrolled) .logo img {
  filter: brightness(0) opacity(0.85) !important;
}

.header-light:not(.scrolled) .btn-white {
  background: var(--text-dark) !important;
  color: var(--text-light) !important;
  border: 1px solid var(--text-dark) !important;
}

.header-light:not(.scrolled) .btn-white:hover {
  background: transparent !important;
  color: var(--text-dark) !important;
}

/* Light Header Navigation Bar (scrolled / turns brown) */
.header-light.scrolled {
  background: rgba(30, 42, 36, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(30, 42, 36, 0.08) !important;
}

.header-light.scrolled .nav-links a {
  color: var(--text-light) !important;
}

.header-light.scrolled .nav-links a::after {
  background-color: var(--text-light) !important;
}

.header-light.scrolled .logo img {
  filter: none !important;
}

.header-light.scrolled .btn-white {
  background: var(--text-light) !important;
  color: var(--text-dark) !important;
  border: 1px solid var(--text-light) !important;
}

.header-light.scrolled .btn-white:hover {
  background: transparent !important;
  color: var(--text-light) !important;
}

@media (max-width: 768px) {
  .page-header {
    padding: 160px 0 60px !important;
  }
  .page-header h1 {
    font-size: 42px !important;
  }
}

/* Entrance animations on load */
.hero-subtitle,
.hero-title,
.hero-left .btn,
.hero-card,
.project-hero-badge,
.project-hero-title,
.project-metric-card,
.page-header .hero-subtitle,
.page-header h1 {
  opacity: 0;
}

.hero-subtitle {
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.hero-title {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-left .btn {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-card {
  animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.project-hero-badge,
.page-header .hero-subtitle {
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.project-hero-title,
.page-header h1 {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.project-metric-card:nth-child(1) {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.project-metric-card:nth-child(2) {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.project-metric-card:nth-child(3) {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* About Page Custom Layout Styles */
.about-hero-title, .about-page .about-title {
  font-size: 72px !important;
  line-height: 1.1 !important;
  font-family: var(--font-heading) !important;
  max-width: 900px !important;
  margin-top: 20px !important;
  margin-bottom: 40px !important;
  letter-spacing: -2px !important;
}

.about-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 120px;
  box-shadow: 0 30px 60px rgba(30, 42, 36, 0.1);
}

.about-hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-est-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #deb574;
  color: #1e2a24;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.about-est-badge span {
  display: block;
}

.about-play-button {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.about-play-button:hover {
  background-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.05);
}

.about-play-button svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  margin-left: 3px;
}

.approach-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 120px 0;
}

.approach-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 500;
  font-family: var(--font-heading);
  max-width: 800px;
  margin: 0 auto 32px auto;
  text-align: center;
  letter-spacing: -1.5px;
}

.approach-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted-light);
  max-width: 820px;
  margin: 0 auto 80px auto;
  text-align: center;
  font-family: var(--font-body);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.approach-card {
  display: flex;
  flex-direction: column;
}

.approach-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-light);
}

.approach-card-title {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-heading);
  margin-bottom: 16px;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.approach-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted-light);
}

@media (max-width: 991px) {
  .about-title {
    font-size: 48px !important;
    letter-spacing: -1px !important;
  }
  .about-hero-image-wrapper {
    height: 400px;
    margin-bottom: 60px;
  }
  .approach-section {
    padding: 80px 0;
  }
  .approach-title {
    font-size: 36px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .approach-subtitle {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .about-title {
    font-size: 36px !important;
  }
  .about-hero-image-wrapper {
    height: 300px;
  }
  .about-play-button {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .about-play-button svg {
    width: 16px;
    height: 16px;
  }
}





/* ==========================================================================
   COMPONENT BASE STYLES FOR RESPONSIVENESS
   ========================================================================== */

/* Mobile Navigation CTA */
.mobile-nav-cta {
  display: none;
}

/* Service Detail Rows (services.html) */
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.service-detail-num {
  font-size: 14px;
  color: var(--primary-accent);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.service-detail-text h2 {
  font-size: 40px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.service-detail-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.service-detail-media img {
  border-radius: var(--border-radius-lg);
  height: 400px;
  width: 100%;
  object-fit: cover;
}
.service-detail-row.reverse .service-detail-text {
  order: 2;
}
.service-detail-row.reverse .service-detail-media {
  order: 1;
}

/* Contact Grid & Form Card (contact.html) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form-card {
  background: var(--bg-light);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(30, 42, 36, 0.05);
}

/* Quote Form Card & 2-Col Rows (request-a-quote.html) */
.quote-form-card {
  background: var(--bg-light);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Testimonials Grid & Card (testimonials.html) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.testimonial-card {
  background: var(--bg-light);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================================================== */

/* Hamburger Menu Button - Always High-Contrast & Guaranteed Visible */
.mobile-menu-toggle {
    display: none;
    background: #1e2a24 !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 8px !important;
    z-index: 10001 !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle:hover {
    background: #283b28 !important;
    border-color: #deb574 !important;
}

.mobile-menu-toggle .bar {
    display: block !important;
    width: 22px !important;
    height: 2.5px !important;
    margin: 3.5px auto !important;
    transition: all 0.3s ease-in-out !important;
    background-color: #ffffff !important;
    border-radius: 2px !important;
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
    background-color: #ffffff !important;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
    background-color: #ffffff !important;
}

/* Tablet & Mobile Screens (<= 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 24px;
    }
    .about-section, .stats-section, .services-section, .approach-section {
        padding: 80px 0;
    }
    .about-section.vision-section {
        padding: 100px 0;
    }
    .footer {
        padding: 60px 0 30px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-row {
        gap: 40px;
    }
    .services-header {
        gap: 40px;
    }
    .contact-grid {
        gap: 40px;
    }

    /* Header & Mobile Drawer on all screens <= 992px */
    .mobile-menu-toggle {
        display: flex !important;
    }
    .header-col-right {
        display: none !important;
    }
    .header {
        padding: 14px 24px !important;
    }
    .header-col-left .logo img {
        height: 32px !important;
        width: auto !important;
    }

    .header-col-center {
        position: fixed !important;
        left: -100% !important;
        top: 0 !important;
        gap: 0 !important;
        flex-direction: column !important;
        background-color: rgba(26, 36, 30, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        text-align: center !important;
        transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 9998 !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 40px 20px !important;
    }

    .header-col-center.active {
        left: 0 !important;
    }

    .nav-links {
        flex-direction: column !important;
        width: 100% !important;
        align-items: center !important;
        gap: 0 !important;
    }

    /* CRITICAL FIX: ALL text inside the mobile drawer is ALWAYS bright white, never green */
    .header-col-center .nav-links a,
    .header .header-col-center .nav-links a,
    .header-light .header-col-center .nav-links a,
    .header-light:not(.scrolled) .header-col-center .nav-links a,
    .header-light.scrolled .header-col-center .nav-links a {
        color: #ffffff !important;
        font-size: 22px !important;
        font-weight: 500 !important;
        padding: 12px 20px !important;
        margin: 6px 0 !important;
        display: inline-block !important;
        width: auto !important;
        min-height: 44px !important;
        border-radius: 8px !important;
        transition: background 0.2s ease, color 0.2s ease !important;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
    }

    .header-col-center .nav-links a:hover,
    .header-col-center .nav-links a:active,
    .header .header-col-center .nav-links a:hover,
    .header-light:not(.scrolled) .header-col-center .nav-links a:hover {
        color: #deb574 !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .header-col-center .nav-links .mobile-nav-cta,
    .header .header-col-center .nav-links .mobile-nav-cta,
    .header-light .header-col-center .nav-links .mobile-nav-cta,
    .header-light:not(.scrolled) .header-col-center .nav-links .mobile-nav-cta {
        display: inline-block !important;
        margin-top: 24px !important;
        padding: 14px 32px !important;
        background: #deb574 !important;
        color: #1e2a24 !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        text-transform: uppercase !important;
        border-radius: 50px !important;
        width: auto !important;
        min-width: 180px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
        text-shadow: none !important;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
    /* Global Mobile Form Hygiene - Prevents iOS Safari Auto-Zoom */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Container Spacing */
    .container {
        padding: 0 20px !important;
    }

    /* Typography Fluidity */
    .hero-title {
        font-size: clamp(30px, 8vw, 42px) !important;
        line-height: 1.12 !important;
        margin-bottom: 24px !important;
        letter-spacing: -0.5px !important;
    }
    .about-title {
        font-size: clamp(26px, 7vw, 34px) !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
    }
    .stats-title {
        font-size: clamp(28px, 7vw, 38px) !important;
        line-height: 1.2 !important;
    }
    .services-title {
        font-size: clamp(28px, 7vw, 38px) !important;
        line-height: 1.2 !important;
    }
    .footer-title {
        font-size: clamp(26px, 6.5vw, 36px) !important;
        line-height: 1.2 !important;
    }
    .approach-title {
        font-size: clamp(26px, 6.5vw, 34px) !important;
        line-height: 1.2 !important;
    }
    .approach-card-title {
        font-size: 20px !important;
    }
    .page-header {
        padding: 120px 0 36px !important;
    }
    .page-header h1 {
        font-size: clamp(28px, 7.5vw, 40px) !important;
        line-height: 1.2 !important;
    }

    /* Hero Section */
    .hero-section {
        min-height: 85vh !important;
        min-height: 85dvh !important;
        padding-top: 90px !important;
    }
    .hero-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 20px 85px !important;
        gap: 16px !important;
    }
    .hero-left {
        max-width: 100% !important;
        padding-bottom: 10px !important;
    }
    .hero-subtitle {
        font-size: 10px !important;
        padding: 6px 14px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 18px !important;
    }
    .hero-right {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-card {
        position: static !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 12px 0 0 !important;
        padding: 12px 16px !important;
        box-sizing: border-box !important;
    }
    .hero-ticker {
        padding: 12px 0 !important;
    }
    .ticker-content {
        gap: 36px !important;
        font-size: 14px !important;
        padding-right: 36px !important;
    }

    /* Vision Section */
    .about-section, .about-section.vision-section {
        padding: 60px 0 !important;
    }
    .vision-section .about-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .about-desc {
        max-width: 100% !important;
        font-size: 14px !important;
        margin-bottom: 24px !important;
    }
    .about-right {
        width: 100% !important;
        height: auto !important;
    }
    .about-right img {
        height: 260px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }
    .about-review-block {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 24px !important;
        margin-top: 24px !important;
    }

    /* Stats Section */
    .stats-section {
        padding: 60px 0 !important;
    }
    .stats-header {
        margin-bottom: 36px !important;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .stat-card {
        min-height: auto !important;
        padding: 24px 16px !important;
        border-radius: 14px !important;
    }
    .stat-number {
        font-size: clamp(36px, 9vw, 46px) !important;
    }
    .stat-suffix {
        font-size: clamp(26px, 7vw, 34px) !important;
    }
    .stat-desc {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    /* Services Section (Home Page) */
    .services-section {
        padding: 60px 0 !important;
    }
    .services-header {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 36px !important;
    }
    .services-header-right {
        justify-content: flex-start !important;
        height: auto !important;
    }
    .services-header-desc {
        max-width: 100% !important;
        font-size: 15px !important;
        margin-bottom: 0 !important;
    }
    .service-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 24px 0 !important;
    }
    .service-row-name {
        font-size: 22px !important;
        line-height: 1.25 !important;
    }
    .service-row-right {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }
    .service-row-num {
        font-size: 26px !important;
    }
    .service-row-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Projects Marquee (Home Page) */
    .projects-section {
        padding: 60px 0 !important;
    }
    .projects-header {
        margin-bottom: 36px !important;
    }
    .project-img-card {
        width: 82vw !important;
        max-width: 320px !important;
        height: 220px !important;
        border-radius: 16px !important;
    }
    .project-img-overlay {
        padding: 16px !important;
    }
    .project-img-info h3 {
        font-size: 20px !important;
    }
    .project-img-info p {
        font-size: 11px !important;
    }

    /* Projects Page (projects.html) */
    .projects-collage-section {
        padding: 40px 0 60px !important;
    }
    .projects-collage-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .project-collage-card {
        height: 280px !important;
        border-radius: 16px !important;
    }
    .project-card-overlay {
        padding: 20px !important;
    }
    .project-card-title {
        font-size: 22px !important;
    }
    .project-card-category {
        font-size: 11px !important;
    }

    /* Project Detail Pages (rd-farms.html, shikara.html, red-villa.html) */
    .project-hero {
        min-height: 60vh !important;
        padding: 120px 0 36px !important;
    }
    .project-hero-title {
        font-size: clamp(32px, 8vw, 44px) !important;
        line-height: 1.15 !important;
    }
    .project-hero-badge {
        font-size: 10px !important;
        padding: 6px 14px !important;
    }
    .project-hero-metrics {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 24px !important;
    }
    .project-metric-card {
        padding: 14px 18px !important;
        border-radius: 12px !important;
    }
    .project-metric-label {
        font-size: 10px !important;
    }
    .project-metric-value {
        font-size: 16px !important;
    }
    .project-overview {
        padding: 50px 0 !important;
    }
    .project-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
    .project-overview-left h2 {
        font-size: clamp(24px, 6vw, 32px) !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }
    .project-overview-left p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }
    .project-overview-right {
        border-top: 1px solid rgba(30, 42, 36, 0.1);
        padding-top: 20px;
    }
    .project-overview-row {
        padding: 14px 0 !important;
    }
    .project-visuals {
        padding: 20px 0 50px !important;
    }
    .project-visuals-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        padding: 0 !important;
    }
    .project-visual-item {
        height: 240px !important;
        width: 100% !important;
        border-radius: 14px !important;
    }

    /* Services Page (services.html) */
    .service-detail-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 48px !important;
    }
    .service-detail-row.reverse .service-detail-text,
    .service-detail-row.reverse .service-detail-media {
        order: unset !important;
    }
    .service-detail-text h2 {
        font-size: clamp(24px, 6vw, 30px) !important;
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
    }
    .service-detail-text p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
    }
    .service-detail-media img {
        height: 230px !important;
        border-radius: 16px !important;
    }

    /* Contact Page (contact.html) */
    .contact-section {
        padding: 50px 0 !important;
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
    .contact-info h2 {
        font-size: clamp(26px, 6.5vw, 34px) !important;
        margin-bottom: 16px !important;
    }
    .contact-info p {
        font-size: 15px !important;
        margin-bottom: 24px !important;
    }
    .contact-form-card {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    /* Request a Quote Page (request-a-quote.html) */
    .quote-section {
        padding: 50px 0 !important;
    }
    .quote-form-card {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }
    .form-row-2col {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Testimonials Page (testimonials.html) */
    .testimonials-section {
        padding: 50px 0 !important;
    }
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .testimonial-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }
    .testimonial-card p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    /* Approach Section (about.html) */
    .approach-section {
        padding: 60px 0 !important;
    }
    .approach-subtitle {
        font-size: 15px !important;
        margin-bottom: 36px !important;
    }
    .approach-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .approach-card {
        padding: 24px 20px !important;
        border-radius: 14px !important;
    }

    /* Footer (Global) */
    .footer {
        padding: 60px 0 30px !important;
    }
    .footer-cta-block {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        margin-bottom: 30px !important;
    }
    .footer-links-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px !important;
    }
    .footer-bottom {
        flex-direction: column-reverse !important;
        align-items: center !important;
        gap: 16px !important;
        text-align: center !important;
    }
}

/* Extra Small Screens (<= 420px) */
@media (max-width: 420px) {
    .container {
        padding: 0 16px !important;
    }
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-links-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-title {
        font-size: 28px !important;
    }
    .hero-card {
        max-width: 100% !important;
    }
    .page-header h1 {
        font-size: 28px !important;
    }
    .project-img-card {
        width: 88vw !important;
        max-width: 300px !important;
        height: 200px !important;
    }
}
