/* HSMC - Home Security & Management Company
   Powered by Scutum
   Brand: Blue #004c99 | Grey #8a8d8f | Black #000 | White #fff */

:root {
  --blue: #004c99;
  --blue-dark: #003672;
  --blue-deeper: #00254d;
  --blue-light: #1a6fc4;
  --blue-pale: #e8f0fa;
  --grey: #8a8d8f;
  --grey-light: #c8cacc;
  --grey-lighter: #eaebec;
  --grey-dark: #5c5e60;
  --black: #000000;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #555;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --border: #e0e2e4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --radius: 6px;
  --radius-lg: 10px;
  --max-width: 1200px;
  --transition: 250ms ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4, h5, h6 { font-weight: 600; color: var(--black); line-height: 1.3; }
h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

img { max-width: 100%; height: auto; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-header h2 { font-size: 2rem; margin-bottom: 10px; }
.section-header p { color: var(--grey); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* === HEADER === */
#header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-lighter);
  position: relative;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.logo { flex-shrink: 0; margin-right: 32px; }
.logo img { height: 80px; width: auto; }

#menu { flex: 1; display: flex; justify-content: center; }

#top-toolbar {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  flex-shrink: 0;
  margin-left: 32px;
}

#top-toolbar a { color: var(--grey-dark); font-weight: 400; transition: color var(--transition); }
#top-toolbar a:hover { color: var(--blue); }

.header-search { position: relative; }
.header-search input {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  width: 180px;
  font-family: inherit;
  transition: border-color var(--transition);
}
.header-search input:focus { outline: none; border-color: var(--blue); }
.search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 4px;
}
.search-results.active { display: block; }
.search-results a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--grey-lighter);
}
.search-results a:last-child { border-bottom: none; }
.search-results a:hover { background: var(--blue-pale); color: var(--blue); }
.search-results .no-results { padding: 10px 14px; font-size: 13px; color: var(--grey); }

.header-call-btn {
  background: var(--blue);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.header-call-btn:hover {
  background: var(--blue-dark);
  color: var(--white) !important;
}

/* === NAVIGATION === */
.navbar-btn {
  display: none;
  background: var(--blue);
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background var(--transition);
}
.navbar-btn:hover { background: var(--blue-dark); }
.navbar-btn .icon-bar { display: block; width: 22px; height: 2.5px; background: var(--white); border-radius: 2px; }
.navbar-btn .icon-bar + .icon-bar { margin-top: 5px; }

.nav-menu { list-style: none; display: flex; gap: 4px; }
.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  color: var(--text);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all var(--transition);
  border-radius: 4px;
  white-space: nowrap;
}

.nav-menu > li > a:hover { color: var(--blue); background: var(--blue-pale); }
.nav-menu > li.active > a { color: var(--blue); background: none; position: relative; }
.nav-menu > li.active > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-menu li .dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 240px; background: var(--white);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); z-index: 1001; list-style: none;
  padding-top: 8px;
}
@media (min-width: 981px) {
  .nav-menu li:hover > .dropdown { display: block; }
}

.nav-menu .dropdown li a {
  display: block; padding: 11px 20px;
  color: var(--text); font-size: 13.5px;
  border-bottom: 1px solid var(--grey-lighter);
  transition: all var(--transition);
}
.nav-menu .dropdown li a:hover { background: var(--blue-pale); color: var(--blue); padding-left: 24px; }
.nav-menu .dropdown li:last-child a { border-bottom: none; }

/* === ANNOUNCEMENT BANNER === */
#announcement-bar {
  background: var(--blue);
  padding: 28px 0;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-headline {
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
}

.announcement-scutum-logo {
  height: 32px;
  vertical-align: middle;
  margin-left: 6px;
}

.announcement-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
}

.announcement-sub::before {
  content: '|';
  margin-right: 8px;
  color: rgba(255,255,255,0.3);
}

.announcement-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 10px 26px;
  border-radius: 20px;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.announcement-btn:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .announcement-content { gap: 12px; }
  .announcement-sub::before { display: none; }
}

/* === HERO === */
#slider {
  position: relative;
  overflow: hidden;
  background: var(--blue-deeper);
}

