/* 
  GGSSM - Static Website Style Sheet
  Theme: Modern Corporate Trust (Navy & Gold Accent)
  Author: Coding Assistant Agency (2026 Edition)
*/

:root {
  /* Harmonious Color Palette */
  --primary-navy: #112233;
  --primary-navy-dark: #0a1420;
  --primary-navy-light: #1c324b;
  --accent-gold-color: #cda250;
  --accent-gold-dark: #ab8237;
  --accent-gold-light: #e6c177;
  --accent-green: #10b981;
  --accent-green-bg: #ecfdf5;
  --accent-green-border: #a7f3d0;
  --accent-info: #b45309;
  --accent-info-bg: #fffbeb;
  --accent-info-border: #fde68a;
  
  /* Grays & Neutrals */
  --bg-main: #f8fafc;
  --bg-alt: #f1f5f9;
  --surface: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing Tokens */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Utility Dimensions */
  --header-height: 70px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --base-font-size: 16px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  font-size: var(--base-font-size);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

address {
  font-style: normal;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--accent-gold-color);
  color: var(--primary-navy-dark);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1.5rem;
  background-color: var(--accent-gold-color);
  color: var(--primary-navy-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 99999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Utility Layout Elements --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  position: relative;
}

.bg-white {
  background-color: var(--surface);
}

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

/* Section Header styling */
.section-hd {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg) auto;
}

.section-tag {
  display: inline-block;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--primary-navy-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 800;
  color: var(--primary-navy-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-bar {
  width: 3.5rem;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold-color), var(--accent-gold-dark));
  border-radius: var(--radius-full);
  margin: 0 auto 1rem auto;
}

.section-sub {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--accent-gold-color);
  color: var(--primary-navy-dark);
  border-color: var(--accent-gold-color);
}

.btn-primary:hover {
  background-color: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

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

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
  border-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-call {
  background-color: var(--primary-navy-light);
  color: #fff;
  border-color: var(--primary-navy-light);
}

.btn-call:hover {
  background-color: var(--primary-navy);
  border-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-submit {
  width: 100%;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.btn-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  flex-shrink: 0;
}

/* --- Header --- */

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy-dark);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}

/* Main Navigation */
.main-nav {
  display: none; 
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-gold-dark);
  background-color: var(--bg-alt);
}

.nav-link.active {
  color: var(--primary-navy-light);
  background-color: rgba(17, 34, 51, 0.05);
  font-weight: 700;
}

/* Hamburger mobile button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hamburger:hover {
  border-color: var(--text-muted);
  background-color: var(--bg-alt);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary-navy-dark);
  border-radius: var(--radius-full);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

/* Mobile Nav Menu Drawer */
.mobile-nav {
  display: none;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  z-index: 999;
  animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mob-link {
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  border-left: 3px solid transparent;
}

.mob-link:hover, .mob-link.active {
  color: var(--accent-gold-dark);
  background-color: var(--bg-alt);
  border-left-color: var(--accent-gold-color);
}

/* --- Hero Section (Centered Single Column) --- */
.hero {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: #fff;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  position: relative;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

.badge-gold {
  border-color: rgba(205, 162, 80, 0.4);
  background-color: rgba(205, 162, 80, 0.1);
  color: var(--accent-gold-light);
}

.badge-highlight {
  background: linear-gradient(135deg, #cda250 0%, #ab8237 100%);
  color: #0a1420 !important;
  border: 1px solid #e6c177;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(205, 162, 80, 0.5);
  animation: pulse-glow 2.5s infinite alternate ease-in-out;
}

.badge-highlight .badge-dot {
  background-color: var(--primary-navy-dark);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 8px rgba(205, 162, 80, 0.3);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 18px rgba(205, 162, 80, 0.75);
    transform: scale(1.05);
  }
}

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

.hero-org-overline {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-color);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.hero-title {
  color: #fff;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 700px;
}

.pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}

.pillar-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold-color);
  stroke-width: 2.5px;
}

.pillar-sep {
  color: rgba(255, 255, 255, 0.3);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* --- About Section --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.org-name {
  font-size: clamp(1.0rem, 1.8vw, 1.15rem);
  font-weight: 800;
  color: var(--primary-navy-dark);
  border-left: 4px solid var(--accent-gold-color);
  padding-left: 1rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-main);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-align: left;
}

