/* =============================================
   ROYAL EDGE CONSTRUCTION — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --black-primary:   #0D0D0D;
  --black-secondary: #1A1A1A;
  --black-card:      #242424;
  --black-overlay:   #2E2E2E;

  --gold-primary:    #D4A017;
  --gold-light:      #F5C842;
  --gold-dark:       #A07810;
  --gold-muted:      rgba(212, 160, 23, 0.15);

  --white:           #FFFFFF;
  --white-soft:      rgba(255, 255, 255, 0.85);
  --white-muted:     rgba(255, 255, 255, 0.45);

  --border-gold:     1px solid rgba(212, 160, 23, 0.35);
  --border-subtle:   1px solid rgba(255, 255, 255, 0.07);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-gold: 0 0 20px rgba(212, 160, 23, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black-primary);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: 'Lato', sans-serif; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: center; }

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-title.center { text-align: center; }
.section-title.gold { color: var(--gold-primary); }

.gold-underline {
  width: 60px;
  height: 3px;
  background: var(--gold-primary);
  margin-bottom: 40px;
}
.gold-underline.center { margin-left: auto; margin-right: auto; }

.lead-text {
  font-size: 1.1rem;
  color: var(--white-muted);
  line-height: 1.8;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold-primary);
  color: #000;
  border: 2px solid var(--gold-primary);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}
.btn-outline:hover {
  background: var(--gold-muted);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}

.btn-full { width: 100%; justify-content: center; }

/* =============================================
   DECORATIVE — DOT GRID
   ============================================= */
.dot-grid {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 9px;
  pointer-events: none;
  z-index: 1;
}
.dot-grid span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0.35;
  display: block;
}

/* =============================================
   DECORATIVE — DIAGONAL CHEVRON
   ============================================= */
.chevron-deco {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 120px 320px;
  border-color: transparent transparent var(--black-secondary) transparent;
  opacity: 0.6;
  pointer-events: none;
}

/* =============================================
   HEXAGON ICON
   ============================================= */
.hex-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: var(--gold-primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hex-icon svg,
.hex-icon i {
  color: #000;
  font-size: 22px;
}
.hex-icon.large {
  width: 70px;
  height: 70px;
  min-width: 70px;
}
.hex-icon.large svg,
.hex-icon.large i { font-size: 28px; }

/* =============================================
   PHOTO FRAME
   ============================================= */
.photo-frame {
  border-radius: var(--radius-md);
  border: 3px solid var(--gold-primary);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-gold), var(--shadow-card);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-width: 36px;
  border-style: solid;
  border-color: var(--black-primary) transparent transparent var(--black-primary);
  z-index: 2;
}

/* =============================================
   SERVICE ROW ITEM
   ============================================= */
.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.service-label {
  background: var(--black-overlay);
  color: var(--white-soft);
  padding: 12px 36px 12px 20px;
  clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  flex: 1;
  transition: var(--transition);
}
.service-item:hover .service-label {
  background: rgba(212, 160, 23, 0.15);
  color: var(--white);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  border-bottom-color: rgba(212, 160, 23, 0.25);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.nav-logo-svg {
  width: 52px;
  height: 52px;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-main {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
}
.nav-brand-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--white-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-soft);
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.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); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--black-secondary);
  border-left: var(--border-gold);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { right: 0; display: flex; }
.mobile-menu a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-soft);
  padding: 14px 0;
  border-bottom: var(--border-subtle);
  transition: var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold-primary); }
.mobile-menu .btn { margin-top: 24px; }

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}
.overlay.active { display: block; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black-secondary);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--white-muted);
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}
.breadcrumb a { color: var(--gold-primary); }
.breadcrumb span { color: var(--white-muted); }
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--white-muted);
  font-family: 'Lato', sans-serif;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--gold-primary);
  padding: 50px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(0,0,0,0.2);
}
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #000;
  letter-spacing: 2px;
  line-height: 1;
}
.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.75);
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =============================================
   CONTACT STRIP
   ============================================= */
.contact-strip {
  background: var(--gold-primary);
  padding: 28px 0;
}
.contact-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-strip-item i,
.contact-strip-item svg {
  font-size: 22px;
  color: #000;
}
.contact-strip-item span {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
  letter-spacing: 0.5px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black-secondary);
  border-top: var(--border-gold);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand-text .main { color: var(--gold-primary); font-size: 1rem; }
.footer-brand-text .sub { color: var(--white-muted); font-size: 0.65rem; }
.footer-tagline {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--gold-primary);
  font-size: 1.2rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-primary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: var(--border-subtle);
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-muted);
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon i { color: var(--gold-primary); font-size: 14px; }
.footer-contact-text {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.5;
}

.footer-bottom {
  background: var(--gold-primary);
  padding: 16px 24px;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
}

/* =============================================
   CARDS — GENERIC
   ============================================= */
.card {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border-color: rgba(212, 160, 23, 0.6);
}
.card-top-border {
  border-top: 4px solid var(--gold-primary);
  border-left: none;
  border-right: none;
  border-bottom: none;
  border: var(--border-subtle);
  border-top: 4px solid var(--gold-primary);
}
.card-left-border {
  border-left: 4px solid var(--gold-primary);
  border-top: var(--border-gold);
  border-right: var(--border-gold);
  border-bottom: var(--border-gold);
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   ===== HOME PAGE =====
   ============================================= */

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--black-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/seed/construction1/1400/800');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black-primary) 55%, rgba(13,13,13,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 0 80px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-title .gold { color: var(--gold-primary); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  font-family: 'Lato', sans-serif;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero right photo */
.hero-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  z-index: 2;
  display: none;
}