.slideshow { position: relative; width: 100%; }
.slide { position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; transition: opacity 800ms ease-in-out; }
.slide:first-child { position: relative; }
.slide.active { opacity: 1; z-index: 1; }

/* Slide-in animations for active slide content */
.slide.active .hero-tag { animation: slideInLeft 600ms ease-out 200ms both; }
.slide.active .slide-text h1,
.slide.active .slide-text h2 { animation: slideInLeft 600ms ease-out 350ms both; }
.slide.active .slide-text p { animation: slideInLeft 600ms ease-out 500ms both; }
.slide.active .hero-btns { animation: slideInLeft 600ms ease-out 650ms both; }
.slide.active .slide-img img { animation: slowZoom 7s ease-out both; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slowZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.slide-split {
  display: flex;
  align-items: stretch;
  min-height: 580px;
}

.slide-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 0;
  padding-left: calc((100vw - var(--max-width)) / 2 + 24px);
  text-align: left;
}

.slide-img {
  width: 48%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.slide-img::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, var(--blue-deeper) 0%, transparent 30%);
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.slide-text h1,
.slide-text h2 {
  font-size: 2.8rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  max-width: 500px;
}

.slide-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
}

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

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 24px;
  left: calc((100vw - var(--max-width)) / 2 + 24px);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 400ms ease;
}
.dot.active {
  background: var(--white);
  width: 28px;
}
.dot:hover {
  background: rgba(255,255,255,0.7);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-primary:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-accent { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-accent:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }

/* === FEATURED === */
/* ABOUT INTRO */
#about-intro {
  padding: 80px 0;
  background: var(--white);
}

.about-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-intro-text h2 {
  margin-bottom: 20px;
}

.about-intro-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

/* Right-side stacked cards */
.about-intro-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.mini-card-img {
  height: 100%;
  overflow: hidden;
}

.mini-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.mini-card:hover .mini-card-img img {
  transform: scale(1.06);
}

.mini-card-body {
  padding: 20px 24px;
}

.mini-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.mini-card-body p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--blue);
}
.readmore:hover { color: var(--blue-dark); gap: 10px; }
.readmore::after { content: '\2192'; font-size: 14px; transition: inherit; }

/* === CTA === */
#cta-section {
  padding: 70px 0;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

#cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
#cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
#cta-section .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === PAGE BANNER === */
.page-header-banner {
  position: relative; height: 220px; overflow: hidden;
  background: var(--blue-deeper);
}
.page-header-banner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-header-banner .banner-content { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.page-header-banner h1 { color: var(--white); font-size: 2.2rem; font-weight: 700; }
.page-header-banner .breadcrumb { color: var(--grey-light); font-size: 13px; margin-top: 8px; }
.page-header-banner .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-header-banner .breadcrumb a:hover { color: var(--white); }

/* === MAIN CONTENT === */
/* === PAGE TRANSITIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-fade-in { animation: fadeInUp 350ms ease-out; }

#mainbody { padding: 50px 0; min-height: 400px; }
.content-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.content-wrapper.full-width { grid-template-columns: 1fr; }
.main-content { line-height: 1.8; }
.main-content h2 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--grey-lighter); }
.main-content h3 { margin: 28px 0 12px; color: var(--blue-deeper); }
.main-content h4 { margin: 22px 0 8px; color: var(--blue); }
.main-content p { margin-bottom: 16px; }
.main-content ul, .main-content ol { margin: 16px 0; padding-left: 24px; }
.main-content li { margin-bottom: 8px; padding-left: 4px; }
.main-content strong { font-weight: 600; }

.component-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 20px; }

.component-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: all var(--transition);
}
.component-card:hover { border-color: var(--blue); box-shadow: var(--shadow); background: var(--blue-pale); }
.component-card h4 { margin: 0 0 6px; font-size: 1rem; }
.component-card p { font-size: 13.5px; color: var(--grey-dark); margin: 0; }

.faq-item { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--grey-lighter); }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { color: var(--blue); margin-bottom: 8px; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 20px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; transition: all var(--transition); cursor: pointer; }
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); background: var(--blue-pale); }
.service-card h4 { font-size: 14px; margin: 0; color: var(--black); }

/* === SIDEBAR === */
.sidebar-module { background: var(--bg-soft); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; border: 1px solid var(--grey-lighter); }
.sidebar-module h3 { font-size: 14px; font-weight: 700; color: var(--black); padding-bottom: 10px; border-bottom: 3px solid var(--blue); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-module ul { list-style: none; }
.sidebar-module ul li a { display: block; padding: 12px 12px; min-height: 44px; color: var(--text); font-size: 13.5px; border-radius: 4px; transition: all var(--transition); }
.sidebar-module ul li a:hover { background: var(--blue-pale); color: var(--blue); padding-left: 16px; }

/* === DOWNLOADS === */
.download-category { margin-bottom: 16px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.download-toggle {
  padding: 14px 18px;
  background: var(--bg-soft);
  cursor: pointer;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}
.download-toggle:hover { background: var(--blue-pale); }
.download-toggle:not(.sub) { padding-left: 44px; }
.download-toggle:not(.sub)::before {
  content: '\1F4C1';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.download-toggle::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  transition: transform 200ms ease;
}
.download-toggle.open::after { content: '\2212'; }
.download-toggle.sub { font-size: 14px; padding: 10px 18px; background: var(--white); border-bottom: 1px solid var(--grey-lighter); }
.download-toggle.sub:hover { background: var(--blue-pale); }
.download-body { display: none; padding: 16px 18px; animation: fadeInUp 250ms ease-out; }
.download-body .download-body { padding: 8px 0 8px 12px; }
.download-body.open { display: block; }
.download-list { list-style: none; margin: 4px 0 12px; }
.download-list li { padding: 0; }
.download-list li a {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  color: var(--blue);
}
.download-list li a::before {
  content: '\1F4C4';
  margin-right: 8px;
  font-size: 14px;
}
.download-list li a:hover { color: var(--blue-dark); }
.download-body strong { display: block; margin: 14px 0 4px; font-size: 13px; color: var(--grey-dark); text-transform: uppercase; letter-spacing: 0.5px; }

/* === FILE SHARING === */
.upload-dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
  background: var(--bg-soft);
}
.upload-dropzone.dragover { border-color: var(--blue); background: var(--blue-pale); }
.upload-dropzone p { margin: 4px 0; color: var(--grey-dark); }
.upload-btn { cursor: pointer; display: inline-block; margin-top: 8px; }
.progress-bar { height: 6px; background: var(--grey-lighter); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--blue); width: 0%; transition: width 200ms; }
.file-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.file-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.file-table th { text-align: left; padding: 10px 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey-dark); border-bottom: 2px solid var(--blue); white-space: nowrap; }
.file-table td { padding: 10px 12px; border-bottom: 1px solid var(--grey-lighter); font-size: 14px; }
.file-table tr:hover { background: var(--bg-soft); }
.file-table a { color: var(--blue); }
.btn-delete-file { background: none; border: none; color: var(--grey); font-size: 18px; cursor: pointer; padding: 4px 8px; border-radius: 4px; }
.btn-delete-file:hover { color: #c62828; background: #fce4ec; }

.sidebar-quick-links { background: var(--white); border: 2px solid var(--blue); }
.sidebar-quick-links h3 { color: var(--blue); }

.sidebar-contact { background: var(--blue); border-radius: var(--radius); padding: 28px; color: var(--white); text-align: center; }
.sidebar-contact h3 { color: var(--white); border-bottom-color: rgba(255,255,255,0.2); }
.sidebar-contact .phone { font-size: 1.5rem; font-weight: 700; display: block; margin: 14px 0; }
.sidebar-contact p { font-size: 13px; color: rgba(255,255,255,0.85); }
.sidebar-contact a { color: rgba(255,255,255,0.9); }
.sidebar-contact a:hover { color: var(--white); }

/* === FORMS === */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 14px; color: var(--black); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; max-width: 460px; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,76,153,0.1);
}
.form-group textarea { resize: vertical; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 500; }
.form-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-error { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }
button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }
.form-sent { text-align: center; padding: 48px 24px; }
.form-sent-icon { width: 72px; height: 72px; margin: 0 auto 20px; background: #e8f5e9; color: #2e7d32; border-radius: 50%; font-size: 36px; line-height: 72px; font-weight: 700; }
.form-sent-title { margin: 0 0 8px; font-size: 22px; color: var(--black); }
.form-sent-text { margin: 0; font-size: 15px; color: var(--grey-dark); }

/* === NEWS === */
.news-item { padding: 24px 0; border-bottom: 1px solid var(--grey-lighter); }
.news-item:last-child { border-bottom: none; }
.news-item .date { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.news-item h4 { margin-bottom: 8px; color: var(--blue); }

/* === FOOTER === */
#footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 60px 0 35px; }

.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }

.footer-col h4 {
  color: var(--white); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.75); font-size: 13px; transition: all var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08); gap: 14px;
}

