/*
Theme Name: Omagh Secure Storage
Theme URI: https://omaghsecurestorage.com
Author: Omagh Secure Storage
Author URI: https://omaghsecurestorage.com
Description: A modern, professional landing page theme for Omagh Secure Storage — secure self-storage for vehicles, household goods, and more.
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: omagh-secure-storage
Tags: landing-page, one-page, storage, business, professional
*/

/* =========================================================
   DESIGN TOKENS
========================================================= */
:root {
  --navy:       #1e2d3d;
  --navy-dark:  #14202d;
  --navy-mid:   #243447;
  --red:        #ED4024;
  --red-dark:   #c93118;
  --red-light:  #ff5c3a;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --light-gray: #eef0f3;
  --mid-gray:   #8a95a3;
  --dark-gray:  #4a5568;
  --text-dark:  #1a2332;

  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 32px color-mix(in srgb, var(--red) 25%, transparent);

  --transition: 0.25s ease;
  --section-pad: clamp(60px, 8vw, 100px);
}

/* =========================================================
   RESET & BASE
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--dark-gray); line-height: 1.75; }

.text-white h1, .text-white h2, .text-white h3, .text-white h4,
.text-white p { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.8); }

/* =========================================================
   LAYOUT
========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.section { padding: var(--section-pad) 0; }
.section-sm { padding: clamp(40px, 5vw, 60px) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--red) 35%, transparent);
}

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

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

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* =========================================================
   BADGE / PILL
========================================================= */
.badge {
  display: inline-block;
  background: color-mix(in srgb, var(--red) 12%, transparent);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.badge-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* =========================================================
   SECTION LABELS
========================================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.section-label.light span { color: rgba(255,255,255,0.7); }
.section-label.light::before { background: rgba(255,255,255,0.5); }

/* =========================================================
   HEADER / NAV
========================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}

#site-header.transparent {
  background: transparent;
}

#site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background-color: #ed4024;
  border: 0;
  border-radius: 6px 6px 6px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================================
   HERO SECTION
========================================================= */
#hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 20%, color-mix(in srgb, var(--red) 12%, transparent) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, color-mix(in srgb, var(--red) 8%, transparent) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--red);
}
.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-content .hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Hero image panel */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 500px;
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-floating-badge.top-left {
  top: -20px;
  left: -30px;
}
.hero-floating-badge.bottom-right {
  bottom: 30px;
  right: -30px;
}
.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-icon svg { width: 22px; height: 22px; fill: #1E2E3C; }
.floating-icon i   { font-size: 20px; color: #1E2E3C; }
.floating-text {}
.floating-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.floating-text span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* Red accent shape */
.hero-accent-shape {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 3px solid var(--red);
  border-radius: var(--radius-md);
  bottom: -15px;
  left: -15px;
  opacity: 0.4;
  pointer-events: none;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* =========================================================
   TRUST BAR / CLIENTS
========================================================= */
#trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  white-space: nowrap;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-gray);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-item i   { font-size: 18px; color: var(--red); flex-shrink: 0; }
.trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
  flex-shrink: 0;
}

/* =========================================================
   SERVICES SECTION
========================================================= */
#services {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header .section-label { justify-content: center; }
.section-header p { font-size: 1.05rem; margin-top: 16px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 32px; height: 32px; fill: var(--white); }
.service-icon i   { font-size: 28px; color: var(--white); }

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.service-card p { font-size: 0.95rem; line-height: 1.7; }

.service-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-gray);
}
.service-feature svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
  flex-shrink: 0;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */
#why-us {
  background: var(--navy);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image {
  position: relative;
  overflow: visible;
}
.why-us-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-us-image-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--red);
  border-radius: var(--radius-md);
  bottom: -24px;
  right: -24px;
  z-index: -1;
  opacity: 0.5;
}

.why-us-content h2 { color: var(--white); margin-bottom: 16px; }
.why-us-content > p { color: rgba(255,255,255,0.7); margin-bottom: 40px; }

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.feature-item:hover .feature-icon-wrap {
  background: var(--red);
  border-color: var(--red);
}
.feature-icon-wrap svg { width: 24px; height: 24px; fill: var(--white); }
.feature-icon-wrap i   { font-size: 22px; color: var(--white); }

.feature-text h4 { color: var(--white); margin-bottom: 4px; font-size: 1rem; font-weight: 700; }
.feature-text p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* =========================================================
   UNIT SIZES / PRICING
