/* =============================================
   OWL SECURITY — Global Stylesheet
   Brand: Deep Red #C41E1E | Black #0D0D0D | White #FFFFFF
   ============================================= */

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

:root {
  --red:       #C41E1E;
  --red-dark:  #8B0000;
  --red-light: #E53232;
  --black:     #0D0D0D;
  --dark:      #1A1A1A;
  --mid:       #2C2C2C;
  --gray:      #6B6B6B;
  --light:     #F4F4F4;
  --white:     #FFFFFF;
  --font:      'Segoe UI', Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow:    0 4px 24px rgba(0,0,0,0.18);
  --radius:    6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p  { margin-bottom: 1rem; color: #444; }

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark p { color: #ccc; }
.section--red  { background: var(--red); color: var(--white); }
.section--red p { color: rgba(255,255,255,.85); }
.section--light { background: var(--light); }
.text-center { text-align: center; }
.text-red    { color: var(--red); }
.tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 3px;
  margin-bottom: .8rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .75rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn--red   { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--dark); }
.btn--dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn--dark:hover { background: var(--black); }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.navbar__logo img { height: 52px; width: auto; border-radius: 4px; }
.navbar__brand {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.navbar__brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--white);
  text-transform: uppercase;
}
.navbar__brand-sub {
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--red);
  text-transform: uppercase;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.navbar__nav a {
  color: #ccc;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--white); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }

.navbar__dropdown {
  position: relative;
}
.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 3px solid var(--red);
}
.navbar__dropdown:hover .navbar__dropdown-menu { display: block; }
.navbar__dropdown-menu a {
  display: block;
  padding: .7rem 1.2rem;
  font-size: .85rem;
  color: #ccc;
  border-bottom: 1px solid #333;
}
.navbar__dropdown-menu a:last-child { border-bottom: none; }
.navbar__dropdown-menu a:hover { background: var(--mid); color: var(--white); }

.navbar__cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .3rem;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  background: var(--dark);
  padding: 1rem 1.5rem 1.5rem;
}
.navbar__mobile.open { display: block; }
.navbar__mobile a {
  display: block;
  color: #ccc;
  padding: .6rem 0;
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid #333;
}
.navbar__mobile a:hover { color: var(--white); }
.navbar__mobile .mobile-sub a {
  padding-left: 1.2rem;
  font-size: .875rem;
  color: #aaa;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,30,30,.85) 0%, rgba(13,13,13,.95) 55%);
  z-index: 1;
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255,255,255,.015) 35px,
    rgba(255,255,255,.015) 70px
  );
  z-index: 2;
}
.hero__content {
  position: relative; z-index: 3;
  max-width: 680px;
  padding: 0 1.5rem;
  margin-left: calc((100vw - 1180px) / 2);
}
.hero__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero h1 span { color: var(--red); }
.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badge {
  position: absolute;
  bottom: 3rem; right: 5%;
  z-index: 3;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  display: flex; gap: 2rem;
}
.hero__badge-item { text-align: center; color: var(--white); }
.hero__badge-num  { font-size: 1.8rem; font-weight: 900; color: var(--red); line-height: 1; }
.hero__badge-lbl  { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: #ccc; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(196,30,30,.2) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.page-hero p  { color: #aaa; font-size: 1.1rem; max-width: 640px; margin: 0; }
.breadcrumb {
  display: flex; gap: .5rem;
  font-size: .85rem; color: #888;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: #555; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 3rem; }
.section-header.text-center { align-items: center; }
.section-header h2 { margin-bottom: .7rem; }
.section-header p { font-size: 1.05rem; max-width: 600px; }
.section-header.text-center p { margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: 1px solid #eee;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(196,30,30,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--red);
}
.service-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p  { font-size: .9rem; margin-bottom: 1.2rem; }
.service-card a  { color: var(--red); font-size: .9rem; font-weight: 700; }
.service-card a:hover { text-decoration: underline; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.why-item { text-align: center; padding: 1.5rem 1rem; }
.why-item__icon {
  width: 70px; height: 70px;
  background: rgba(196,30,30,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  color: var(--red);
}
.why-item h3 { margin-bottom: .5rem; }
.why-item p  { font-size: .9rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--red);
  padding: 3rem 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item__num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.stat-item__lbl {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

/* ── SERVICE DETAIL ── */
.service-detail { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.service-detail__body h2 { margin-bottom: 1rem; }
.service-detail__body h3 { color: var(--red); margin: 1.8rem 0 .6rem; }
.service-sidebar {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 90px;
}
.service-sidebar h3 { color: var(--red); margin-bottom: 1.2rem; font-size: 1.1rem; }
.service-sidebar ul li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .55rem 0;
  font-size: .95rem;
  border-bottom: 1px solid #333;
  color: #ddd;
}
.service-sidebar ul li:last-child { border-bottom: none; }
.service-sidebar ul li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.service-sidebar .btn { width: 100%; text-align: center; margin-top: 1.5rem; display: block; }
.service-sidebar .contact-info { margin-top: 1.5rem; border-top: 1px solid #333; padding-top: 1.2rem; }
.service-sidebar .contact-info p { color: #aaa; font-size: .85rem; margin-bottom: .5rem; }
.service-sidebar .contact-info a { color: var(--red); font-weight: 700; }

/* ── CALLOUT BANNER ── */
.callout {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  padding: 3.5rem 0;
  text-align: center;
}
.callout h2 { color: var(--white); margin-bottom: .6rem; }
.callout p  { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; font-size: 1.05rem; }
.callout .btn--outline:hover { color: var(--red); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-left: 4px solid var(--red);
}
.testimonial-card__stars { color: #F5A623; font-size: 1.1rem; margin-bottom: .8rem; }
.testimonial-card blockquote { font-style: italic; font-size: .95rem; color: #555; margin-bottom: 1rem; }
.testimonial-card cite { font-weight: 700; font-size: .85rem; color: var(--dark); }

/* ── ABOUT PAGE ── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-intro__img {
  background: linear-gradient(135deg, var(--red-dark), var(--black));
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  color: var(--white);
  text-align: center;
}
.value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--red); margin-bottom: .5rem; }
.value-card p  { color: #aaa; font-size: .9rem; }

/* ── CAREERS ── */
.careers-hero-content { max-width: 700px; }
.job-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.job-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all var(--transition);
}
.job-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.job-card__type {
  display: inline-block;
  background: rgba(196,30,30,.1);
  color: var(--red);
  font-size: .75rem; font-weight: 700;
  padding: .2rem .7rem; border-radius: 3px;
  margin-bottom: .8rem; text-transform: uppercase;
}
.job-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.job-card p  { font-size: .9rem; margin-bottom: 1rem; }
.job-card__meta { display: flex; gap: 1rem; font-size: .82rem; color: var(--gray); margin-bottom: 1.2rem; }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.perk-item {
  display: flex; gap: 1rem;
  align-items: flex-start;
}
.perk-item__icon { font-size: 1.8rem; flex-shrink: 0; }
.perk-item h4 { margin-bottom: .3rem; font-size: 1rem; }
.perk-item p  { font-size: .85rem; margin: 0; }

/* ── CONTACT ── */
.contact-wrapper { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; }
.contact-form {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form h2 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; display: flex; flex-direction: column; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--red); margin-bottom: 1.2rem; }
.info-item { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.info-item__icon { font-size: 1.2rem; flex-shrink: 0; color: var(--red); }
.info-item p { color: #ccc; font-size: .9rem; margin: 0; }
.info-item strong { color: var(--white); display: block; margin-bottom: .2rem; font-size: .95rem; }
.social-links { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-link {
  width: 38px; height: 38px;
  background: var(--mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: .9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: #aaa;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #222;
  margin-bottom: 1.5rem;
}
.footer-brand__logo {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.footer-brand__logo img { height: 48px; border-radius: 4px; }
.footer-brand__name {
  font-size: 1.2rem; font-weight: 900;
  color: var(--white); letter-spacing: .05em; text-transform: uppercase;
}
.footer-brand__sub { font-size: .6rem; color: var(--red); letter-spacing: .15em; text-transform: uppercase; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .88rem; color: #888; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: .88rem; }
.footer-col a { color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .hero__content { margin-left: 1.5rem; }
  .hero__badge { display: none; }
}
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro__img { max-height: 280px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 70vh; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
}
