/* Core Design System for Griffin International Custom Website */

:root {
  --bg-dark: #07090e;
  --bg-dark-card: rgba(15, 23, 42, 0.45);
  --border-color: rgba(255, 255, 255, 0.07);
  --accent-green: #00d084;
  --accent-green-glow: rgba(0, 208, 132, 0.25);
  --accent-cyan: #0693e3;
  --accent-cyan-glow: rgba(6, 147, 227, 0.25);
  --accent-red: #ff3838;
  --accent-red-glow: rgba(255, 56, 56, 0.25);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --font-main: 'Outfit', sans-serif;
  --header-height: 80px;
  
  --glass-bg: rgba(7, 9, 14, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

.grid {
  display: grid;
  gap: 24px;
}

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

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 500;
  border-radius: var(--border-radius-md);
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 15px;
  border: 1px solid transparent;
}

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

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

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: var(--accent-green);
  color: #000;
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-green-glow);
  opacity: 0.95;
}

.btn-outline {
  border-color: var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.input-with-symbol {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-symbol .symbol {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-weight: 600;
  pointer-events: none;
  user-select: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 15px;
  transition: var(--transition-smooth);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(255, 255, 255, 0.05);
}

.input-with-symbol input {
  padding-left: 38px;
}

/* Glassmorphism Classes */
.glass-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* Image styles for BESS products */
.hero-img-bess {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  z-index: 2;
  position: relative;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.bess-visual-card:hover .hero-img-bess {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 208, 132, 0.15);
}

.product-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card:hover {
  border-color: rgba(0, 208, 132, 0.3); /* Cyber green subtle glow border */
  box-shadow: 0 16px 40px rgba(0, 208, 132, 0.08);
  transform: translateY(-6px);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 10;
  letter-spacing: 0.5px;
}

.product-card-body {
  padding: 24px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Section Header */
.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 60px;
  color: var(--text-secondary);
}

/* 1. Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: var(--accent-green);
  color: #000;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
}

.logo-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
}

.nav-menu {
  display: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    gap: 32px;
  }
  
  .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition-smooth);
  }
  
  .nav-link:hover {
    color: var(--text-primary);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .nav-link.active {
    color: var(--text-primary);
  }
}

.header-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 2000;
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  justify-content: flex-end;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-container {
  width: 100%;
  max-width: 320px;
  background: var(--bg-dark);
  height: 100%;
  border-left: 1px solid var(--border-color);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 40px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-green);
  padding-left: 8px;
}

.mobile-nav-footer {
  margin-top: 40px;
}

.mobile-menu-btn {
  width: 100%;
}

/* 2. Hero Section */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 208, 132, 0.08) 0%, rgba(7, 9, 14, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 55% 45%;
  }
}

.hero-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-title { font-size: 48px; }
}
@media (min-width: 1200px) {
  .hero-title { font-size: 56px; }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

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

/* Cabinet Interactive visual in Hero */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.bess-visual-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visual-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 147, 227, 0.15) 0%, rgba(7, 9, 14, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.visual-cabinet {
  position: relative;
  width: 140px;
  height: 240px;
  background: #1e293b;
  border-radius: 8px;
  border: 3px solid #334155;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 2;
  overflow: hidden;
}

.cabinet-door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #0f172a;
  border: 1px solid #1e293b;
  z-index: 4;
  transition: transform 0.8s ease-in-out;
}

.cabinet-door.left { left: 0; transform-origin: left; }
.cabinet-door.right { right: 0; transform-origin: right; }

.bess-visual-card:hover .cabinet-door.left { transform: rotateY(-110deg); }
.bess-visual-card:hover .cabinet-door.right { transform: rotateY(110deg); }