/* About Side Info Card */
.info-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.info-card-hd {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

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

.info-table tr {
  border-bottom: 1px solid var(--border-light);
}

.info-table tr:last-child {
  border-bottom: 0;
}

.info-table th, .info-table td {
  padding: 0.8rem 1.25rem;
  font-size: 0.85rem;
  text-align: left;
}

.info-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
  background-color: rgba(241, 245, 249, 0.3);
}

.info-table td {
  color: var(--text-main);
  font-weight: 600;
}

.status-active {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-green);
  font-weight: 700;
}

/* --- Verification Section --- */
.verify-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.verify-section-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-navy);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.vcard-hd-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.vcard-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-gold-color);
  stroke-width: 2.2px;
}

.vcard-hd-badge h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy-dark);
}

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

.registry-table tr {
  border-bottom: 1px solid var(--border-light);
}

.registry-table tr:last-child {
  border-bottom: 0;
}

.registry-table th, .registry-table td {
  padding: 0.75rem 0.2rem;
  font-size: 0.825rem;
  vertical-align: top;
  text-align: left;
}

.registry-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
}

.registry-table td {
  color: var(--text-main);
  font-weight: 600;
}

.copy-target {
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-alt);
  border: 1.5px dashed var(--border);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--primary-navy-light);
}

.copy-target:hover {
  background-color: rgba(205, 162, 80, 0.08);
  color: var(--accent-gold-dark);
  border-color: var(--accent-gold-color);
}

.copy-target.copied {
  color: var(--accent-green);
  border-color: var(--accent-green);
  background-color: var(--accent-green-bg);
}

.copy-hint {
  font-size: 0.65rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
  font-weight: 500;
}

.copy-hint.copied {
  color: var(--accent-green);
  font-weight: 600;
}

.status-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: var(--accent-green-bg);
  border: 1px solid var(--accent-green-border);
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.verify-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  background-color: var(--accent-info-bg);
  border: 1px solid var(--accent-info-border);
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  color: var(--accent-info);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.note-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-info);
  flex-shrink: 0;
  stroke-width: 2.5px;
}

/* --- Trust Rules & Authorities Section (Card Grid) --- */
.rules-section {
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
}

.rules-hd {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rules-sec-title {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--primary-navy-dark);
  margin-bottom: 0.5rem;
}

.rules-sec-sub {
  font-size: 0.925rem;
  color: var(--text-muted);
}

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

.rule-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  border-top: 3px solid var(--accent-gold-color);
}

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

.rule-card-hd {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.rule-card-icon {
  background-color: var(--bg-alt);
  color: var(--accent-gold-dark);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rule-card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2px;
}

/* Global consistent stroke-width for section SVG icons */
.vcard-icon svg,
.obj-icon svg,
.contact-card-icon svg,
.pillar-icon svg,
.note-icon svg,
.floating-contact-btn svg {
  stroke-width: 2px;
}

.rule-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy-dark);
}

.rule-list {
  padding-left: 1.25rem;
  list-style-type: disc;
}

.rule-list li {
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.rule-list li strong {
  color: var(--primary-navy-light);
}

/* --- Objectives Section --- */
.obj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.obj-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-navy);
  transition: all 0.25s ease;
}

.obj-card:hover {
  transform: translateX(4px);
  border-left-color: var(--accent-gold-color);
  box-shadow: var(--shadow-md);
}

.obj-icon {
  background-color: var(--bg-alt);
  color: var(--accent-gold-dark);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.obj-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2px;
}

.obj-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy-dark);
  margin-bottom: 0.4rem;
}

.obj-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.commitment {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--accent-gold-color);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.commitment p {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card-icon {
  background-color: rgba(205, 162, 80, 0.08);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-gold-color);
  stroke-width: 2.2px;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy-dark);
  margin-bottom: 0.6rem;
}

.contact-card address, .contact-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.phone-link {
  color: var(--primary-navy-light);
  font-weight: 700;
  font-size: 0.925rem;
}

