/* ============================================================
   WiringCrew — Global Stylesheet
   Company: WiringCrew | Operated by Techway Pty Ltd
   Colors: Navy #0A1628 | Orange #E85D26 | White #FFFFFF | Off-white #F4F6FA
   Fonts: Barlow Condensed (headings) | Source Sans 3 (body)
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --navy:        #0A1628;
  --navy-mid:    #0f1f3d;
  --navy-light:  #162544;
  --orange:      #E85D26;
  --orange-dark: #c94e1e;
  --orange-light:#ff7a47;
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --grey-100:    #e8ecf2;
  --grey-200:    #c8d0dd;
  --grey-400:    #8090a8;
  --grey-600:    #4a5568;
  --text-dark:   #0A1628;
  --text-body:   #334155;
  --text-muted:  #64748b;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:   0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg:   0 8px 48px rgba(10,22,40,0.18);
  --shadow-xl:   0 16px 64px rgba(10,22,40,0.24);

  --transition:  0.3s ease;
  --transition-fast: 0.15s ease;

  --nav-height:  72px;
  --container:   1200px;
}

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

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

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -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;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-bg {
  background: var(--off-white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h1,
.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-orange { color: var(--orange); }

/* ── Section Labels ── */
.section-tag {
  display: inline-block;
  background: rgba(232, 93, 38, 0.12);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(232, 93, 38, 0.3);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 38, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(10,22,40,0.35);
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.navbar-logo-text span {
  color: var(--orange);
}

.navbar-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: var(--orange);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  background: none;
  border: none;
  aria-label: "Toggle menu";
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 16px 24px 24px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(10,22,40,0.5);
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--orange);
}

.mobile-nav .btn {
  display: inline-flex;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.78) 60%,
    rgba(10,22,40,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,38,0.15);
  border: 1px solid rgba(232,93,38,0.4);
  color: var(--orange-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero h1 span {
  color: var(--orange);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}

.hero-scroll-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce-arrow 2s ease infinite;
}

.hero-scroll-arrow svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,0.6);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.page-hero-content {
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange-light);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child {
  border-right: none;
}

.trust-number {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.trust-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--grey-100);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.card:hover::before {
  transform: scaleX(1);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-img-wrap {
  overflow: hidden;
}

.card-body {
  padding: 28px;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,93,38,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}

.card:hover .card-icon {
  background: var(--orange);
}

.card:hover .card-icon svg {
  stroke: var(--white);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  transition: stroke var(--transition);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
  text-decoration: none;
}

.card-link:hover {
  gap: 10px;
  color: var(--orange-dark);
}

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

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.why-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-img-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-lg);
}

.why-img-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.why-img-badge span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 40px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 2.5;
}

.check-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 2px;
}

.check-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,93,38,0.3);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--orange);
  stroke: var(--orange);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial-location {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── Gallery Preview ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-preview-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-preview-card:hover img {
  transform: scale(1.08);
}

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-preview-card:hover .gallery-preview-overlay {
  opacity: 1;
}

.gallery-preview-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-preview-overlay span {
  font-size: 0.82rem;
  color: var(--orange-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--orange);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

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

.footer-brand .navbar-logo-text {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  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.6);
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.hours-table {
  width: 100%;
  font-size: 0.85rem;
}

.hours-table td {
  padding: 5px 0;
  color: rgba(255,255,255,0.6);
}

.hours-table td:last-child {
  text-align: right;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  color: var(--orange);
}

/* ── Forms ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--orange);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,38,0.12);
}

.form-control.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form-control:focus-visible {
  outline: none;
}

.form-error {
  display: block;
  font-size: 0.82rem;
  color: #e53e3e;
  margin-top: 6px;
  font-weight: 600;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Step Form (Booking) ── */
.progress-bar-wrap {
  margin-bottom: 48px;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 16px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grey-100);
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--grey-400);
  transition: all var(--transition);
  z-index: 1;
}

.step-label-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 8px;
  text-align: center;
  transition: color var(--transition);
}

.progress-step.active .step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(232,93,38,0.2);
}

.progress-step.active .step-label-text {
  color: var(--orange);
}

.progress-step.done .step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.progress-step.done .step-label-text {
  color: var(--navy);
}

.step-connector {
  flex: 1;
  height: 2px;
  background: var(--grey-200);
  margin-top: -24px;
  max-width: 80px;
  transition: background var(--transition);
}

.step-connector.done {
  background: var(--navy);
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
}

.step-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}

/* Radio service cards */
.service-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-radio-card {
  position: relative;
  cursor: pointer;
}

.service-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-radio-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
  gap: 12px;
}

.service-radio-card:hover .service-radio-inner {
  border-color: var(--orange);
  background: rgba(232,93,38,0.03);
}

.service-radio-card input:checked + .service-radio-inner {
  border-color: var(--orange);
  background: rgba(232,93,38,0.06);
  box-shadow: 0 0 0 3px rgba(232,93,38,0.15);
}

.service-radio-inner svg {
  width: 36px;
  height: 36px;
  stroke: var(--orange);
}

.service-radio-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Booking summary */
.booking-summary {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--grey-100);
}

.summary-service {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-100);
}

.summary-service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.summary-service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table tr {
  border-bottom: 1px solid var(--grey-100);
}

.summary-table td {
  padding: 10px 0;
  font-size: 0.95rem;
}

.summary-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 40%;
}

.summary-table td:last-child {
  color: var(--navy);
  font-weight: 600;
}

/* Success message */
.booking-success {
  display: none;
  text-align: center;
  padding: 80px 32px;
}

