/* ============================================
   BAGUS INTERIOR - Main Stylesheet (Archix Style)
   ============================================ */

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

/* ============ CSS VARIABLES ============ */
:root {
  --orange: #E87C2F;
  --orange-light: #F09050;
  --orange-dark: #C9641A;
  --black: #111111;
  --dark: #1A1A1A;
  --dark-2: #222222;
  --gray-dark: #333333;
  --gray: #666666;
  --gray-light: #999999;
  --border: #E5E5E5;
  --border-dark: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --cream: #FAF8F5;
  --bg-section: #F4F2EF;
  --topbar-bg: #111111;
  --header-bg: #FFFFFF;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Barlow', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius: 0px;
}

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 20px;
  font-style: italic;
}
.section-label.dark {
  color: var(--white);
  background: var(--orange);
}
.section-label.light-bg {
  background: var(--orange);
  color: var(--white);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--orange);
  font-family: var(--font-display);
  text-transform: none;
  font-weight: 400;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.8;
}
.bg-dark-section .section-title { color: var(--white); }
.bg-dark-section .section-subtitle { color: rgba(255,255,255,0.7); }

/* ============ LAYOUT ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { margin: 0 auto 20px; display: table; }
.section-header.center .section-subtitle { margin: 0 auto; }
.bg-alt { background: var(--bg-section); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 0;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,124,47,0.35);
}
.btn-outline {
  border: 2px solid var(--dark);
  color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: var(--orange);
  background: var(--orange);
}

/* ============ TOP BAR ============ */
#top-bar {
  background: var(--topbar-bg);
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-left a, .top-bar-left span {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.top-bar-left a:hover { color: var(--orange); }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar-social a {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.top-bar-social a:hover { color: var(--orange); }

/* ============ HEADER / NAVBAR ============ */
#site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  flex-shrink: 0;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 8px 14px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--orange); }

/* ============ DROPDOWN MENU ============ */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark); padding: 8px 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle:hover, .nav-item-dropdown.has-active .nav-dropdown-toggle { color: var(--orange); }
.nav-caret { font-size: 0.65rem; transition: transform 0.3s ease; }
.nav-item-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 200;
  border-top: 3px solid var(--orange);
}
.nav-item-dropdown.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-dropdown-link:last-child { border-bottom: none; }
.nav-dropdown-link:hover, .nav-dropdown-link.active { color: var(--orange); background: var(--off-white); padding-left: 26px; }

/* ============ HEADER CTA ============ */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.header-phone-info small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.header-phone-info span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
}

