/*
Theme Name:   ATS Electrical
Theme URI:    https://www.ats.com.au/
Description:  Custom WordPress theme for Australian Technical Services. Clean, bold design in red, black and grey.
Author:       Australian Technical Services
Author URI:   https://www.ats.com.au/
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  ats-theme
Tags: red, black, grey, electrician, business
*/

/* ==========================================================================
   VARIABLES & RESET
   ========================================================================== */
:root {
  --red:        #CC0000;
  --red-dark:   #990000;
  --black:      #111111;
  --dark:       #1e1e1e;
  --dark2:      #2a2a2a;
  --mid:        #555555;
  --light:      #f5f5f5;
  --border:     #e0e0e0;
  --white:      #ffffff;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background: var(--black);
  border-bottom: 3px solid var(--red);
  padding: 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.site-logo span { color: var(--red); }
.site-logo:hover { color: var(--white); }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
}
.header-phone:hover { color: var(--red); }
.header-licence {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  border-left: 1px solid #333;
  padding-left: 16px;
}
.btn-quote {
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 3px;
  transition: background .2s;
}
.btn-quote:hover { background: var(--red-dark); color: var(--white) !important; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.main-nav-wrap {
  background: var(--dark2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 20px;
  transition: background .2s, color .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  background: var(--red);
  color: var(--white);
}

/* Dropdowns */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--black);
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 999;
}
.nav-menu li:hover > .sub-menu { display: block; }
.nav-menu .sub-menu li a {
  display: block;
  color: #ccc;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  border-bottom: 1px solid #222;
  transition: background .2s, color .2s;
}
.nav-menu .sub-menu li a:hover {
  background: var(--red);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: .3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark2) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0;
  width: 45%;
  height: 100%;
  background: var(--red);
  opacity: .04;
  transform: skewX(-8deg);
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; min-width: 280px; }
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  color: #bbb;
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 3px;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); }
.hero-phone {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.hero-phone:hover { color: var(--red); }
.hero-card {
  flex: 0 0 auto;
  background: var(--red);
  color: var(--white);
  padding: 30px 36px;
  border-radius: 4px;
  text-align: center;
  font-family: var(--font-head);
}
.hero-card .label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; opacity: .85; }
.hero-card .rec { font-size: 36px; font-weight: 900; letter-spacing: 4px; margin: 6px 0; }
.hero-card .sub  { font-size: 11px; opacity: .75; }

/* ==========================================================================
   SERVICE STRIP
   ========================================================================== */
.service-strip {
  background: var(--red);
  padding: 16px 0;
}
.service-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.service-strip a {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s;
}
.service-strip a:hover { opacity: .75; color: var(--white); }

/* ==========================================================================
   SECTIONS — SHARED
   ========================================================================== */
