/* ==========================================================================
   A.S.S. SECURITY AND SERVICE PROVIDERS
   Custom Stylesheet (Vanilla CSS)
   Theme: Professional, Minimalist, Military-Grade, Authoritative
   Colors: Deep Black (#0A0A0A), Warm Gold (#C9A84C), Clean White (#F5F5F5)
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --bg-dark: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --color-gold: #C9A84C;
  --color-gold-hover: #E5C56B;
  --color-gold-rgb: 201, 168, 76;
  --text-light: #F5F5F5;
  --text-muted: #A0A0A0;
  --text-dark: #0A0A0A;
  
  --border-subtle: rgba(201, 168, 76, 0.15);
  --border-gold: rgba(201, 168, 76, 0.4);
  --border-gold-focus: rgba(201, 168, 76, 0.8);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  background-color: var(--bg-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-dark {
  background-color: var(--bg-dark);
}

.section-card-bg {
  background-color: #0f0f0f;
}

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

.text-gold {
  color: var(--color-gold);
}

.motto-text {
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--text-dark);
}

.btn-gold:hover, .btn-gold:focus {
  background-color: var(--color-gold-hover);
  outline: none;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--color-gold);
  color: var(--text-dark);
  outline: none;
}

/* Accessibility Focus Styles */
*:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* ==========================================================================
   1. NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 70px;
  background-color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-subtle);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 40%, rgba(20, 20, 20, 0.8)), 
              radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.07) 0%, transparent 50%);
  padding: calc(var(--header-height) + 4rem) 0 4rem 0;
  overflow: hidden;
}

/* Simple, static abstract shapes representing protection grid */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1rem;
  background-color: rgba(201, 168, 76, 0.05);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
}

.hero-badge-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

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

.hero-logo-frame {
  width: 320px;
  height: 320px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-frame::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  animation: rotateSlow 40s linear infinite;
}

.hero-logo-frame::after {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  border: 1px dashed rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}

.hero-logo-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  z-index: 3;
}

.hero-tagline-secondary {
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 5;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border-subtle);
}

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-weight: 500;
}

/* Responsive adjustments for hero stats bar */
@media screen and (max-width: 768px) {
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
    padding: 1.5rem 1rem;
    margin-top: 3rem;
  }
  .hero-stat-item:nth-child(2) {
    border-right: none;
  }
  .hero-stat-number {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-stats-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
  }
  .hero-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   3. SERVICES SECTION
   ========================================================================== */
.section-title-wrap {
  margin-bottom: 4rem;
}

.section-desc {
  max-width: 600px;
  margin: 1rem auto 0 auto;
  font-size: 0.95rem;
}

.services-categories-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.services-category-col {
  display: flex;
  flex-direction: column;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold);
  border-left: 3px solid var(--color-gold);
  padding-left: 0.75rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-list-vertical .service-card {
  padding: 2.2rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  height: auto;
}

.services-list-vertical .service-icon-wrap {
  margin-bottom: 0;
  width: 40px;
  height: 40px;
}

.services-list-vertical .service-card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 1024px) {
  .services-categories-wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media screen and (max-width: 480px) {
  .services-list-vertical .service-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .services-list-vertical .service-icon-wrap {
    width: 36px;
    height: 36px;
  }
}

.services-grid {
  display: none; /* Keep fallback hidden */
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  background-color: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-icon-wrap {
  margin-bottom: 2rem;
  color: var(--color-gold);
  width: 48px;
  height: 48px;
}

.service-icon-wrap svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   3B. INDUSTRIES WE SERVE
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  background-color: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.industry-icon {
  width: 44px;
  height: 44px;
  color: var(--color-gold);
}

.industry-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 550px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .industry-card {
    padding: 2rem 1.5rem;
    gap: 1rem;
  }
}

/* ==========================================================================
   4. WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background-color: var(--bg-card);
  border-left: 2px solid var(--color-gold);
  padding: 2.5rem 1.75rem;
  transition: var(--transition-smooth);
}

.why-card:hover {
  background-color: var(--bg-card-hover);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-icon {
  margin-bottom: 1.25rem;
  color: var(--color-gold);
  width: 36px;
  height: 36px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Training Program Grid Styles */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.training-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  transition: var(--transition-smooth);
}

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.15);
}