.footer-logo img { width: 200px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-logo img:hover { opacity: 1; }
.footer-bottom .copyrights { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-contact { font-size: 13px; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--white); }

/* === SCUTUM ABOUT PAGE === */
.scutum-page { max-width: 820px; margin: 0 auto; }

.scutum-hero-card {
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-lighter);
  margin-bottom: 40px;
}

.scutum-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.scutum-logo-hsmc { width: 200px; }
.scutum-logo-sd { width: 180px; }

.scutum-plus {
  font-size: 28px;
  font-weight: 300;
  color: var(--grey-light);
}

.scutum-hero-card h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.scutum-lead {
  font-size: 16px;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.scutum-body { line-height: 1.8; }
.scutum-body p { margin-bottom: 18px; color: var(--text); }
.scutum-body h3 { margin-bottom: 12px; color: var(--black); font-size: 1.15rem; }

.scutum-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.scutum-col {
  padding: 28px;
  border-radius: var(--radius);
}

.scutum-changing {
  background: var(--blue-pale);
  border: 1px solid rgba(0,76,153,0.15);
}

.scutum-same {
  background: var(--bg-soft);
  border: 1px solid var(--grey-lighter);
}

.scutum-col h3 { margin-top: 0; font-size: 1rem; }
.scutum-col p { margin-bottom: 0; font-size: 14px; }
.scutum-col ul { padding-left: 18px; margin: 0; }
.scutum-col ul li { font-size: 14px; margin-bottom: 6px; }

.scutum-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .scutum-two-col { grid-template-columns: 1fr; }
  .scutum-logos { flex-direction: column; gap: 16px; }
  .scutum-logo-hsmc { width: 180px; }
  .scutum-logo-sd { width: 150px; }
}

/* === CONTACT PAGE === */
.contact-page { max-width: 900px; margin: 0 auto; }

.contact-top { text-align: center; margin-bottom: 40px; }
.contact-top h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-subtitle { color: var(--grey); font-size: 15px; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--grey-lighter);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.contact-card-icon {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 12px;
}

.contact-card h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--black);
}

.contact-card p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

.contact-card a { color: var(--blue); }

.contact-form-section {
  margin-bottom: 50px;
}

.contact-form-section h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

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

.contact-form-grid .form-group input { max-width: 100%; }

.contact-dealer-cta {
  text-align: center;
  padding: 40px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue);
}

.contact-dealer-cta h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--blue-deeper);
}

