@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --charcoal:     #1c1c1e;
  --charcoal-mid: #2a2a2e;
  --charcoal-light:#3a3a3e;
  --concrete:     #6b6b70;
  --concrete-light:#9a9aa0;
  --stone:        #b8b0a4;
  --stone-light:  #d8d0c4;
  --stone-pale:   #f4f0ea;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-pale:    #faf3e0;
  --rust:         #b54a28;
  --white:        #ffffff;
  --gray-light:   #f7f5f2;
  --gray-mid:     #e4e0da;
  --gray-text:    #706a62;
  --dark:         #111110;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --shadow-sm:    0 2px 8px rgba(17,17,16,0.1);
  --shadow-md:    0 8px 32px rgba(17,17,16,0.14);
  --shadow-lg:    0 20px 60px rgba(17,17,16,0.2);
  --radius:       10px;
  --radius-lg:    18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(17,17,16,0.97);
  backdrop-filter: blur(12px);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.navbar.scrolled { height: 58px; }
.nav-logo { font-family: var(--font-display); font-size: 24px; color: var(--white); letter-spacing: 2px; line-height: 1; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-phone { color: var(--gold) !important; font-weight: 600 !important; }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700 !important; border-radius: 7px !important; padding: 10px 22px !important; transition: all 0.2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(17,17,16,0.92) 0%, rgba(28,28,30,0.85) 50%, rgba(42,42,46,0.78) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(180,170,160,0.04) 0px,
      rgba(180,170,160,0.04) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(180,170,160,0.03) 0px,
      rgba(180,170,160,0.03) 1px,
      transparent 1px,
      transparent 40px
    );
  background-color: var(--charcoal);
  display: flex; align-items: center;
  padding: 100px 48px 80px;
  position: relative; overflow: hidden;
}

.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.06) 50%, rgba(201,168,76,0.12) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 64px; align-items: center; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 8px 18px; border-radius: 4px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 1.5px; text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  color: var(--white); line-height: 0.95;
  margin-bottom: 24px; letter-spacing: 2px;
}
.hero h1 .accent { color: var(--gold); display: block; }

.hero p {
  color: rgba(255,255,255,0.7); font-size: 17px;
  line-height: 1.75; font-weight: 300;
  margin-bottom: 36px; max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold); color: var(--dark);
  padding: 15px 32px; border-radius: 7px;
  font-weight: 700; font-size: 15px; font-family: var(--font-body);
  border: none; cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.3px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 15px 32px; border-radius: 7px;
  font-weight: 600; font-size: 15px; font-family: var(--font-body);
  border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.hero-numbers {
  display: flex; gap: 24px; margin-top: 44px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-num { text-align: center; }
.hero-num strong { display: block; font-family: var(--font-display); font-size: 36px; color: var(--gold-light); letter-spacing: 1px; line-height: 1; }
.hero-num span { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; margin-top: 4px; display: block; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px;
}
.hero-card h3 { font-family: var(--font-display); color: var(--gold-light); font-size: 26px; letter-spacing: 1.5px; margin-bottom: 6px; }
.hero-card > p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 22px; }
.paver-types { display: flex; flex-direction: column; gap: 10px; }
.paver-type { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; transition: all 0.2s; cursor: default; }
.paver-type:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.25); }
.pt-icon { font-size: 22px; }
.paver-type strong { color: var(--white); font-size: 14px; display: block; margin-bottom: 1px; font-weight: 600; }
.paver-type span { color: rgba(255,255,255,0.45); font-size: 12px; }

/* ===== SHARED ===== */
.section { padding: 88px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-block; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 52px); color: var(--dark); line-height: 1.05; margin-bottom: 16px; letter-spacing: 1px; }
.section-subtitle { color: var(--gray-text); font-size: 17px; max-width: 580px; line-height: 1.75; font-weight: 300; }

