.teal-divider {
  border: none;
  border-top: 2px solid #009999;
  margin: 2.5rem 0;
}
/* Company Experience Flex Layout */
.company-flex-row {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 1.25rem;
}
.company-header-flex {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem;
  height: 100%;
}
.company-logo-fixed {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.company-logo-fixed img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}
.company-header-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
body.home header {
  border-bottom: 2px solid var(--accent-teal);
}
body.profile header {
  border-bottom: 2px solid var(--accent-amber);
}
body.specializations header {
  border-bottom: 2px solid var(--accent-blue);
}
body.speaker-gallery header {
  border-bottom: 2px solid var(--accent-pink);
}
body.contact header {
  border-bottom: 2px solid var(--accent-purple);
}
/* Main Shared Styles - Premium Glassmorphism Theme */
/* ================================================= */

:root {
  /* Premium Color Palette */
  --bg-dark: #0b0f1a;
  --bg-card: rgba(23, 33, 51, 0.7);
  --bg-sidebar: rgba(15, 23, 42, 0.9);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Refined Accent Colors (HSL Synchronized) */
  --accent-teal: #2dd4bf;
  /* Emerald/Cyan */
  --accent-amber: #f59e0b;
  /* Gold */
  --accent-blue: #3b82f6;
  /* Royal Blue */
  --accent-purple: #8b5cf6;
  /* Indigo */
  --accent-rose: #f43f5e;
  /* Rose */
  --accent-pink: #ec4899;
  /* Pink */

  /* Glassmorphism Effects */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

header {
  background: rgba(11, 15, 26, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 1.5rem;
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

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

/* Section Specific Nav Colors */
.nav-home {
  color: var(--accent-teal);
}

.nav-profile {
  color: var(--accent-amber);
}

.nav-specializations {
  color: var(--accent-blue);
}

.nav-speaker {
  color: var(--accent-pink);
}

.nav-contact {
  color: var(--accent-purple);
}

main {
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 4rem;
}

/* Common Components */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
}

/* Forms */
.contact-form {
  width: 100%;
  max-width: none;
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.3s ease, background 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  background: rgba(255, 255, 255, 0.08);
}

button[type="submit"] {
  background: var(--accent-teal);
  color: var(--bg-dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}