/* ============================================
   ULLOM CONSTRUCTION — STYLE.CSS
   Colors: Red #C8102E, Black #111, White #fff, Gray #f4f4f4
   Fonts: Barlow Condensed (headings), Barlow (body)
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --black: #111111;
  --dark: #1a1a1a;
  --gray: #f4f4f4;
  --gray-mid: #e0e0e0;
  --text: #333;
  --white: #ffffff;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --header-h: 72px;
  --radius: 4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-top: var(--header-h);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

.section-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-label.light { color: #ff6b6b; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gray); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.text-center { text-align: center; }
.light { color: var(--white); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--black);
  z-index: 1000;
  border-bottom: 3px solid var(--red);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img {
  height: 50px;
  width: auto;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-size: 0.7rem;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ccc;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--red-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0d0d0d 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { transform: translate(0,0); }
  100% { transform: translate(60px,60px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  max-width: 660px;
  margin-left: 5vw;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-headline .red { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.95rem;
  animation: fadeUp 0.6s ease 0.4s both;
}
.hero-phone a { color: #aaa; transition: color var(--transition); }
.hero-phone a:hover { color: var(--white); }
.hero-logo-large {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 520px);
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
  animation: fadeIn 1s ease 0.5s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.12; }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--red);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}
.trust-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; color: #555; line-height: 1.8; }
.about-text .btn { margin-top: 0.5rem; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.highlight-card {
  background: var(--gray);
  border-left: 4px solid var(--red);
  padding: 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.highlight-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.highlight-card p { font-size: 0.9rem; color: #666; }

/* ---- SERVICES ---- */
.services h2 { margin-bottom: 2.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  display: block;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.35s ease;
}
.service-card:hover { background: rgba(200,16,46,0.12); }
.service-card:hover::before { width: 100%; }
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.25rem; }
.service-card p { font-size: 0.9rem; color: #999; line-height: 1.6; }
.service-arrow {
  display: block;
  color: var(--red);
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 700;
  transition: transform var(--transition);
}
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ---- AREA ---- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.area-map-placeholder {
  background: var(--gray);
  border: 2px solid var(--gray-mid);
  border-radius: 8px;
  padding: 2.5rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.area-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(200,16,46,0.03) 20px,
    rgba(200,16,46,0.03) 21px
  );
}
.map-label {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.map-pin-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pin {
  font-size: 0.8rem;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  color: var(--black);
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
.area-text h2 { margin-bottom: 1rem; }
.area-text p { color: #555; margin-bottom: 1.5rem; line-height: 1.8; }
.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 1rem;
  margin-bottom: 2rem;
}
.area-list li {
  font-size: 0.9rem;
  color: #444;
  padding-left: 0.8rem;
  border-left: 2px solid var(--red);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--red);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-inner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  height: 70px;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; color: #999; line-height: 1.7; margin-bottom: 0.4rem; }
.footer-owner { color: #bbb !important; font-style: italic; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.footer-nav a { font-size: 0.9rem; color: #999; transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-contact p { font-size: 0.9rem; color: #999; }
.footer-contact a { color: #ccc; transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-btn { margin-top: 0.5rem; align-self: flex-start; }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  background: var(--black);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero .section-label { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 0.75rem; }
.page-hero p { color: #aaa; position: relative; z-index: 1; max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ---- CONTENT GRID (service pages) ---- */
.content-section { padding: 5rem 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.content-text h2 { margin-bottom: 1rem; }
.content-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.content-text ul { margin: 1rem 0 1.5rem 0; }
.content-text ul li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: #444;
}
.content-text ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.8rem;
  top: 0.55rem;
}
.content-image {
  border-radius: 4px;
  overflow: hidden;
  background: var(--gray);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder {
  width: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-head);
  color: #bbb;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.1rem;
  border: 2px dashed #ddd;
  border-radius: 4px;
  position: relative;
}
.img-placeholder-icon { font-size: 3rem; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text { font-size: 0.95rem; color: #555; line-height: 1.6; }
.contact-detail-text strong { display: block; color: var(--black); font-family: var(--font-head); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-detail-text a { color: var(--red); transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--red-dark); }

.contact-form {
  background: var(--gray);
  padding: 2.5rem;
  border-radius: 6px;
  border-top: 4px solid var(--red);
}
.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- MAP EMBED ---- */
.map-embed {
  margin-top: 2rem;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--gray-mid);
}
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .area-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-logo-large { opacity: 0.08; right: -5%; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--black);
    padding: 1.5rem;
    gap: 0.5rem;
    border-top: 1px solid #222;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 1.5rem; justify-content: center; }
  .hero-logo-large { display: none; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .area-list { grid-template-columns: 1fr; }
}
