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

:root {
  --red: #CC2020;
  --red-light: #e63030;
  --blue: #5BB8D4;
  --charcoal: #1a1a1a;
  --gray: #888;
  --light-gray: #f8f8f8;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

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

/* NAV */
.nav { background: var(--charcoal); display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; height: 72px; position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--red); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: 52px; object-fit: contain; }
.nav-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: 1px; text-transform: uppercase; line-height: 1; }
.nav-logo-text span { color: var(--red); }
.nav-logo-sub { font-size: 10px; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { color: #ccc; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--red); color: var(--white); border: none; padding: 10px 22px; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; display: inline-block; }
.nav-cta:hover { background: var(--red-light); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

/* HERO */
.hero { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; border-bottom: 1px solid #eee; }
.hero-left { padding: 5rem 3rem 5rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff5f5; border: 1px solid #ffcccc; color: var(--red); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 1.5rem; width: fit-content; }
.hero h1 { font-family: var(--font-display); font-size: 68px; font-weight: 800; line-height: 0.95; color: var(--charcoal); text-transform: uppercase; letter-spacing: -1px; margin-bottom: 0.5rem; }
.hero h1 .accent { color: var(--red); }
.hero-sub { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.25rem; }
.hero p { font-size: 16px; color: #666; line-height: 1.7; max-width: 440px; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: var(--white); border: 2px solid var(--red); padding: 13px 28px; font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--red-light); border-color: var(--red-light); }
.btn-secondary { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); padding: 13px 28px; font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }

/* HERO RIGHT */
.hero-right { background: var(--light-gray); display: flex; align-items: center; justify-content: center; padding: 3rem 2.5rem; border-left: 1px solid #eee; }
.hero-services { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 380px; }
.hero-services-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 0.25rem; }
.hero-service-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--white); border: 1px solid #e8e8e8; border-left: 4px solid var(--red); }
.hero-service-item.gc { border-left-color: var(--blue); background: #f0f9ff; }
.hero-service-icon { font-size: 22px; color: var(--red); flex-shrink: 0; }
.hero-service-item.gc .hero-service-icon { color: var(--blue); }
.hero-service-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--charcoal); letter-spacing: 0.5px; }
.hero-service-sub { font-size: 11px; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-top: 2px; }

/* STATS */
.stats-bar { background: var(--red); display: grid; grid-template-columns: repeat(3,1fr); }
.stat-item { padding: 1.5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* SECTIONS */
.section { padding: 5rem 2.5rem; }
.section-white { background: var(--white); }
.section-gray { background: var(--light-gray); }
.section-dark { background: var(--charcoal); }
.section-label { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.section-title { font-family: var(--font-display); font-size: 42px; font-weight: 800; text-transform: uppercase; line-height: 1; letter-spacing: -0.5px; margin-bottom: 0.75rem; color: var(--charcoal); }
.section-title.light { color: var(--white); }
.section-desc { font-size: 16px; color: var(--gray); max-width: 520px; line-height: 1.7; margin-bottom: 3rem; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #e0e0e0; }
.service-card { background: var(--white); padding: 2.5rem 2rem; transition: all 0.25s; position: relative; display: block; border-bottom: 3px solid transparent; }
.service-card:hover { background: var(--light-gray); border-bottom-color: var(--red); }
.service-card:hover .service-card-link { color: var(--red); }
.service-icon-wrap { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 1.25rem; color: var(--red); background: #fff5f5; }
.service-icon-wrap.blue { background: #f0f9ff; color: var(--blue); }
.service-icon-wrap.green { background: #f0fff4; color: #3B6D11; }
.service-icon-wrap.amber { background: #fffbf0; color: #854F0B; }
.service-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; color: var(--charcoal); }
.service-card-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1rem; font-size: 13px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.gc-badge { display: inline-block; background: var(--blue); color: var(--charcoal); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; margin-left: 6px; vertical-align: middle; }

/* WHY TMASO */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-point-icon { width: 44px; height: 44px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-point-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; color: var(--charcoal); }
.why-point-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.why-visual { background: var(--charcoal); padding: 3rem; text-align: center; }
.why-tagline { font-family: var(--font-display); font-size: 48px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 1rem; }
.why-tagline span { color: var(--red); display: block; }
.certifications { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.cert-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: #aaa; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 12px; }

/* ESTIMATE FORM */
.estimate-section { background: var(--light-gray); padding: 5rem 2.5rem; }
.estimate-inner { max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); }
input, select, textarea { padding: 12px 14px; border: 1.5px solid #ddd; background: var(--white); font-family: var(--font-body); font-size: 15px; color: var(--charcoal); outline: none; transition: border-color 0.2s; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: var(--red); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; width: 100%; background: var(--red); color: var(--white); border: none; padding: 16px; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--red-light); }

/* CTA BAND */
.cta-band { background: var(--red); padding: 3.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-text h2 { font-family: var(--font-display); font-size: 38px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 6px; }
.cta-band-text p { color: rgba(255,255,255,0.85); font-size: 15px; }
.btn-white { background: var(--white); color: var(--red); border: 2px solid var(--white); padding: 14px 32px; font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; white-space: nowrap; display: inline-block; }
.btn-white:hover { background: transparent; color: var(--white); }

/* FOOTER */
.footer { background: #111; padding: 4rem 2.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-logo-text span { color: var(--red); }
.footer-tagline { font-size: 11px; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { font-size: 14px; line-height: 1.7; color: #555; margin-bottom: 1.25rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #666; margin-bottom: 8px; }
.footer-col-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: #555; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid #222; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #333; flex-wrap: wrap; gap: 1rem; }
.social-links { display: flex; gap: 10px; margin-top: 1.25rem; }
.social-link { width: 34px; height: 34px; background: #222; color: #666; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s; text-decoration: none; }
.social-link:hover { background: var(--red); color: var(--white); }

/* PAGE HERO */
.page-hero { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; min-height: 340px; border-bottom: 3px solid var(--red); }
.page-hero-content { padding: 4rem 3rem 4rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.page-hero-right { background: var(--light-gray); border-left: 1px solid #eee; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.page-hero-label { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.page-hero h1 { font-family: var(--font-display); font-size: 52px; font-weight: 800; text-transform: uppercase; color: var(--charcoal); line-height: 1; margin-bottom: 1rem; }
.page-hero p { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 460px; }

/* SERVICE DETAIL */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.service-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.service-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { width: 36px; height: 36px; background: var(--red); color: var(--white); font-family: var(--font-display); font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; color: var(--charcoal); }
.step-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.service-sidebar { background: var(--charcoal); padding: 2.5rem; }
.sidebar-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 1.5rem; color: var(--white); }
.sidebar-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: #ccc; }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-icon { color: var(--red); font-size: 18px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-block-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--charcoal); }
.contact-block-content { font-size: 15px; color: var(--gray); line-height: 1.8; }
.contact-block-content a { color: var(--red); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 2rem; }
  .hero-right { border-left: none; border-top: 1px solid #eee; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-right { display: none; }
  .page-hero-content { padding: 3rem 2rem; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--charcoal); padding: 1rem 2rem; gap: 1rem; border-top: 1px solid #333; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
  .cta-band { flex-direction: column; text-align: center; }
  .nav { padding: 0 1.5rem; }
}

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 0.5rem; }
.footer-logo-wrap img { height: 52px; width: 52px; object-fit: contain; }