.training-tier {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  background-color: var(--color-gold);
  padding: 0.25rem 0.75rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.training-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.training-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Unique Operational Features Checklist */
.features-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.features-checklist li {
  display: flex;
  align-items: start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.4;
}

.features-checklist .check-icon {
  color: var(--color-gold);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .training-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .features-checklist {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Deployment Process Section */
.deployment-center-label {
  text-align: center;
  margin-bottom: 3.5rem;
}

.deployment-center-label span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  background-color: var(--color-gold);
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.deployment-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--border-gold);
  background-color: var(--bg-card-hover);
  transform: translateY(-3px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.step-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .deployment-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .deployment-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .deployment-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .step-card {
    padding: 1.75rem 1.25rem;
  }
}

/* Photo Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  aspect-ratio: 4 / 3;
}

.gallery-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 20%, transparent 100%);
  color: var(--text-light);
  padding: 1.5rem 1rem 1rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media screen and (max-width: 550px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-item {
    aspect-ratio: 16 / 10;
  }
  .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   5. ABOUT US
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-highlight {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.about-text p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.motto-block {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-vision-block {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.about-vision-block h4 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.about-vision-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.motto-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.motto-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.motto-translation {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-gold);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.crest-frame {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 4rem;
  position: relative;
  width: 100%;
  max-width: 440px;
}

.crest-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(201, 168, 76, 0.05);
  pointer-events: none;
}

.crest-logo {
  width: 100%;
  height: auto;
  max-width: 260px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   6. TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2rem 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.15);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  pointer-events: none;
}

.quote-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-meta {
  line-height: 1.4;
}

.client-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.client-company {
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   7. CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.contact-form-wrap h3, .contact-info-wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.75rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--border-gold-focus);
  background-color: var(--bg-card-hover);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.1);
}

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

.form-btn-wrap {
  margin-top: 1rem;
}

.form-btn {
  width: 100%;
}

/* Submission feedback states */
.form-feedback {
  grid-column: span 2;
  padding: 1rem;
  font-size: 0.85rem;
  display: none;
  border: 1px solid transparent;
}

.form-feedback.success {
  background-color: rgba(46, 204, 113, 0.05);
  border-color: rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.form-feedback.error {
  background-color: rgba(231, 76, 60, 0.05);
  border-color: rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* Contact Info */
.info-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  color: var(--color-gold);
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.info-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.info-content h4 {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.info-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
  font-weight: 400;
}

.info-content a:hover {
  color: var(--color-gold);
}

/* Embedded Map Wrapper */
.map-embed-container {
  height: 220px;
  width: 100%;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  background-color: var(--bg-card);
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.92) contrast(1.15) hue-rotate(180deg);
}

/* Styled clean vector placeholder map style or dark iframe map */
.map-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  background: 
    linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
    radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.map-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.map-marker {
  color: var(--color-gold);
  width: 32px;
  height: 32px;
  animation: pulseMarker 2s infinite;
}

@keyframes pulseMarker {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(201, 168, 76, 0.4)); }
  70% { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(201, 168, 76, 0)); }
}

.map-fallback-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  color: var(--text-light);
}

.map-fallback-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.footer {
  background-color: #050505;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-motto-wrap {
  border-left: 2px solid var(--color-gold);
  padding-left: 1rem;
}

.footer-motto-dev {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.footer-motto-trans {
  font-size: 0.75rem;
  color: var(--color-gold);
  font-style: italic;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-link-item a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-btn:hover, .social-btn:focus {
  border-color: var(--color-gold);
  color: var(--text-light);
  background-color: var(--bg-card);
  outline: none;
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-extra-links {
  display: flex;
  gap: 1.5rem;
}

.footer-extra-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-extra-links a:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE-FIRST RESPONSIVENESS)
   ========================================================================== */

/* Tablet layout updates */
@media screen and (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.75rem; }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    gap: 3rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid .testimonial-card:last-child {
    display: none; /* Hide 3rd card on tablet grid to match 2 cols nicely */
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* Hamburger mobile nav overlay */
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  /* Mobile header button */
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Mobile menu panel overlay */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-dark);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 6rem 2rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  
  .nav-links.active {
    transform: translateX(0);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  }
  
  /* Animate Hamburger icon when open */
  .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Hero section mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-logo-frame {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
  
  .hero-logo-img {
    width: 140px;
    height: 140px;
  }
  
  /* About section mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-visual {
    order: -1; /* Place image on top on mobile */
  }
  
  /* Contact section mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Small mobile layout */
@media screen and (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 0.75rem;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

/* ==========================================================================
   ADDITIONAL STYLES (NEW FEATURE INTEGRATIONS)
   ========================================================================== */

/* Centering the 7th Service Card on Desktop */
@media screen and (min-width: 1025px) {
  .service-card:nth-child(7) {
    grid-column: 2;
  }
}

/* Statutory Accreditations styling */
.statutory-wrap {
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3.5rem;
}

.statutory-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.statutory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-badge {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.stat-badge:hover {
  border-color: var(--border-gold);
  background-color: var(--bg-card-hover);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: bold;
  background: var(--color-gold);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-badge strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-badge p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Clients Grid styling */
.clients-container {
  max-width: 1000px;
  margin: 0 auto;
}

.clients-badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.client-badge {
  background-color: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--text-light);
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: default;
}

.client-badge:hover {
  border-color: var(--color-gold);
  background-color: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.15);
}

.clients-callout {
  background-color: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--border-gold);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.clients-callout p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Trust Banner styling */
.trust-banner {
  background: linear-gradient(135deg, #101010 0%, #050505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 6.5rem 0;
  position: relative;
}

.trust-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.trust-badge {
  display: inline-block;
  border: 1px solid var(--border-gold);
  padding: 0.3rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background-color: rgba(201, 168, 76, 0.03);
  margin-bottom: 1.5rem;
}

.trust-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}

.trust-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
}

.trust-quote-box {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.trust-quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.12);
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
  pointer-events: none;
}

.trust-quote-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   RAISING THE BAR & ASSOCIATIONS STYLING
   ========================================================================== */

/* Raising the Bar / Comparison Section */
.comparison-wrap {
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3.5rem;
}

.comparison-heading {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-gold);
}