.phone-link:hover {
  color: var(--accent-gold-dark);
  text-decoration: underline;
}

.reach-btns {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

.reach-btns .btn {
  flex-grow: 1;
  font-size: 0.825rem;
}

/* --- Contact Form (Inline & Modal) --- */
.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-main);
  background-color: var(--bg-main);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: 0;
  border-color: var(--accent-gold-color);
  background-color: var(--surface);
  box-shadow: 0 0 0 3px rgba(205, 162, 80, 0.15);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.1rem;
  padding-right: 2.2rem;
}

.form-input.valid {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.1rem;
  padding-right: 2.2rem;
}

.form-error-msg {
  color: #ef4444;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.3rem;
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.form-input.error + .form-error-msg {
  max-height: 30px;
  opacity: 1;
}

/* --- Modal Popup Dialog --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 20, 32, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--surface);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

.modal-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.modal-body {
  padding: 1.5rem;
}

/* --- Floating Action Button (FAB) --- */
.floating-contact-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-navy);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.8rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  z-index: 1500;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-contact-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2px;
}

.floating-contact-btn:hover {
  background-color: var(--accent-gold-color);
  color: var(--primary-navy-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(205, 162, 80, 0.25);
  border-color: var(--accent-gold-color);
}

/* Back to top FAB */
#fab-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface);
  color: var(--primary-navy-dark);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

#fab-top.show {
  opacity: 1;
  pointer-events: auto;
}

#fab-top:hover {
  background-color: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding-top: var(--space-xl);
  border-top: 3px solid var(--accent-gold-color);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 400px;
}

.brand-logo-lg {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-gold-color);
  margin-bottom: 0.8rem;
}

.footer-org {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.footer-reg {
  font-size: 0.75rem;
  color: var(--accent-gold-light);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.footer-disc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-address {
  font-size: 0.825rem;
  line-height: 1.65;
}

.footer-address p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.6rem;
}

.footer-phone a {
  color: var(--accent-gold-color);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-phone a:hover {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.footer-bottom {
  padding: 1.25rem 0;
  font-size: 0.75rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.back-top {
  font-weight: 600;
  color: var(--accent-gold-color);
}

.back-top:hover {
  color: var(--accent-gold-light);
}

/* --- Scroll Revelations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility: skip animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Keyframe Animations --- */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* --- Responsive Media Queries --- */

@media (min-width: 600px) {
  .verify-grid-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .verify-section-card:last-child {
    grid-column: span 2;
  }
  
  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .obj-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid .contact-card:last-child {
    grid-column: span 2;
    justify-self: center;
    max-width: 480px;
    width: 100%;
  }
  
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
  
  .hamburger {
    display: none;
  }
  
  .about-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  
  .verify-grid-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .verify-section-card:last-child {
    grid-column: auto;
  }
  
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1.2fr;
  }
}

@media (min-width: 1024px) {
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .obj-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid .contact-card:last-child {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }
}

/* Mobile Responsiveness Improvements */
@media (max-width: 599px) {
  .info-table tr, .registry-table tr {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.5rem;
  }
  
  .info-table th, .info-table td,
  .registry-table th, .registry-table td {
    display: block;
    width: 100% !important;
    padding: 0.15rem 0;
    text-align: left;
  }
  
  .info-table th, .registry-table th {
    background-color: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.1rem;
  }
  
  .info-table td, .registry-table td {
    font-size: 0.875rem;
  }

  .pillars {
    flex-direction: column;
    gap: 0.4rem;
  }

  .pillar-sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 0.8rem;
  }
  
  .hero-ctas .btn {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .floating-contact-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  #fab-top {
    bottom: 1rem;
    left: 1rem;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* Print Overrides */
@media print {
  .site-header, .hero-ctas, .reach-btns, .floating-contact-btn, #fab-top, .modal-overlay {
    display: none !important;
  }
  
  body {
    background-color: #fff !important;
    color: #000 !important;
  }
  
  .hero {
    background: #fff !important;
    color: #000 !important;
    padding: 0 !important;
  }
  
  .hero-title {
    color: #000 !important;
  }
  
  .hero-subtitle {
    color: #444 !important;
  }
}