.booking-success.show {
  display: block;
}

.success-check {
  width: 80px;
  height: 80px;
  background: rgba(232,93,38,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: scale-in 0.4s ease;
}

.success-check svg {
  width: 40px;
  height: 40px;
  stroke: var(--orange);
  stroke-width: 2.5;
}

/* ── Gallery Full Page ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 100px;
  border: 2px solid var(--grey-200);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,93,38,0.05);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-item-tag {
  font-size: 0.76rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 100px;
  display: inline-block;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,22,40,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  width: 90%;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lightbox.open .lightbox-inner {
  transform: scale(1);
}

.lightbox-img {
  width: 100%;
  max-height: 62vh;
  object-fit: cover;
}

.lightbox-info {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-details h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.lightbox-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(10,22,40,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  z-index: 2;
}

.lightbox-close:hover {
  background: var(--orange);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(10,22,40,0.65);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}

.lightbox-nav:hover {
  background: var(--orange);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.lightbox-prev { left: -22px; }
.lightbox-next { right: -22px; }

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
  gap: 16px;
}

.faq-question:hover,
.faq-item.open .faq-question {
  background: rgba(232,93,38,0.04);
  color: var(--orange);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: var(--white);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,93,38,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
}

.contact-detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--orange-light);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ── Hours table ── */
.hours-grid {
  display: table;
  width: 100%;
  font-size: 0.88rem;
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day { font-weight: 600; }

/* ── About page ── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mission-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mission-icon {
  width: 68px;
  height: 68px;
  background: rgba(232,93,38,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
}

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

.team-card {
  text-align: center;
}

.team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--grey-100);
  transition: border-color var(--transition);
}

.team-card:hover .team-img {
  border-color: var(--orange);
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grey-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  flex: 1;
  text-align: right;
  padding-right: 32px;
}

.timeline-item:nth-child(even) .timeline-year {
  text-align: left;
  padding-right: 0;
  padding-left: 32px;
}

.timeline-year span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--orange);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding-left: 32px;
}

.timeline-item:nth-child(even) .timeline-content {
  padding-left: 0;
  padding-right: 32px;
  text-align: right;
}

.timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Certs strip */
.certs-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
}

.cert-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,93,38,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.cert-badge-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.cert-badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Services page — alternating sections */
.service-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--grey-100);
}

.service-section:last-child { border-bottom: none; }

.service-alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-alt-grid.reverse {
  direction: rtl;
}

.service-alt-grid.reverse > * {
  direction: ltr;
}

.service-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,93,38,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-detail-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--orange);
}

.service-includes {
  margin: 24px 0 32px;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--grey-100);
}

.service-includes li:last-child { border-bottom: none; }

.service-includes li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--orange-dark);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img img { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-alt-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-alt-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column !important; gap: 0; }
  .timeline-dot { left: 20px; }
  .timeline-year { text-align: left; padding: 0 0 8px 52px; }
  .timeline-item:nth-child(even) .timeline-year { padding-left: 52px; }
  .timeline-content { padding: 0 0 0 52px; }
  .timeline-item:nth-child(even) .timeline-content { padding: 0 0 0 52px; text-align: left; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 72px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-radio-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

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

  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .service-radio-grid { grid-template-columns: 1fr; }
  .certs-strip { flex-direction: column; align-items: center; }

  .footer-bottom { flex-direction: column; text-align: center; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  .lightbox-inner { border-radius: var(--radius-md); }
}

/* ── Focus visible ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* --- PREMIUM REDESIGN OVERRIDES --- */
.glass-nav {
  background: rgba(10, 22, 40, 0.7) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

.glass-card {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 15px 45px rgba(232, 93, 38, 0.15) !important;
}

.hero-bg img {
  transform: scale(1.05);
  animation: slowZoom 25s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.95) 0%,
    rgba(10,22,40,0.75) 50%,
    rgba(232,93,38,0.35) 100%
  ) !important;
}

.section-bg {
  background: linear-gradient(135deg, #f4f6fa 0%, #e8ecf2 100%) !important;
  position: relative;
  overflow: hidden;
}
.section-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232,93,38,0.06) 0%, transparent 40%);
  z-index: 0;
  animation: rotateGlow 40s linear infinite;
}
.section-bg .container {
  position: relative;
  z-index: 1;
}
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  overflow: hidden;
  position: relative;
}
.card-icon svg {
  stroke: var(--white) !important;
  position: relative;
  z-index: 2;
}
.card:hover .card-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(232,93,38,0.3);
}

.hero h1 {
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-item {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}
.trust-item:hover {
  background: rgba(255,255,255,0.08);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(232, 93, 38, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(232, 93, 38, 0.5);
}

/* --- ADVANCED ANIMATIONS & PROCESS SECTION --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.process-step {
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(232,93,38,0.4);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}
.process-step:hover .step-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Parallax Bubbles */
.parallax-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: floatBubble 15s infinite alternate ease-in-out;
}
.bubble-1 {
  width: 300px;
  height: 300px;
  background: rgba(232,93,38,0.15);
  top: -100px;
  left: -100px;
}
.bubble-2 {
  width: 400px;
  height: 400px;
  background: rgba(10,22,40,0.5);
  bottom: -150px;
  right: -100px;
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

@keyframes floatBubble {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 40px) scale(1.1); }
  100% { transform: translate(-30px, 80px) scale(0.9); }
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Footer Mobile Centering Override */
@media (max-width: 768px) {
  .footer { text-align: center; }
  .footer-brand .navbar-logo { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-contact-item { justify-content: center; }
  .hours-table { margin: 0 auto; }
}
