/* Custom Glassmorphism CSS Stylesheet for Watt Building Services */
/* Palette: Slate Dark theme with Warm Bronze/Gold accents */

:root {
  /* Light Mode (Default Theme) */
  --bg-primary: hsl(210, 20%, 98%);
  --bg-secondary: hsl(210, 16%, 95%);
  --bg-card: hsl(0, 0%, 100%);
  --bg-card-hover: hsl(210, 16%, 93%);
  --accent: hsl(38, 75%, 45%);
  --accent-hover: hsl(38, 80%, 38%);
  --accent-light: rgba(197, 137, 24, 0.1);
  --text-primary: hsl(215, 28%, 15%);
  --text-secondary: hsl(215, 16%, 35%);
  --text-muted: hsl(215, 12%, 50%);
  --border: rgba(0, 0, 0, 0.08);
  --border-focus: hsl(38, 75%, 45%);

  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-width: 1200px;

  /* Theme-aware layout variables */
  --bg-topbar: hsl(210, 16%, 92%);
  --bg-header: rgba(255, 255, 255, 0.85);
  --bg-footer: hsl(210, 16%, 93%);
  --hero-overlay: linear-gradient(to right, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.4) 100%), radial-gradient(ellipse at bottom left, rgba(222, 160, 43, 0.1) 0%, transparent 60%);
  --select-arrow: url("data:image/svg+xml;utf8,<svg fill='%232a3547' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  --logo-filter: invert(0.9) brightness(0.2);
  --bg-placeholder: radial-gradient(ellipse at center, hsl(210, 16%, 90%), hsl(210, 16%, 80%));
}

[data-theme="dark"] {
  /* Dark Mode Overrides */
  --bg-primary: hsl(215, 28%, 10%);
  --bg-secondary: hsl(215, 24%, 15%);
  --bg-card: hsl(215, 20%, 18%);
  --bg-card-hover: hsl(215, 18%, 22%);
  --accent: hsl(38, 65%, 52%);
  --accent-hover: hsl(38, 70%, 46%);
  --accent-light: rgba(222, 160, 43, 0.15);
  --text-primary: hsl(0, 0%, 98%);
  --text-secondary: hsl(215, 12%, 75%);
  --text-muted: hsl(215, 10%, 55%);
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: hsl(38, 65%, 52%);

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);

  --bg-topbar: hsl(215, 30%, 8%);
  --bg-header: rgba(10, 15, 24, 0.85);
  --bg-footer: hsl(215, 30%, 7%);
  --hero-overlay: linear-gradient(to right, rgba(10, 15, 24, 0.95) 40%, rgba(10, 15, 24, 0.4) 100%), radial-gradient(ellipse at bottom left, rgba(222, 160, 43, 0.15) 0%, transparent 60%);
  --select-arrow: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  --logo-filter: none;
  --bg-placeholder: radial-gradient(ellipse at center, hsl(215, 20%, 25%), hsl(215, 20%, 15%));
}