========================================================= */
#units {
  background: var(--off-white);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(var(--units-cols, 4), 1fr);
  gap: 24px;
}

.unit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.unit-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.unit-card.featured h3,
.unit-card.featured .unit-size,
.unit-card.featured .unit-desc { color: var(--white); }

.unit-popular-badge {
  position: absolute;
  top: 16px;
  right: -26px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 32px;
  transform: rotate(45deg);
  transform-origin: center;
}

.unit-card:hover:not(.featured) {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.unit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unit-card.featured .unit-icon { background: rgba(255,255,255,0.1); }
.unit-icon svg { width: 36px; height: 36px; fill: var(--navy); }
.unit-icon i   { font-size: 30px; color: var(--navy); }
.unit-card.featured .unit-icon svg { fill: var(--white); }
.unit-card.featured .unit-icon i   { color: var(--white); }

.unit-size {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.unit-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.unit-desc { font-size: 0.875rem; line-height: 1.6; margin-bottom: 24px; }
.unit-card.featured .unit-desc { color: rgba(255,255,255,0.7); }

/* =========================================================
   SECURITY SECTION (ALTERNATING)
========================================================= */
#security {
  background: var(--white);
}

.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.security-content h2 { margin-bottom: 16px; }
.security-content > p { margin-bottom: 32px; }

.security-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.security-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
}
.security-list-item svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
}

.security-visual {
  position: relative;
}
.security-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.security-stat-card {
  position: absolute;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  bottom: 30px;
  left: -30px;
  min-width: 180px;
  box-shadow: var(--shadow-md);
}
.security-stat-card .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.security-stat-card .number span { color: var(--red); }
.security-stat-card .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
#testimonials {
  background: var(--navy-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: color-mix(in srgb, var(--red) 30%, transparent);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.star { color: #f59e0b; font-size: 1rem; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.author-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* =========================================================
   LOCATION / CONTACT SECTION
========================================================= */
#contact {
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-detail-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; }
.contact-detail-icon i   { font-size: 20px; color: var(--white); }
.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 4px;
}
.contact-detail-text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 1.4rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 10%, transparent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========================================================
   CTA BANNER
========================================================= */
#cta-banner {
  background: var(--red);
  padding: 80px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner-text p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

.cta-banner-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* =========================================================
   FOOTER
========================================================= */
#site-footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); }
.social-link svg { width: 18px; height: 18px; fill: var(--white); color: var(--white); }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); }
.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--red);
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item i {
  font-size: 15px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}
.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* =========================================================
   ANIMATE ON SCROLL
========================================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"].is-visible,
[data-aos="fade-right"].is-visible { transform: translateX(0); }

/* Delay utilities */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner,
  .why-us-inner,
  .security-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .hero-visual { order: -1; }

  .hero-image-card img { height: 320px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .units-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .hero-floating-badge.top-left { top: -20px; left: 25px; }
  .hero-floating-badge.bottom-right { bottom: 16px; right: 35px; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  .why-us-image-accent { display: none; }
  .security-stat-card { left: 0; }

  [data-aos="fade-left"]  { transform: translateX(0); opacity: 0; }
  [data-aos="fade-right"] { transform: translateX(0); opacity: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .security-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-items { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .trust-bar-label { white-space: normal; text-align: center; width: 100%; }
  .trust-bar-inner { justify-content: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

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

@media (max-width: 480px) {
  .units-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-image-card img { height: 260px; }
}

/* =========================================================
   PAGE HERO — sub-page carousel banner
========================================================= */
.page-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    background: var(--navy);
    overflow: hidden;
}

.page-carousel-wrap {
    position: absolute;
    inset: 0;
}

.page-carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    will-change: opacity;
}

.page-carousel-slide.is-active { opacity: 1; }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 18, 28, 0.82) 0%,
        rgba(10, 18, 28, 0.45) 55%,
        rgba(10, 18, 28, 0.22) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 64px;
}

.page-hero-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 700px;
    margin: 0;
    line-height: 1.15;
}

.page-hero-excerpt {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
    max-width: 580px;
    margin-top: 16px;
    line-height: 1.8;
}

.page-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.page-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.page-carousel-prev { left: 24px; }
.page-carousel-next { right: 24px; }

.page-carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.page-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.page-carousel-dot.is-active {
    background: var(--white);
    transform: scale(1.4);
}

.page-body-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .page-hero { min-height: 340px; }
    .page-carousel-btn { display: none; }
    .page-hero-content { padding-bottom: 48px; }
}