/* ===== SERVICES ===== */
.services-section { background: var(--gray-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-mid);
  transition: all 0.3s; cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--charcoal), var(--concrete));
  transition: all 0.3s;
}
.service-card:hover .card-top { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.card-body { padding: 28px 26px 26px; }
.card-icon { font-size: 34px; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 24px; color: var(--dark); letter-spacing: 0.5px; margin-bottom: 10px; }
.service-card p { color: var(--gray-text); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.card-link { color: var(--gold); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 5px; letter-spacing: 0.5px; text-transform: uppercase; font-size: 12px; transition: gap 0.2s; }
.service-card:hover .card-link { gap: 9px; }

/* ===== WHY US ===== */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.why-feature {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 20px; border-radius: var(--radius);
  border: 1px solid var(--gray-mid); transition: all 0.25s;
}
.why-feature:hover { border-color: var(--gold); background: var(--gold-pale); }
.wf-icon { width: 46px; height: 46px; min-width: 46px; background: var(--charcoal); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.25s; }
.why-feature:hover .wf-icon { background: var(--gold); }
.why-feature h4 { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.why-feature p { font-size: 13px; color: var(--gray-text); line-height: 1.55; }

.why-visual {
  background: var(--charcoal);
  border-radius: var(--radius-lg); padding: 48px 40px;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 30px);
}
.why-visual::after { content: '🧱'; position: absolute; font-size: 160px; opacity: 0.05; right: -20px; bottom: -20px; }
.why-visual h3 { font-family: var(--font-display); color: var(--white); font-size: 30px; letter-spacing: 1px; margin-bottom: 8px; position: relative; z-index: 1; }
.why-visual > p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-bottom: 28px; position: relative; z-index: 1; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.area-tag { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); padding: 8px 16px; border-radius: 4px; font-size: 13px; font-weight: 500; }

/* ===== PROCESS ===== */
.process-section { background: var(--stone-pale); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 52px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--concrete)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.ps-num { width: 70px; height: 70px; border-radius: 50%; background: var(--charcoal); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; color: var(--gold); letter-spacing: 1px; margin: 0 auto 16px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.process-step:hover .ps-num { background: var(--gold); color: var(--dark); transform: scale(1.08); }
.process-step h4 { font-weight: 700; font-size: 14px; color: var(--dark); margin-bottom: 6px; }
.process-step p { font-size: 12px; color: var(--gray-text); line-height: 1.55; }

/* ===== MATERIALS ===== */
.materials-section {
  background: var(--charcoal);
  padding: 88px 48px;
}
.materials-inner { max-width: 1200px; margin: 0 auto; }
.materials-inner .section-label { color: var(--gold-light); }
.materials-inner .section-title { color: var(--white); }
.materials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.material-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center;
  transition: all 0.3s;
}
.material-card:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.mat-icon { font-size: 38px; margin-bottom: 14px; }
.material-card h4 { font-family: var(--font-display); color: var(--white); font-size: 20px; letter-spacing: 0.5px; margin-bottom: 8px; }
.material-card p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-light); padding: 88px 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.t-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-mid);
  transition: all 0.3s; position: relative;
}
.t-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-family: var(--font-display); font-size: 80px; color: var(--gold); opacity: 0.15; line-height: 1; }
.t-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.t-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.t-card blockquote { color: var(--gray-text); font-size: 14px; line-height: 1.75; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--charcoal); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--gold); font-family: var(--font-display); letter-spacing: 0.5px; }
.t-author strong { color: var(--dark); font-size: 14px; display: block; }
.t-author span { color: var(--concrete-light); font-size: 12px; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%); padding: 88px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 1px, transparent 1px, transparent 40px); }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); color: var(--white); margin-bottom: 16px; letter-spacing: 1.5px; position: relative; z-index: 1; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 36px; font-weight: 300; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 64px 48px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { font-family: var(--font-display); font-size: 26px; color: var(--white); letter-spacing: 2px; margin-bottom: 14px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all 0.2s; cursor: pointer; }
.social-btn:hover { background: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }

/* ===== CONTACT PAGE ===== */
.page-hero { background: var(--charcoal); padding: 130px 48px 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px); }
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; color: rgba(255,255,255,0.4); font-size: 13px; margin-bottom: 18px; position: relative; z-index: 1; }
.breadcrumb a { color: var(--gold-light); }
.page-hero h1 { font-family: var(--font-display); color: var(--white); font-size: clamp(36px, 5vw, 60px); letter-spacing: 2px; margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 580px; margin: 0 auto; font-weight: 300; position: relative; z-index: 1; }

.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 80px 48px; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 36px; letter-spacing: 1px; font-weight: 400; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--gray-text); margin-bottom: 30px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.8px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-mid); border-radius: 8px; font-family: var(--font-body); font-size: 15px; color: var(--dark); background: var(--white); transition: all 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { height: 130px; resize: vertical; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.c-card { background: var(--gray-light); border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--gray-mid); }
.c-card.dark { background: var(--charcoal); border: none; }
.c-card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.5px; font-weight: 400; margin-bottom: 14px; color: var(--dark); }
.c-card.dark h3 { color: var(--gold-light); }
.c-card.dark p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 16px; }
.phone-big { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); padding: 14px 18px; border-radius: 8px; color: white; font-weight: 700; font-size: 20px; transition: all 0.2s; margin-bottom: 10px; }
.phone-big:hover { background: rgba(201,168,76,0.2); }
.c-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.c-info-icon { font-size: 18px; margin-top: 1px; }
.c-info-item strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 2px; font-weight: 600; }
.c-info-item span, .c-info-item a { font-size: 13px; color: var(--gray-text); }
.c-info-item a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; padding: 60px 32px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .section, .materials-section, .testimonials-section, .cta-section { padding: 60px 20px; }
  .services-grid, .materials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 20px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-wrap { padding: 40px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 20px 70px; }
}