/* Diagonal deco bottom-left */
.hero-deco-chevron {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 100px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hero-deco-chevron::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 150px 350px;
  border-color: transparent transparent var(--black-secondary) transparent;
  opacity: 0.5;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: var(--black-secondary);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.services-overview-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-card {
  background: var(--black-card);
  border-radius: var(--radius-md);
  border-top: var(--border-gold);
  border-right: var(--border-gold);
  border-bottom: var(--border-gold);
  border-left: 4px solid var(--gold-primary);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border-color: rgba(212, 160, 23, 0.6);
  border-left-color: var(--gold-primary);
}
.service-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.service-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
}
.service-list {
  margin-bottom: 28px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: var(--border-subtle);
  font-size: 0.95rem;
  color: var(--white-soft);
  transition: var(--transition);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
}
.service-list li:hover { color: var(--white); padding-left: 4px; }
.service-card-link {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card-link:hover { color: var(--gold-light); gap: 10px; }

/* WHY CHOOSE US */
.why-section {
  padding: 90px 0;
  background: var(--black-primary);
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/seed/construction3/1400/700');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}
.why-content { position: relative; z-index: 2; }
.why-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 36px;
}
.why-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(40, 40, 40, 0.92);
  border: var(--border-gold);
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 0.95rem;
  color: var(--white-soft);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  max-width: 360px;
  transition: var(--transition);
}
.why-pill:hover {
  background: rgba(212, 160, 23, 0.12);
  color: var(--white);
  transform: translateX(6px);
}
.why-pill-star { color: var(--gold-primary); font-size: 1.1rem; }

.why-image-wrap {
  height: 480px;
}
.why-image-wrap .photo-frame { height: 100%; }

/* =============================================
   ===== SERVICES PAGE =====
   ============================================= */
.services-section {
  padding: 80px 0;
  position: relative;
}
.services-section:nth-child(even) { background: var(--black-secondary); }

.services-section-label {
  display: inline-block;
  background: var(--gold-muted);
  border: var(--border-gold);
  padding: 6px 18px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

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

.extra-services { padding: 80px 0; background: var(--black-secondary); }
.extra-card {
  background: var(--black-card);
  border: var(--border-subtle);
  border-top: 3px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: var(--transition);
}
.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212, 160, 23, 0.4);
  border-top-color: var(--gold-primary);
}
.extra-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}
.extra-card-desc {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* =============================================
   ===== ABOUT PAGE =====
   ============================================= */
.about-story { padding: 90px 0; background: var(--black-secondary); }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--white-soft);
}
.about-value-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #000;
  font-weight: 900;
  margin-top: 2px;
}

.about-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}
.about-logo-inner {
  text-align: center;
  padding: 40px;
}
.about-logo-inner img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.about-logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  line-height: 1.2;
}
.about-logo-tagline {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--white-muted);
  margin-top: 8px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

/* =============================================
   ===== WHY US PAGE =====
   ============================================= */
.why-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.why-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/seed/construction3/1400/700');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.why-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.85);
  z-index: 1;
}
.why-hero-content { position: relative; z-index: 2; text-align: center; }
.why-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.why-hero-sub {
  font-size: 1.1rem;
  color: var(--white-muted);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  max-width: 600px;
  margin: 0 auto;
}

.why-cards-section { padding: 90px 0; background: var(--black-secondary); }
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--black-card);
  border: var(--border-subtle);
  border-top: 4px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  transition: var(--transition);
}
.why-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border-color: rgba(212, 160, 23, 0.4);
  border-top-color: var(--gold-primary);
}
.why-card-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-muted);
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-card-icon i { color: var(--gold-primary); font-size: 26px; }
.why-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 14px;
}
.why-card-desc {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.75;
}

/* =============================================
   ===== CONTACT PAGE =====
   ============================================= */
.contact-section { padding: 90px 0; background: var(--black-secondary); }
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: var(--border-gold);
}
.contact-info-block:first-of-type { border-top: var(--border-gold); }
.contact-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--gold-muted);
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon i { color: var(--gold-primary); font-size: 18px; }
.contact-info-text { line-height: 1.4; }
.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--white-soft);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.contact-form-wrap {
  background: var(--black-card);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: 48px 40px;
}
.form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 32px;
  letter-spacing: 0;
  text-transform: none;
  font-family: 'Lato', sans-serif;
}
.form-group { margin-bottom: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--black-secondary);
  color: var(--white);
  border: none;
  border-bottom: 2px solid rgba(212, 160, 23, 0.4);
  border-radius: 4px 4px 0 0;
  padding: 12px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A017' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select option {
  background: var(--black-card);
  color: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; border-radius: 4px 4px 0 0; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.15);
  background: #1f1f1f;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--white-muted); font-size: 0.9rem; }

.form-success {
  display: none;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.5);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 16px;
  text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .why-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-buttons { flex-direction: column; align-items: flex-start; }

  .services-cards { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item::after { display: none; }
  .contact-strip .container { flex-direction: column; align-items: flex-start; gap: 16px; }

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

  .why-image-wrap { height: 300px; order: -1; }
  .why-cards-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > *:first-child { grid-column: auto; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .section-pad { padding: 60px 0; }
  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 1.8rem; }
}

/* =============================================
   LOGO SVG FALLBACK (if no logo.png)
   ============================================= */
.logo-svg-crown {
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 90%, 100% { filter: brightness(1); }
  95% { filter: brightness(1.35) drop-shadow(0 0 8px rgba(212,160,23,0.8)); }
}
