/* =========================================
   DREAMTOUCH BRICK WORK — Global Styles
   ========================================= */

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

:root {
  --red: #C0202A;
  --red-dark: #9a1820;
  --black: #111111;
  --charcoal: #222222;
  --mid-grey: #555555;
  --light-grey: #f4f4f4;
  --white: #ffffff;
  --border: #e0e0e0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

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

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 2px solid var(--red);
}


.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar .logo img {
  height: 48px;
  width: auto;
}

.navbar .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar .logo-text .brand {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar .logo-text .sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  border-bottom-color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 2px;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.7) 0%, rgba(192,32,42,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--red); }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-1px); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--red);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-item .num {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---- SECTIONS ---- */
section { padding: 80px 5%; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-body {
  font-size: 1rem;
  color: var(--mid-grey);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ---- SERVICES ---- */
.services { background: var(--light-grey); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 4px;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.65;
}

/* ---- PROJECTS / GALLERY ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 48px;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--black);
}

.project-item.wide { grid-column: span 2; }
.project-item.tall { grid-row: span 2; }

.project-item img,
.project-item video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s, opacity 0.3s;
}

.project-item.tall img,
.project-item.tall video { height: 532px; }

.project-item:hover img,
.project-item:hover video { transform: scale(1.04); opacity: 0.7; }

.project-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  opacity: 0;
  transition: opacity 0.3s;
}
.project-item:hover .project-overlay { opacity: 1; }

.project-overlay span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ---- VIDEO GALLERY ---- */
.video-gallery { background: var(--black); }
.video-gallery .section-title { color: var(--white); }
.video-gallery .section-eyebrow { color: var(--red); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.video-grid video {
  width: 100%;
  border-radius: 4px;
  background: #000;
  border: 1px solid #333;
}

/* ---- WHY US ---- */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-list .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.why-list .text h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 4px;
}
.why-list .text p {
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.6;
}

.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
  border-bottom: 4px solid var(--red);
}
.why-image-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid var(--red);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  background: var(--black);
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}
.page-header .section-eyebrow { color: var(--red); }
.page-header h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.page-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}

/* ---- ABOUT PAGE ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
  border-left: 4px solid var(--red);
}

.about-values {
  background: var(--light-grey);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 4px;
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.value-card .v-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.6;
}

.team-section { background: var(--black); }
.team-section .section-title { color: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: var(--charcoal);
  border-radius: 4px;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.team-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.team-card .team-info {
  padding: 20px 22px;
}
.team-card .team-info h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card .team-info p {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- CONTACT PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail .c-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.contact-detail .c-text h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  margin-bottom: 4px;
}
.contact-detail .c-text p,
.contact-detail .c-text a {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--light-grey);
  padding: 40px 36px;
  border-radius: 4px;
  border-top: 4px solid var(--red);
}
.contact-form-wrap h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--red-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 500;
}
.form-error {
  display: none;
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #c62828;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 500;
}

.map-wrap {
  margin-top: 56px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  padding: 56px 5% 24px;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }

.footer-col .f-contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-col .f-contact strong {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .why-us,
  .about-intro,
  .contact-layout { grid-template-columns: 1fr; }
  .why-image-wrap { order: -1; }
  .about-intro img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-item.wide { grid-column: span 2; }
  .project-item.tall { grid-row: unset; }
  .project-item.tall img,
  .project-item.tall video { height: 260px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; background: var(--white); position: fixed; top: 72px; left: 0; right: 0; padding: 20px 5%; gap: 12px; border-bottom: 2px solid var(--red); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.4rem; }
  .stats-bar { gap: 28px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