.cabinet-interior {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.bess-rack {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.rack-module {
  height: 20%;
  background: #334155;
  border-radius: 4px;
  border: 1px solid #475569;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.rack-module::after {
  content: '';
  position: absolute;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64748b;
}

.rack-module.charging::after {
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse 1s infinite alternate;
}

.rack-module.active::after {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse 1s infinite alternate;
}

.rack-module span {
  display: block;
  height: 4px;
  background: rgba(255,255,255,0.05);
  width: 70%;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.rack-module span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  background: var(--accent-cyan);
}

.rack-module.charging span::before {
  background: var(--accent-green);
  animation: charge-bar 2s infinite linear;
}

.visual-caption {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.green {
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

@keyframes pulse {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

@keyframes charge-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* 3. Highlights Section */
.highlights-section {
  padding-bottom: 60px;
}

.highlight-card {
  position: relative;
  border-left: 1px solid var(--border-color);
  padding: 0 0 0 24px;
}

.highlight-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 8px;
  line-height: 1;
}

.highlight-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* 4. Solutions Section */
.solutions-section {
  position: relative;
}


.spec-list {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.spec-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 16px;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.spec-value {
  font-weight: 600;
  text-align: right;
  color: var(--text-primary);
  word-break: break-word;
}

/* 5. Technology Section */
.tech-section {
  position: relative;
  overflow: hidden;
}

.tech-bg-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0) 0%, rgba(6, 147, 227, 0.03) 100%);
  pointer-events: none;
}

.tech-visualizer-container {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.visualizer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.visualizer-desc {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.visualizer-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visualizer-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.visualizer-display {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 30px;
  display: flex;
  justify-content: center;
  min-height: 240px;
  align-items: center;
}

/* Battery Cells Balancing animations */
.balancing-svg {
  width: 100%;
  max-width: 500px;
}

.cell-bg {
  fill: #1e293b;
  stroke: #334155;
  stroke-width: 2px;
  rx: 4px;
}

.cell-charge {
  rx: 3px;
  transition: fill 0.5s var(--transition-smooth);
}

.cell-charge.active-balancing {
  fill: url(#greenGradient);
}

.cell-charge.passive-balancing {
  fill: url(#blueGradient);
}

.transfer-particle {
  fill: var(--accent-green);
  filter: drop-shadow(0 0 3px var(--accent-green));
}

.waste-particle {
  fill: var(--accent-red);
  filter: drop-shadow(0 0 3px var(--accent-red));
}

.heat-wavy {
  stroke: var(--accent-red);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  opacity: 0;
}

.heat-wavy.waste-heat {
  animation: heat-rise 2s infinite linear;
}

@keyframes heat-rise {
  0% { transform: translateY(5px); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-15px); opacity: 0; }
}

.spec-metric-grid {
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

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

.metric-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 4px;
}

.metric-label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

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

/* Certifications Panel */
.certifications-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cert-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.cert-desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cert-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
}

.cert-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 147, 227, 0.1);
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 16px;
}

.cert-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* 6. BESS ROI Calculator */
.calculator-section {
  background: rgba(6, 147, 227, 0.01);
  position: relative;
}

.calculator-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.calc-header {
  margin-bottom: 32px;
}

.calc-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-subtitle {
  color: var(--text-secondary);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

input[type="range"] {
  flex-grow: 1;
  accent-color: var(--accent-green);
}

.slider-value {
  font-weight: 600;
  color: var(--accent-green);
  min-width: 45px;
  text-align: right;
}

.range-info {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.calc-outputs {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.output-card {
  display: flex;
  flex-direction: column;
}

.output-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.output-value {
  font-size: 22px;
  font-weight: 700;
}

.output-card.highlight .output-value {
  font-size: 32px;
  color: var(--accent-green);
  text-shadow: 0 0 10px var(--accent-green-glow);
}

.output-value.green {
  color: var(--accent-green);
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 8px;
}

/* 7. Who We Are Section */
.about-section {
  position: relative;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 55% 45%;
    align-items: center;
  }
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-secondary);
}

.about-img-wrapper {
  width: 100%;
  height: 280px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.about-img-wrapper:hover .about-img {
  transform: scale(1.03);
}

.about-graphics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  gap: 24px;
}

.exp-number {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
}

.exp-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.partner-badge {
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed var(--border-color);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.partner-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-green);
}

.partner-status {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-status i {
  color: var(--accent-cyan);
}

/* 8. Contact Section */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg-glow {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 147, 227, 0.05) 0%, rgba(7, 9, 14, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 45% 55%;
    align-items: center;
  }
}

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

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

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

.detail-value {
  font-weight: 500;
  font-size: 15px;
}

a.detail-value:hover {
  color: var(--accent-green);
}

.contact-form-panel {
  width: 100%;
}

.glass-form {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  padding: 40px;
  border-radius: var(--border-radius-lg);
}

.form-row {
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.success-message {
  display: none;
  background: rgba(0, 208, 132, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--text-primary);
  padding: 16px;
  border-radius: var(--border-radius-md);
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}

/* Footer Section */
.footer {
  border-top: 1px solid var(--border-color);
  background: #020408;
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-tagline {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 280px;
}

.footer-links h4,
.footer-socials h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.social-icons a:hover {
  background: var(--accent-green);
  color: #000;
  border-color: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  font-size: 13px;
  color: var(--text-muted);
}
