/* ============================================================
   RAZE LINE DEMOLITION — MASTER STYLESHEET
   Mobile-first | SEO-friendly | Premium Industrial Design
   ============================================================ */

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

:root {
  --gold:       #C8972A;
  --gold-light: #E8B84B;
  --dark:       #0D0D0D;
  --dark-2:     #141414;
  --dark-3:     #1C1C1C;
  --dark-4:     #252525;
  --gray:       #999;
  --gray-light: #CCCCCC;
  --white:      #FFFFFF;
  --red-accent: #B03A2E;
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--gray-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: clamp(0.93rem, 2vw, 1rem); line-height: 1.75; color: var(--gray-light); }

/* --- LAYOUT CONTAINERS --- */
.container { width: 92%; max-width: 1200px; margin: 0 auto; padding: 0 4px; }
section { padding: 64px 0; }

/* --- SECTION LABELS --- */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: clamp(0.93rem, 2vw, 1.05rem);
  color: var(--gray);
  max-width: 640px;
  line-height: 1.75;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
#site-header.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  gap: 16px;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 900;
  font-family: var(--font-head);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* DESKTOP NAV */
.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 6px 12px;
  border-radius: 4px;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(200,151,42,0.08);
}

/* HEADER CTA */
.header-cta {
  display: none;
}
.header-phone {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold-light); }

/* HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV PANEL */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(200,151,42,0.2);
  border-bottom: 1px solid rgba(200,151,42,0.2);
  z-index: 998;
  padding: 16px 24px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.mobile-nav-panel.open { display: block; }
.mobile-nav-panel a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav-panel a:last-of-type { border-bottom: none; }
.mobile-nav-panel a:hover,
.mobile-nav-panel a.active { color: var(--gold); padding-left: 8px; }
.mobile-nav-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* DESKTOP LAYOUT */
@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-cta { display: flex; align-items: center; gap: 16px; }
  .hamburger { display: none; }
  .mobile-nav-panel { display: none !important; }
}

/* ============================================================
   HERO SECTION — MOBILE-FIRST CRITICAL
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,42,0.15);
  border: 1px solid rgba(200,151,42,0.4);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 0.65rem; }

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 8vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.hero-h1 .accent { color: var(--gold); display: block; }

.hero-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item i {
  color: var(--gold);
  font-size: 0.9rem;
}
.trust-item span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.55;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll span { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }
.hero-scroll i { color: var(--white); font-size: 1rem; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: var(--gold);
  padding: 0;
}
.stats-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid rgba(0,0,0,0.12);
  flex: 1 1 140px;
  min-width: 130px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.5px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-top: 4px;
  text-align: center;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--dark-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.about-badge-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: 6px;
}
.about-badge-box .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-box .txt {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.about-text { }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--dark-3);
  padding: 14px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.about-feature i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.about-feature p { font-size: 0.82rem; color: var(--gray-light); line-height: 1.5; }
.about-feature strong { display: block; font-size: 0.88rem; color: var(--white); font-weight: 600; margin-bottom: 2px; }

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-img-wrap img { height: 480px; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-card {
  background: var(--dark-3);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(200,151,42,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.service-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.service-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}
.service-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.service-body .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.service-body .service-link:hover { gap: 10px; }

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  background: var(--dark-2);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-card {
  background: var(--dark-3);
  padding: 28px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  border-radius: 0 4px 4px 0;
  transition: height 0.4s ease;
}
.why-card:hover::before { height: 100%; }
.why-card:hover {
  border-color: rgba(200,151,42,0.3);
  transform: translateY(-3px);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,151,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--gold);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   PROJECTS
   ============================================================ */
#projects { background: var(--dark); }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.project-cat {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.project-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 600px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .project-card { height: 300px; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
#service-areas { background: var(--dark-3); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.area-card:hover {
  border-color: rgba(200,151,42,0.3);
  transform: translateY(-2px);
}
.area-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,151,42,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.area-info h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 3px; }
.area-info p  { font-size: 0.78rem; color: var(--gray); line-height: 1.4; }

@media (min-width: 600px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .areas-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--dark-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testi-card {
  background: var(--dark-3);
  border-radius: 8px;
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.testi-quote {
  font-size: 3rem;
  color: rgba(200,151,42,0.2);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: -8px;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author-name { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--white); }
.testi-author-role { font-size: 0.75rem; color: var(--gold); }

@media (min-width: 700px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--dark); }
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200,151,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.75rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--dark); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: linear-gradient(135deg, #1a1200 0%, #2a1e00 50%, #1a1200 100%);
  border-top: 1px solid rgba(200,151,42,0.25);
  border-bottom: 1px solid rgba(200,151,42,0.25);
  padding: 64px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 14px; }
.cta-inner p { color: var(--gray); margin-bottom: 28px; }
.cta-btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--dark-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-info { }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail:first-child { padding-top: 0; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,151,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--white);
}
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* FORM */
.contact-form-wrap {
  background: var(--dark-3);
  padding: 32px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.84rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,151,42,0.04);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-2); }
.form-col-2 { grid-column: span 2; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success i { font-size: 2.5rem; color: #4CAF50; margin-bottom: 12px; }
.form-success h3 { color: var(--white); margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: 0.9rem; }

@media (min-width: 540px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #080808;
  border-top: 1px solid rgba(200,151,42,0.15);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-brand .logo-name { font-size: 1.15rem; }
.footer-desc {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 14px 0 18px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--gold); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.86rem; color: var(--gray); line-height: 1.4; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--gold); }

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 32px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 3s ease infinite;
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  color: #fff;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-3);
  padding: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0 40px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.55rem; color: rgba(255,255,255,0.3); }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
}
.page-hero-title span { color: var(--gold); }

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.service-detail {
  background: var(--dark);
  padding: 64px 0;
}
.service-detail:nth-child(even) { background: var(--dark-2); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.service-detail-grid.reverse { direction: ltr; }
.service-detail-img {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-body {}
.service-detail-body .section-label { margin-bottom: 8px; }
.service-detail-body h2 { margin-bottom: 14px; }
.service-detail-body p { margin-bottom: 16px; }
.service-list { margin: 14px 0 20px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: var(--gray-light);
}
.service-list li i { color: var(--gold); font-size: 0.8rem; margin-top: 4px; flex-shrink: 0; }
@media (min-width: 860px) {
  .service-detail-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid.reverse > *:first-child { order: 2; }
  .service-detail-grid.reverse > *:last-child  { order: 1; }
  .service-detail-img { height: 380px; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray  { color: var(--gray); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0;
}
.divider.center { margin-left: auto; margin-right: auto; }
.tag-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,151,42,0.1);
  border: 1px solid rgba(200,151,42,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
}

/* Print / accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