.comparison-subheading {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.comparison-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
}

.comparison-card:hover {
  background-color: var(--bg-card-hover);
}

.comparison-card.highlight {
  border-color: var(--border-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.05);
}

.comparison-card h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-list li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 0.75rem;
}

.comparison-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.criteria-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.criteria-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.criteria-badge.standard {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.criteria-badge.ass {
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.criteria-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.criteria-pill {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  transition: var(--transition-smooth);
}

.criteria-pill:hover {
  border-color: var(--border-gold);
  color: var(--text-light);
  background-color: rgba(201, 168, 76, 0.03);
}

/* Our Associations styling */
.associations-wrap {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3.5rem;
}

.associations-title {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
}

.associations-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.assoc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.assoc-logo-placeholder {
  width: 72px;
  height: 72px;
  background-color: #121212;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.assoc-item:hover .assoc-logo-placeholder {
  border-color: var(--color-gold-hover);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.assoc-item span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Responsive updates for additional styles */
@media screen and (max-width: 768px) {
  .statutory-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .trust-title {
    font-size: 1.75rem;
  }
  
  .trust-quote-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .trust-banner {
    padding: 4.5rem 0;
  }
  
  .statutory-wrap {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-wrap {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }

  .associations-wrap {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }

  .associations-ribbon {
    gap: 2rem;
  }

  .assoc-logo-placeholder {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON, MOBILE CALL BAR, FAQ, & CAREERS STYLES
   ========================================================================== */

/* 1. Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 1002;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.whatsapp-float:hover, .whatsapp-float:focus {
  transform: scale(1.05);
  background-color: #20BA5A;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  outline: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Tooltip on Hover */
.whatsapp-float::before {
  content: "Chat on WhatsApp";
  position: absolute;
  right: 70px;
  background-color: rgba(10, 10, 10, 0.95);
  color: var(--text-light);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 2. Mobile Sticky Call Bar */
.mobile-call-bar {
  display: none;
}

/* 3. Raising the Bar Table Redesign */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  min-width: 600px;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #121212;
  border-bottom: 2px solid var(--color-gold);
  color: var(--text-light);
  padding: 1.25rem 1.5rem;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  transition: var(--transition-smooth);
  background-color: var(--bg-card);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: var(--bg-card-hover);
  color: var(--text-light);
}

.comparison-table .row-header {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--text-light);
  width: 45%;
}

.comparison-table .cell-yes {
  background-color: rgba(46, 204, 113, 0.04);
  color: var(--color-gold) !important;
  font-weight: 600;
  text-align: center;
  width: 25%;
}

.comparison-table tr:hover .cell-yes {
  background-color: rgba(46, 204, 113, 0.08);
}

.comparison-table .cell-yes span {
  font-size: 1.1rem;
  line-height: 1;
}

.comparison-table .cell-no {
  color: #e74c3c !important;
  text-align: center;
  width: 30%;
  font-weight: 500;
}

/* 4. FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--color-gold);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  line-height: 1;
  font-weight: 400;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* 5. Careers Section form */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.careers-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.careers-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A84C'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

/* 6. Mobile Media Query Overrides */
@media screen and (max-width: 768px) {
  /* Sticky Call Bar on bottom of screen */
  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background-color: var(--color-gold);
    color: var(--text-dark);
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1003;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    text-decoration: none;
  }
  
  .mobile-call-bar:hover {
    background-color: var(--color-gold-hover);
  }

  /* Reposition Floating WhatsApp button above the Mobile Call Bar */
  .whatsapp-float {
    bottom: 72px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-float::before {
    display: none; /* Disable tooltip on mobile */
  }

  .careers-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .careers-form {
    grid-template-columns: 1fr;
  }
  
  /* Add padding to page bottom to prevent footer content overlap by sticky bar */
  body {
    padding-bottom: 52px;
  }
}