/* ============ HAMBURGER ============ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO SECTION (ARCHIX STYLE) ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  position: relative;
  background: rgba(0,0,0,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  z-index: 2;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=900&q=80') center/cover no-repeat;
  z-index: -1;
  opacity: 0.5;
}
.hero-big-number {
  font-family: var(--font-heading);
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 800;
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: -0.02em;
  position: relative;
}
.hero-big-number::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  opacity: 0.3;
}
.hero-number-label {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 16px;
  text-align: center;
}
/* Vertical divider */
.hero-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(232,124,47,0.4);
  z-index: 5;
}
.hero-right {
  position: relative;
  background: rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  z-index: 2;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1556909172-54557c7e4fb7?w=900&q=80') center/cover no-repeat;
  z-index: -1;
  opacity: 0.35;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 24px;
  font-style: italic;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 400px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-play-btn {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.hero-play-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
}
/* Sidebar social (left side rotated) */
.hero-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: var(--dark);
}
.hero-sidebar a {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 10px;
  transition: var(--transition);
  border-bottom: 1px solid #2a2a2a;
}
.hero-sidebar a:hover { color: var(--orange); background: #1a1a1a; }

/* ============ TICKER ============ */
.ticker-wrap {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-inner { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 32px;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ ABOUT SECTION ============ */
.about-section { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; height: 160px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
}
.badge-number { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.badge-label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; opacity: 0.9; }
.about-content { padding-top: 20px; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-dark);
}
.about-features li i { color: var(--orange); font-size: 1rem; }

/* ============ SERVICES SECTION ============ */
.services-section { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--white);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.service-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }

/* ============ PORTFOLIO SECTION ============ */
.portfolio-section { padding: 100px 0; background: var(--dark); }
.portfolio-section .section-title { color: var(--white); }
.portfolio-section .section-label { background: var(--orange); color: var(--white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-item.tall { grid-row: span 2; aspect-ratio: auto; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}
.portfolio-title { font-size: 1.1rem; font-weight: 700; color: var(--white); text-transform: uppercase; margin-bottom: 6px; }
.portfolio-loc { font-size: 0.8rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.portfolio-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.portfolio-item:hover .portfolio-link { opacity: 1; transform: translateY(0); }

/* ============ STATS SECTION ============ */
.stats-section {
  background: var(--orange);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { padding: 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ============ READY TO GET STARTED (CTA MIDDLE) ============ */
.mid-cta-section {
  background: var(--dark);
  padding: 40px 0;
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.mid-cta-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mid-cta-text em { color: var(--orange); font-style: normal; }
.mid-cta-phone {
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 100px 0; }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.15;
  font-style: italic;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 16px; display: flex; gap: 3px; }
.testi-text { font-size: 0.92rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.testi-author span { display: block; font-size: 0.75rem; color: var(--gray); margin-top: 2px; }

/* ============ CTA BAND ============ */
.cta-band {
  background: url('https://images.unsplash.com/photo-1565538810643-b5bdb714032a?w=1600&q=80') center/cover no-repeat;
  position: relative;
  padding: 100px 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.82);
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-band-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.cta-band-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
#site-footer { background: var(--dark); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo img { width: 48px; height: 48px; border-radius: 4px; object-fit: cover; }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-logo-name span { color: var(--orange); }
.footer-logo-tagline { font-size: 0.7rem; color: var(--gray-light); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-desc { font-size: 0.88rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--gray-light);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a i { font-size: 0.65rem; color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--gray-light); }
.footer-contact-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray-light); }
.footer-bottom p strong { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--gray-light); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ ACCESSIBILITY ============ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============ PAGE-SPECIFIC: ABOUT, SERVICES, ETC. ============ */
/* Inner page hero */
.page-hero {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1617806118233-18e1de247200?w=1600&q=80') center/cover no-repeat;
  opacity: 0.2;
}
.page-hero-content { position: relative; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero-breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.page-hero-breadcrumb a { color: var(--orange); }
.page-hero-breadcrumb span { margin: 0 8px; }

/* ============ LIGHTBOX ============ */
#lightbox { position: fixed; inset: 0; z-index: 9000; display: none; }
#lightbox.active { display: flex; align-items: center; justify-content: center; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lb-container { position: relative; max-width: 90vw; max-height: 90vh; z-index: 1; display: flex; align-items: center; gap: 16px; }
.lb-img { max-width: 80vw; max-height: 85vh; object-fit: contain; display: block; }
.lb-close, .lb-prev, .lb-next { background: var(--orange); color: var(--white); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; border: none; flex-shrink: 0; }
.lb-close { position: absolute; top: -50px; right: 0; }
.lb-caption { position: absolute; bottom: -36px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ============ VIDEO MODAL ============ */
.video-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9000; display: flex; align-items: center; justify-content: center; }
.video-modal-inner { position: relative; width: 860px; max-width: 95vw; }
.video-modal-inner iframe { width: 100%; aspect-ratio: 16/9; display: block; }
.vm-close { position: absolute; top: -44px; right: 0; background: var(--orange); color: var(--white); width: 38px; height: 38px; font-size: 1.2rem; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left, .hero-right { padding: 60px 40px; min-height: 50vh; }
  .hero-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.wide { grid-column: span 1; }
  .portfolio-item.tall { grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-sidebar { display: none; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; align-items: flex-start; gap: 0; background: var(--white); position: fixed; top: 0; right: 0; bottom: 0; width: 280px; padding: 80px 0 40px; box-shadow: -8px 0 40px rgba(0,0,0,0.15); z-index: 999; overflow-y: auto; transform: translateX(100%); transition: transform 0.35s ease; }
  .nav-menu.open { display: flex; transform: translateX(0); }
  .nav-link, .nav-dropdown-toggle { padding: 14px 24px; color: var(--dark); width: 100%; text-align: left; border-bottom: 1px solid var(--border); }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; display: none; background: var(--off-white); }
  .nav-item-dropdown.open .nav-dropdown { display: block; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .header-cta .btn { padding: 10px 18px; font-size: 0.75rem; }
  .hero-left, .hero-right { padding: 50px 24px; }
  .hero-big-number { font-size: 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-left { gap: 12px; }
  .top-bar-right { display: none; }
  .mid-cta-inner { flex-direction: column; text-align: center; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 60px 0; }
  .hero-right { padding: 40px 16px; }
  .hero-title { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
}