.contact-dealer-cta p {
  color: var(--grey-dark);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .navbar-btn { display: block; margin-left: auto; }
  #menu { position: static; }
  .nav-menu {
    display: none; flex-direction: column; width: 100%;
    background: var(--blue); position: absolute; top: 100%; left: 0;
    box-shadow: var(--shadow-lg); z-index: 1001;
    max-height: 80vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a {
    color: var(--white); border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 22px; font-size: 14px;
  }
  .nav-menu > li.active > a { box-shadow: none; background: none; color: var(--white); }
  .nav-menu > li.active > a::after { display: none; }
  .nav-menu > li > a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
  #top-toolbar { display: none; }
  .nav-menu li .dropdown {
    position: static; border-radius: 0; border-top: none;
    box-shadow: none; background: var(--blue-dark); padding-top: 0;
    display: none;
  }
  .nav-menu li.dropdown-open > .dropdown { display: block; }
  .nav-menu li .dropdown li a {
    color: rgba(255,255,255,0.75); padding: 13px 22px 13px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px;
  }
  .nav-menu li .dropdown li a:hover { color: var(--white); background: rgba(255,255,255,0.05); padding-left: 40px; }
  .about-intro-split { grid-template-columns: 1fr; }
  .content-wrapper { grid-template-columns: 1fr; }
  .sidebar { border-top: 1px solid var(--border); padding-top: 30px; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #header .container { height: 70px; }
  .logo img { height: 50px; width: auto; }
  .logo { margin-right: 0; }
  #top-toolbar { display: none; }

  /* Hero */
  .slide-split { flex-direction: column; min-height: auto; }
  .slide-text { padding: 36px 24px; }
  .slide-text h1, .slide-text h2 { font-size: 1.8rem; }
  .slide-text p { font-size: 0.95rem; }
  .slide-img { width: 100%; height: 220px; }
  .slide-img::before { background: linear-gradient(180deg, var(--blue-deeper) 0%, transparent 40%); }
  .slide-dots { left: 50%; transform: translateX(-50%); }
  .hero-btns { flex-wrap: wrap; }
  .hero-btns .btn { width: 100%; text-align: center; }

  /* About intro */
  .about-intro-text h2 { font-size: 1.6rem; }
  .about-intro-text p { font-size: 14px; }
  #about-intro { padding: 50px 0; }

  /* Mini cards */
  .mini-card { grid-template-columns: 100px 1fr; }
  .mini-card-body { padding: 14px 16px; }
  .mini-card-body h3 { font-size: 1rem; }
  .mini-card-body p { font-size: 12px; }

  /* Announcement */
  .announcement-headline { font-size: 16px; }
  .announcement-sub { font-size: 14px; }
  .announcement-scutum-logo { height: 24px; }
  #announcement-bar { padding: 18px 0; }

  /* Page banners */
  .page-header-banner { height: 160px; }
  .page-header-banner h1 { font-size: 1.6rem; }

  /* CTA */
  #cta-section { padding: 50px 0; }
  #cta-section h2 { font-size: 1.5rem; }
  #cta-section .btn-group { flex-direction: column; align-items: center; }
  #cta-section .btn-group .btn { width: 100%; max-width: 300px; text-align: center; }

  /* Footer */
  .footer-bottom { gap: 10px; flex-direction: column; text-align: center; }
  .footer-contact { font-size: 14px; }
  .copyrights { font-size: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Buttons - ensure touch-friendly size */
  .btn { padding: 14px 24px; font-size: 13px; min-height: 48px; }

  /* Hero */
  .slide-text { padding: 28px 16px; }
  .slide-text h1, .slide-text h2 { font-size: 1.4rem; }
  .slide-text p { font-size: 13px; }
  .slide-img { height: 160px; }
  .hero-tag { font-size: 10px; letter-spacing: 2px; }

  /* About intro */
  #about-intro { padding: 36px 0; }
  .about-intro-text h2 { font-size: 1.3rem; }
  .mini-card { grid-template-columns: 80px 1fr; }
  .mini-card-img { height: 90px; }

  /* Announcement */
  .announcement-content { flex-direction: column; text-align: center; }
  .announcement-text { flex-direction: column; }
  .announcement-sub::before { display: none; }
  .announcement-btn { width: 100%; max-width: 200px; text-align: center; }

  /* Footer */
  .footer-columns { grid-template-columns: 1fr; }
  .footer-col { padding-bottom: 20px; border-bottom: 1px solid var(--border); }
  .footer-col:last-child { border-bottom: none; }

  /* CTA */
  #cta-section h2 { font-size: 1.3rem; }
  #cta-section p { font-size: 14px; }

  /* Page content */
  .page-header-banner { height: 120px; }
  .page-header-banner h1 { font-size: 1.3rem; }
  #mainbody { padding: 30px 0; }
  .main-content { font-size: 14px; }
  .main-content h2 { font-size: 1.3rem; }
  .main-content h3 { font-size: 1.1rem; }
  .sidebar-contact .phone { font-size: 1.3rem; }
  .component-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }

  /* File sharing */
  .file-table th, .file-table td { padding: 8px 8px; font-size: 12px; }
}