/* CSS Reset & General */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* UTILITY BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent);
  color: hsl(0, 0%, 5%);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(222, 160, 43, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* TOP CALL UTILITIES BAR */
.top-bar {
  background-color: var(--bg-topbar);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  display: block;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.top-contacts {
  display: flex;
  gap: 20px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.top-link:hover {
  color: var(--accent);
}

/* HEADER NAVIGATION */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-normal);
}

.header-container {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 110px;
  width: auto;
  filter: var(--logo-filter);
  transition: all var(--transition-normal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-cta-wrapper {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background-color: var(--bg-secondary);
  border-color: var(--accent);
  color: var(--accent);
}

.theme-toggle-btn .sun-icon {
  display: none;
}

.theme-toggle-btn .moon-icon {
  display: block;
}

[data-theme="dark"] .theme-toggle-btn .sun-icon {
  display: block;
}

[data-theme="dark"] .theme-toggle-btn .moon-icon {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 75vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  background: url('assets/hero_bg.jpg') no-repeat center center / cover;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.subtitle-badge {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(222, 160, 43, 0.3);
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 35px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Curve wave separator style */
.hero-separator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.hero-separator svg {
  position: relative;
  display: block;
  width: calc(100% + 1.2px);
  height: 50px;
  transform: rotateY(180deg);
}

.hero-separator .shape-fill {
  fill: var(--bg-secondary);
}

/* TRUST BAR / COMPASS DATA */
.trust-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  position: relative;
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 280px;
}

.trust-icon {
  background-color: var(--bg-card);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.trust-text h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.trust-text p {
  color: var(--text-muted);
  font-size: 13px;
}

/* HEADINGS & DECORATIVE SECTION DIVIDERS */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tagline {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 0 auto 24px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 16px;
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

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

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-image-container {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-card);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--bg-placeholder);
  color: var(--accent);
}

.service-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: 3px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.service-content {
  padding: 25px;
}

.service-card-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-content p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* PROCESS TIMELINE */
.process-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.step-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  border-color: var(--accent);
}

.step-number {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
  transition: all var(--transition-normal);
}

.step-card:hover .step-number {
  opacity: 0.8;
}

.step-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* OWNER BIOS / TEAM SECTION */
.team-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-featured {
  width: 100%;
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.team-featured:hover .team-photo {
  transform: scale(1.03);
}

.team-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(10, 15, 24, 0.95) 0%, rgba(10, 15, 24, 0.4) 70%, transparent 100%);
  color: hsl(0, 0%, 98%);
  backdrop-filter: blur(2px);
}

.team-photo-title {
  font-size: 20px;
  color: hsl(0, 0%, 98%);
  margin-bottom: 8px;
}

.team-photo-text {
  font-size: 14px;
  color: hsl(215, 12%, 85%);
  line-height: 1.5;
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 992px) {
  .team-layout {
    grid-template-columns: 1.2fr 1fr;
  }

  .team-featured {
    height: 100%;
  }

  .team-photo-wrapper {
    height: 100%;
  }
}

.team-card {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(222, 160, 43, 0.4);
}

.team-card-inner {
  display: flex;
  flex-direction: column;
}

.team-image-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

@media (min-width: 850px) {
  .team-card-inner {
    flex-direction: row;
  }

  .team-image-container {
    width: 200px;
    height: auto;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
}

.team-details {
  padding: 40px;
}

.team-role {
  color: var(--accent);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.team-name {
  font-size: 28px;
  margin-bottom: 15px;
}

.team-divider {
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 20px;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.65;
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.meta-item svg {
  color: var(--accent);
}

/* CONTACT & GET A QUOTE SECTION */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel {
  padding-right: 20px;
}

.panel-tag {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.panel-title {
  font-size: 34px;
  margin-bottom: 20px;
}

.panel-lead {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.method-icon {
  background-color: var(--bg-card);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.method-info span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.method-link {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.method-link:hover {
  color: var(--accent);
}

.method-text {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.buildxact-info {
  background-color: var(--bg-card);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.info-title {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--accent);
}

.buildxact-info p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Form Panel Styles */
.contact-form-panel {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}

.form-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

input,
select,
textarea {
  font-family: var(--font-body);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14.5px;
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 2px var(--accent-light);
  background-color: var(--bg-card);
}

select {
  appearance: none;
  background-image: var(--select-arrow);
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

select:required:invalid {
  color: var(--text-muted);
}

textarea {
  resize: vertical;
}

.error-msg {
  display: none;
  color: hsl(0, 80%, 60%);
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: hsl(0, 80%, 60%);
}

.form-group.has-error .error-msg {
  display: block;
}

/* SUCCESS PANEL IN FORM */
.form-success-state {
  display: none;
  text-align: center;
  padding: 40px 0;
  animation: fadeIn var(--transition-normal);
}

.success-icon-wrapper {
  background-color: var(--accent-light);
  color: var(--accent);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(222, 160, 43, 0.4);
}

.success-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.success-message {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.buildxact-redirect-notice {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
  animation: pulse 2s infinite ease-in-out;
}

.redirect-txt {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* FOOTER SECTION */
.footer {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
}

.brand-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.brand-abn {
  color: var(--text-muted);
  font-size: 12px;
}

.footer-links h4,
.footer-info h4 {
  font-size: 16px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after,
.footer-info h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links ul,
.footer-info ul {
  list-style: none;
}

.footer-links li,
.footer-info li {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--accent);
}

.footer-info li strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

/* Bottom copyright & disclosures */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* SCROLL REVEAL ANIMATIONS */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    border-color: var(--border);
  }

  50% {
    border-color: rgba(222, 160, 43, 0.4);
  }
}

/* RESPONSIVE DESIGN MEDIA QUERIES */

@media (max-width: 992px) {
  .top-bar {
    display: none;
    /* Hide top utility bar on smaller screens */
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .team-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  /* Hamburger menu navigation */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 130px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 130px);
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 25px;
    transition: right var(--transition-normal);
    z-index: 99;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 16px;
    width: 100%;
  }

  .mobile-cta-wrapper {
    display: block;
    width: 100%;
    margin-top: 15px;
    border-top: 1px solid var(--border);
    padding-top: 25px;
  }

  .hide-mobile {
    display: none;
  }

  .hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  /* Hamburger transform when menu is active */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: span 1;
  }
}