.section { padding: 72px 0; }
.section-light { background: var(--light); }
.section-dark  { background: var(--dark); }
.section-black { background: var(--black); }
.section-red   { background: var(--red); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  margin-bottom: 14px;
}
.section-head.light h2 { color: var(--white); }
.section-head p { color: var(--mid); font-size: 17px; max-width: 560px; margin: 0 auto; }
.section-head.light p { color: #aaa; }
.divider {
  width: 56px;
  height: 4px;
  background: var(--red);
  margin: 0 auto 16px;
}
.divider.left { margin-left: 0; }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.13); }
.card-icon { font-size: 40px; margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p  { color: var(--mid); font-size: 15px; margin-bottom: 20px; }
.card-subs { margin-bottom: 20px; }
.card-subs li {
  color: var(--mid);
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.card-subs li::before { content: '› '; color: var(--red); font-weight: 700; }
.card-link {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-link:hover { color: var(--red-dark); }

/* ==========================================================================
   WHY ATS
   ========================================================================== */
.why-grid {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}
.why-content { flex: 1; min-width: 280px; }
.why-content .eyebrow {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why-content h2 { color: var(--white); font-size: clamp(26px,4vw,36px); font-weight: 900; margin-bottom: 18px; }
.why-content h2 span { color: var(--red); }
.why-content p { color: #aaa; margin-bottom: 28px; }
.why-list { flex: 1; min-width: 260px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #2a2a2a;
}
.why-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
}
.why-item-title { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.why-item-sub   { color: #777; font-size: 13px; }

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background: var(--black);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid #222;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 140px;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid #222;
}
.stat:last-child { border-right: none; }
.stat-num {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: #888;
  font-family: var(--font-head);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================================================================
   CLIENTS
   ========================================================================== */
.clients-strip { padding: 44px 0; background: var(--light); border-top: 1px solid var(--border); }
.clients-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 28px;
}
.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.client-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #333;
  border-radius: 3px;
}

/* ==========================================================================
   INNOVATIONS
   ========================================================================== */
.innovations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.innovation-card { border-radius: 4px; overflow: hidden; }
.innovation-head {
  padding: 36px 32px;
  text-align: center;
}
.innovation-head.red  { background: var(--red); }
.innovation-head.dark { background: var(--dark2); }
.innovation-head .icon { font-size: 48px; margin-bottom: 12px; }
.innovation-head h3 { color: var(--white); font-size: 24px; font-weight: 900; }
.innovation-body {
  background: var(--light);
  padding: 28px 32px;
  border-top: none;
}
.innovation-body p { color: var(--mid); font-size: 15px; margin-bottom: 16px; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner { background: var(--red); padding: 64px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(24px,3vw,36px); font-weight: 900; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 3px;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .9; color: var(--red); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: background .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* ==========================================================================
   INNER PAGE HERO
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark2) 100%);
  padding: 60px 0 48px;
  border-bottom: 4px solid var(--red);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
}
.breadcrumb {
  color: #666;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--red); }
.breadcrumb span { margin: 0 8px; color: #444; }
.page-hero h1 { color: var(--white); font-size: clamp(28px,4vw,44px); font-weight: 900; margin-bottom: 12px; }
.page-hero .sub { color: #bbb; font-size: 17px; max-width: 640px; }

/* ==========================================================================
   INNER PAGE LAYOUT
   ========================================================================== */
.page-layout {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  padding: 64px 0 80px;
  flex-wrap: wrap;
}
.page-content { flex: 1; min-width: 280px; }
.page-sidebar { flex: 0 0 280px; min-width: 240px; }

/* Content styles */
.page-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 36px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; margin-top: 24px; color: var(--black); }
.page-content p  { color: #444; line-height: 1.75; }
.page-content ul { margin: 12px 0 16px 0; }
.page-content ul li {
  color: #444;
  font-size: 15px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}
.page-content ul li::before { content: '›'; color: var(--red); font-weight: 700; position: absolute; left: 0; }

.content-divider { width: 50px; height: 3px; background: var(--red); margin-bottom: 20px; }

/* Highlight box */
.highlight-box {
  background: var(--black);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 4px;
  border-left: 4px solid var(--red);
  margin: 28px 0;
}
.highlight-box h3 { color: var(--red); font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.highlight-box p  { color: #bbb; margin: 0; }

/* Project card */
.project-card {
  background: var(--light);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 24px;
}
.project-card .award {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.project-card .award.dark { background: var(--dark2); }
.project-card h3 { font-size: 18px; margin-bottom: 10px; }
.project-card p  { color: #555; font-size: 15px; line-height: 1.7; }

/* Checklist */
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0 !important;
  border-bottom: 1px solid var(--border) !important;
  padding-left: 0 !important;
}
.checklist li::before { display: none !important; }
.checklist li .chk {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.sidebar-box {
  background: var(--light);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-box h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 16px;
}
.sidebar-nav li { border-bottom: 1px solid var(--border); }
.sidebar-nav li a {
  display: block;
  padding: 10px 0;
  color: #333;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  transition: color .2s, padding-left .2s;
}
.sidebar-nav li a::before { content: '› '; color: var(--red); font-weight: 700; }
.sidebar-nav li a:hover { color: var(--red); padding-left: 4px; }

.sidebar-contact {
  background: var(--black);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
}
.sidebar-contact .sc-label {
  color: #888;
  font-family: var(--font-head);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.sidebar-contact .sc-phone {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 14px;
}
.sidebar-contact .sc-phone:hover { color: var(--red); }
.sidebar-contact .sc-btn {
  display: block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  border-radius: 3px;
  transition: background .2s;
}
.sidebar-contact .sc-btn:hover { background: var(--red-dark); color: var(--white); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item .icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-head); margin-bottom: 4px; }
.contact-info-item p  { color: var(--mid); font-size: 15px; margin: 0; }
.contact-info-item a  { color: var(--red); font-weight: 700; }

/* CF7 Form Styles */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color .2s;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 2px rgba(204,0,0,.12); }
.wpcf7-form input[type="submit"] {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 36px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--red-dark); }
.form-label { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--black); margin-bottom: 6px; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--black);
  border-top: 4px solid var(--red);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand .logo span { color: var(--red); }
.footer-brand p { color: #666; font-size: 14px; line-height: 1.7; }
.footer-brand .phone {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  margin-top: 16px;
  display: block;
}
.footer-brand .phone:hover { color: var(--red); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2a2a;
}
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a {
  color: #666;
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #444; font-size: 13px; margin: 0; }
.footer-bottom a { color: #555; }
.footer-bottom a:hover { color: var(--red); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-tagline {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  padding: 20px 28px;
  border-radius: 3px;
  margin-bottom: 24px;
  font-style: italic;
}

/* ==========================================================================
   COMMERCIAL SUCCESS
   ========================================================================== */
.award-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--light);
  border-left: 4px solid var(--red);
  border-radius: 3px;
  margin-bottom: 16px;
  transition: box-shadow .2s;
}
.award-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.award-item.winner { border-left-color: #gold; border-left-color: #CC8800; }
.award-year {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 3px;
  align-self: flex-start;
}
.award-year.gold { background: #CC8800; }
.award-info h4 { font-size: 16px; margin-bottom: 4px; }
.award-info .badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}
.badge-gold    { background: #CC8800; color: #fff; }
.badge-silver  { background: var(--dark2); color: #fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--black);
    border-top: 3px solid var(--red);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 14px 20px; border-bottom: 1px solid #222; }
  .nav-menu .sub-menu { position: static; border: none; box-shadow: none; background: #1a1a1a; display: none; }
  .nav-menu li.open > .sub-menu { display: block; }
  .main-nav-wrap { position: relative; }
  .main-nav { position: relative; }

  .top-bar-right .header-licence { display: none; }
  .header-phone { font-size: 16px; }

  .page-layout { flex-direction: column; }
  .page-sidebar { flex: 0 0 auto; width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .why-grid { flex-direction: column; }
  .stats-inner { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid #222; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 50px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .service-strip-inner { justify-content: flex-start; gap: 16px; padding: 0 24px; overflow-x: auto; }
}
