/* ============================================
   UNIQUE EFFORT - Premium Construction Website
   style.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --beige: #f5efe6;
  --beige-dark: #ede3d4;
  --beige-mid: #f0e8da;
  --gold: #c9a84c;
  --gold-dark: #a8862d;
  --gold-light: #e2c97a;
  --brown: #3d2c1e;
  --brown-mid: #5c3f28;
  --white: #ffffff;
  --text-dark: #2a1f14;
  --text-mid: #5a4a38;
  --text-light: #8a7a68;
  --shadow-sm: 0 2px 12px rgba(60,35,10,0.08);
  --shadow-md: 0 6px 30px rgba(60,35,10,0.12);
  --shadow-lg: 0 16px 60px rgba(60,35,10,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--beige);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-mid); }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label::before { content: '— '; }
.section-label::after  { content: ' —'; }

.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(245,239,230,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1;
}
.navbar.light .nav-logo-name { color: var(--white); }
.navbar.scrolled .nav-logo-name { color: var(--text-dark); }
.nav-logo-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-logo-accent { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.navbar.light .nav-link { color: rgba(255,255,255,0.85); }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: var(--transition);
}
.navbar.light .hamburger span { background: var(--white); }
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30,18,8,0.85) 0%, rgba(60,35,15,0.7) 60%, rgba(201,168,76,0.15) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-geo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-geo::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  transform: rotate(15deg);
}
.hero-geo::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,168,76,0.15);
  transform: rotate(-10deg);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 3rem; right: 0;
  z-index: 2;
  display: flex;
  gap: 0;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-card:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ---- INTRO SECTION ---- */
.intro-section {
  background: var(--white);
  position: relative;
}
.intro-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img-wrap {
  position: relative;
}
.intro-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.intro-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.intro-img-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.intro-img-badge span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.intro-text p { margin-bottom: 1.2rem; line-height: 1.9; }
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.intro-feature-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--beige), var(--beige-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid var(--beige-dark);
}
.intro-feature-text h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.intro-feature-text p { font-size: 0.78rem; color: var(--text-light); margin: 0; }

/* ---- SERVICES PREVIEW ---- */
.services-preview {
  background: var(--beige);
  position: relative;
}
.services-preview-header { text-align: center; margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transition: var(--transition);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.service-card > * { position: relative; z-index: 1; }
.service-card-number {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  z-index: 0;
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--beige), var(--beige-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--beige-dark);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold-dark);
  transform: scale(1.1);
}
.service-card h3 { margin-bottom: 0.8rem; color: var(--text-dark); }
.service-card p { font-size: 0.88rem; line-height: 1.8; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.service-card-link:hover { gap: 0.7rem; }

/* ---- WHY CHOOSE US ---- */
.why-section {
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.why-bg-text {
  position: absolute;
  bottom: -2rem; right: -2rem;
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
}
.why-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.why-left .section-label { color: var(--gold-light); }
.why-left h2 { color: var(--white); }
.why-left p { color: rgba(255,255,255,0.65); margin-top: 1rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.why-card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.why-card h4 { color: var(--gold-light); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.7; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--brown);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20,12,4,0.9) 0%, rgba(60,35,15,0.7) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80') center/cover no-repeat;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--gold); }

/* ---- ABOUT PAGE ---- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 85%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 6px solid var(--beige);
}
.about-exp-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 1.2rem;
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 5;
}
.about-exp-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-exp-badge span { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.06em; opacity: 0.9; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.mv-card h3 { color: var(--text-dark); margin-bottom: 0.8rem; }
.mv-card p { font-size: 0.88rem; }

.expertise-section { background: var(--beige-mid); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.expertise-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.expertise-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.expertise-item h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.expertise-item p { font-size: 0.78rem; color: var(--text-light); }

/* ---- SERVICES PAGE ---- */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-full-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: var(--transition);
}
.service-full-card:hover .service-full-img { transform: scale(1.04); }
.service-full-img-wrap { overflow: hidden; }
.service-full-body { padding: 2rem; }
.service-full-body .service-icon { margin-bottom: 1rem; }
.service-full-body h3 { margin-bottom: 0.8rem; }
.service-full-body p { font-size: 0.88rem; line-height: 1.8; }
.service-features {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.service-feature::before {
  content: '✓';
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.process-section { background: var(--brown); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.process-step h4 { color: var(--white); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ---- PROJECTS PAGE ---- */
.projects-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--beige-dark);
  border-radius: 100px;
  color: var(--text-mid);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
}
.project-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.project-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,15,5,0.9) 0%, rgba(30,15,5,0.1) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-info h4 { color: var(--white); margin-bottom: 0.3rem; }
.project-info p { font-size: 0.78rem; color: var(--gold-light); margin: 0; }
.project-meta {
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-top: 2px solid var(--beige-dark);
}
.project-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.4rem;
}
.project-meta h4 { font-size: 0.95rem; color: var(--text-dark); }
.project-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.project-meta p { font-size: 0.78rem; color: var(--text-light); margin: 0; }

.project-card.featured { grid-column: span 2; }
.project-card.featured .project-img-wrap { aspect-ratio: 16/9; }

/* ---- CONTACT PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info-card {
  background: var(--brown);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-info-card > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item:last-of-type { margin-bottom: 2rem; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-item-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}
.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 0.4rem; }
.contact-form-wrap > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 2rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-group input, .form-group textarea, .form-group select {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--beige);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 0.5rem; width: 100%; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* ---- FOOTER ---- */
footer {
  background: #1a0e06;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer-brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item span { flex-shrink: 0; font-size: 1rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* ---- ADMIN LOGIN OVERLAY ---- */
.admin-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--brown);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0.6;
}
.admin-fab:hover { opacity: 1; transform: scale(1.1); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .intro-grid, .why-inner, .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .services-full-grid, .projects-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-img-main { height: 360px; }
  .about-img-stack { height: 360px; }
  .project-card.featured { grid-column: span 1; }
  .project-card.featured .project-img-wrap { aspect-ratio: 4/3; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .nav-menu { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--beige); padding: 100px 2rem 2rem; box-shadow: var(--shadow-lg); transition: right 0.4s ease; z-index: 999; }
  .nav-menu.open { right: 0; display: flex; }
  .nav-link { padding: 0.8rem 1rem; font-size: 0.95rem; color: var(--text-dark) !important; border-bottom: 1px solid var(--beige-dark); border-radius: 0; }
  .nav-cta { margin-left: 0; margin-top: 1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-stats { position: static; margin-top: 3rem; }
  .stat-card { padding: 1rem 1.2rem; }
  .stat-num { font-size: 1.5rem; }
  .services-grid, .services-full-grid, .projects-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .intro-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .intro-img-badge { bottom: -10px; right: 10px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
