/* Golden Grimes Consulting Website Styles */

/* CSS Variables for Brand Colors */
:root {
  /* Brand Colors */
  --primary-bg: linear-gradient(135deg, #0A0F1C 0%, #03060D 100%);
  --primary-dark: #03060D;
  --primary-light: #0A0F1C;
  --text-white: #FFFFFF;
  --text-navy: #03060D;
  
  /* Gradient Colors */
  --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF0000 100%);
  --gradient-magenta: linear-gradient(135deg, #E91E63 0%, #AD1457 50%, #FF69B4 100%);
  --gradient-violet: linear-gradient(135deg, #9C27B0 0%, #673AB7 50%, #3F51B5 100%);
  --gradient-blue: linear-gradient(135deg, #2196F3 0%, #00BCD4 50%, #009688 100%);
  
  /* Typography */
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 4rem 0;
  --element-spacing: 2rem;
  
  /* Shadows */
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --border-radius: 12px;
  --button-radius: 8px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header and Navigation */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(3, 6, 13, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  padding: 1.25rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.logo-text-fallback {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: -0.2rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00BCD4;
}

.nav-link.cta-nav {
  background: var(--gradient-blue);
  padding: 0.75rem 1.5rem;
  border-radius: var(--button-radius);
  font-weight: 600;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: rgba(3, 6, 13, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  background: rgba(0, 188, 212, 0.1);
  border-left-color: #00BCD4;
  color: #00BCD4;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  transition: 0.3s;
}

/* Main Content */
.main-content {
  margin-top: 120px;
  min-height: calc(100vh - 120px);
}

/* Long Page Titles */
.page-hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  background-image: url('/static/hero-ai-consulting.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 6, 13, 0.8);
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #00BCD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-circuits {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 10 L 10 10 M 10 0 L 10 20 M 20 10 L 10 10" stroke="%2300BCD4" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>') repeat;
  animation: circuitFlow 20s linear infinite;
}

@keyframes circuitFlow {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-20px) translateY(-20px); }
}

/* Page Hero Sections */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 6, 13, 0.75);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #00BCD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Page-Specific Hero Backgrounds */
.page-hero.about-hero {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.9) 0%, rgba(0, 188, 212, 0.9) 50%, rgba(0, 150, 136, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.ai-tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 188, 212, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.2) 0%, transparent 50%),
    linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%);
  pointer-events: none;
}

.hero-tech-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.tech-circle {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: techRotate 20s linear infinite;
}

.tech-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: techRotate 15s linear infinite reverse;
}

.tech-dots {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 150px;
  height: 150px;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
    radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
  background-size: 30px 30px, 20px 20px, 25px 25px;
  animation: techPulse 4s ease-in-out infinite;
}

.tech-lines {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100px;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  background-size: 100px 2px, 2px 100px;
  background-position: 0 50%, 50% 0;
  animation: techScan 3s ease-in-out infinite;
}

@keyframes techRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes techPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes techScan {
  0%, 100% { opacity: 0.2; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.6; transform: translateX(-50%) scaleX(1.2); }
}

.page-hero.services-hero {
  background-image: url('/static/services-workspace.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero.blog-hero {
  background-image: url('/static/blog-digital-literacy.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero.resources-hero {
  background-image: url('/static/hero-ai-consulting.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero.contact-hero {
  background: linear-gradient(135deg, #9C27B0 0%, #673AB7 50%, #3F51B5 100%);
  background-size: cover;
  background-position: center;
}

/* Hero Pattern Overlay */
.page-hero .hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%2300BCD4"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
  z-index: 1;
  animation: patternFloat 30s linear infinite;
}

@keyframes patternFloat {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-10px) translateY(-10px); }
}

/* Blog Post Hero Sections */
.post-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  overflow: hidden;
}

.post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 6, 13, 0.8);
  z-index: 1;
}

.post-hero .container {
  position: relative;
  z-index: 2;
}

.post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.post-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 188, 212, 0.2);
  color: #00BCD4;
  border: 1px solid #00BCD4;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.post-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #00BCD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.post-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.post-meta span {
  margin: 0 1rem;
}

/* Post-Specific Hero Backgrounds */
.post-hero.digital-literacy-hero {
  background-image: url('/static/blog-digital-literacy.jpg');
}

.post-hero.ai-business-hero {
  background-image: url('/static/blog-small-business-ai.jpg');
}

.post-hero.innovation-hero {
  background-image: url('/static/blog-inclusive-innovation.jpg');
}

/* Buttons */
.cta-button, .cta-button.secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--button-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button {
  background: var(--gradient-blue);
  color: var(--text-white);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #00BCD4;
  color: #00BCD4;
}

.cta-button:hover, .cta-button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
}

/* Services Grid */
.services-grid {
  background: rgba(255, 255, 255, 0.02);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gradient-orange { background: var(--gradient-orange); }
.gradient-magenta { background: var(--gradient-magenta); }
.gradient-violet { background: var(--gradient-violet); }
.gradient-blue { background: var(--gradient-blue); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--text-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* About Snapshot */
.about-snapshot {
  background: rgba(0, 0, 0, 0.2);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: #00BCD4;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

blockquote {
  font-style: italic;
  font-size: 1.3rem;
  color: #00BCD4;
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 4px solid #00BCD4;
}

.service-highlight {
  background: rgba(0, 188, 212, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
  border-left: 4px solid #00BCD4;
}

.service-highlight h3 {
  color: #00BCD4;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-highlight p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.learn-more-btn {
  background: var(--gradient-magenta);
  padding: 1rem 2rem;
  border-radius: var(--button-radius);
  font-weight: 600;
  color: var(--text-white);
}

.about-image, .placeholder-image, .ceo-portrait, 
.blog-image, .post-image {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Profile Photo Styles */
.ceo-portrait-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  object-fit: cover;
  aspect-ratio: 1;
}

.ceo-portrait-home {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  object-fit: cover;
  aspect-ratio: 1;
}

/* Impact Section */
.impact-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.pillar {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

/* Blog Sections */
.blog-highlights, .blog-grid {
  background: rgba(255, 255, 255, 0.02);
}

.blog-cards, .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card, .blog-post-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover, .blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.blog-image, .post-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-bottom: 0;
}

.blog-card h3, .post-content h2 {
  padding: 0 1.5rem;
  margin: 1.5rem 0 1rem 0;
}

.blog-card h3 a, .post-content h2 a {
  color: var(--text-white);
  text-decoration: none;
}

.blog-card h3 a:hover, .post-content h2 a:hover {
  color: #00BCD4;
}

.blog-card p, .post-content .post-excerpt {
  padding: 0 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.post-content {
  padding: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem 0;
}

.post-category {
  background: var(--gradient-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-white);
}

.read-more, .read-more-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-orange);
  color: var(--text-white);
  border-radius: var(--button-radius);
  font-weight: 600;
  margin: 1rem 1.5rem 1.5rem 1.5rem;
  text-decoration: none;
}

.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

.view-all-btn {
  background: var(--gradient-violet);
  padding: 1rem 2rem;
  border-radius: var(--button-radius);
  font-weight: 600;
  color: var(--text-white);
}

/* CTA Strip */
.cta-strip {
  background: rgba(0, 188, 212, 0.1);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 1rem;
  color: #00BCD4;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Layouts */
.page-hero, .post-hero {
  text-align: center;
  padding: 4rem 0 3rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.page-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.post-header h1 {
  margin-bottom: 1rem;
}

.post-tagline {
  font-size: 1.4rem;
  color: #00BCD4;
  margin-bottom: 2rem;
}

/* About Page Layouts */
.about-detail {
  padding: 4rem 0;
}

.about-layout, .about-content-detailed {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-image-large {
  position: sticky;
  top: 100px;
}

.ceo-portrait {
  min-height: 400px;
}

.lead {
  font-size: 1.3rem;
  color: #00BCD4;
  margin-bottom: 2rem;
}

.specializations-list {
  list-style: none;
  margin: 2rem 0;
}

.specializations-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.specializations-list li:before {
  content: "▶";
  color: #00BCD4;
  position: absolute;
  left: 0;
}

.featured-quote {
  background: rgba(0, 188, 212, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
  font-size: 1.4rem;
  text-align: center;
}

.featured-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.mission-statement {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

/* Team Section */
.team-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 4rem 0;
}

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.team-structure {
  margin: 3rem 0;
}

.team-leadership {
  background: rgba(0, 188, 212, 0.1);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.team-leadership h3 {
  color: #00BCD4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.leadership-content {
  max-width: 600px;
  margin: 0 auto;
}

.leader-info h4 {
  color: var(--text-white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.role {
  color: #00BCD4;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.team-expertise h3 {
  color: #00BCD4;
  text-align: center;
  margin-bottom: 2rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.expertise-area {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-area:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.expertise-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.expertise-area h4 {
  color: #00BCD4;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.expertise-area p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.team-approach {
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

.team-approach h3 {
  color: #00BCD4;
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-approach > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.approach-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.highlight h4 {
  color: #00BCD4;
  margin-bottom: 1rem;
}

.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

/* Values Section */
.values-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

/* Services Page */
.services-detailed {
  padding: 4rem 0;
}

.service-detail {
  margin-bottom: 4rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.service-content {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
}

.service-icon-large {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
}

.service-content ul {
  margin: 2rem 0;
  padding-left: 2rem;
}

.service-content li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-cta {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: var(--button-radius);
  font-weight: 600;
  color: var(--text-white);
  margin-top: 2rem;
  display: inline-block;
}

/* Service Tiers */
.service-tiers {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
}

.tier-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tier-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  background: rgba(255, 255, 255, 0.08);
}

.tier-card.featured {
  border-color: #00BCD4;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.2);
}

.tier-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00BCD4;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.tier-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tier-header h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00BCD4;
  margin-bottom: 0.5rem;
}

.price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.tier-setup {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.tier-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.4;
}

.tier-features ul {
  list-style: none;
  padding: 0;
}

.tier-features li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tier-features li i {
  color: #4CAF50;
  margin-top: 0.2rem;
  min-width: 16px;
}

.tier-cta {
  margin-top: 2rem;
  text-align: center;
}

.tier-button {
  display: inline-block;
  background: var(--gradient-blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tier-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.tier-1 .tier-button {
  background: var(--gradient-orange);
}

.tier-2 .tier-button {
  background: var(--gradient-magenta);
}

.tier-3 .tier-button {
  background: var(--gradient-violet);
}

.tier-guarantee {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 188, 212, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 188, 212, 0.2);
}

.tier-guarantee h3 {
  color: #00BCD4;
  margin-bottom: 1rem;
}

.tier-guarantee p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.service-approach {
  background: rgba(255, 255, 255, 0.02);
  padding: 4rem 0;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--gradient-blue);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Blog Post Styles */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.post-content {
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.post-content h2, .post-content h3 {
  color: #00BCD4;
  margin: 2rem 0 1rem 0;
}

.post-content ul, .post-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.post-content blockquote {
  background: rgba(0, 188, 212, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.post-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Page */
.contact-section {
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-white);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00BCD4;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  background: var(--gradient-blue);
  color: var(--text-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--button-radius);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.contact-info {
  padding: 2rem;
}

.contact-method {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method h4 {
  color: #00BCD4;
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: var(--text-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.social-links a {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--button-radius);
  font-size: 0.9rem;
}

.response-time {
  background: rgba(0, 188, 212, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

/* Success Page */
.success-message {
  padding: 4rem 0;
  text-align: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
}

.next-steps {
  margin: 3rem 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.next-steps ul {
  margin-top: 1rem;
  padding-left: 2rem;
}

.next-steps li {
  margin-bottom: 0.5rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #00BCD4;
  color: #00BCD4;
  padding: 1rem 2rem;
  border-radius: var(--button-radius);
  font-weight: 600;
}

/* Accessibility Statement */
.accessibility-statement {
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accessibility-statement h3 {
  color: #00BCD4;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: #00BCD4;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00BCD4;
}

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

.footer-legal p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.legal-links a:hover {
  color: #00BCD4;
  border-bottom-color: #00BCD4;
}

.footer-hashtags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-hashtags span {
  background: rgba(0, 188, 212, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #00BCD4;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  html { font-size: 15px; }
  
  /* Container spacing */
  .container {
    padding: 0 1.5rem;
  }
  
  /* Section padding */
  section {
    padding: 3rem 0;
  }
  
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
  
  .hero-title { font-size: 3.2rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .section-title { font-size: 2.4rem; }
  
  /* Navigation */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: var(--button-radius);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }

  /* Logo adjustments */
  .logo-image {
    height: 50px;
    max-width: 220px;
  }

  .nav-brand .logo {
    flex-direction: row;
    gap: 0.5rem;
  }

  .logo-text-fallback {
    display: flex;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Layout Adjustments */
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  /* Grid Layouts */
  .services-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .about-content,
  .about-layout,
  .contact-layout,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .impact-pillars,
  .values-grid,
  .approach-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-cards,
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  /* Component Adjustments */
  .service-card,
  .pillar,
  .value-card,
  .step {
    padding: 2rem 1.5rem;
  }
  
  .post-content,
  .contact-form-container {
    padding: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .success-actions {
    flex-direction: column;
  }

  /* Team Section Mobile */
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .team-leadership,
  .team-approach {
    padding: 2rem;
  }
  
  /* Button Adjustments */
  .cta-button,
  .submit-btn {
    width: 100%;
    text-align: center;
    padding: 1.2rem 1.5rem;
    font-size: 1.2rem;
    min-height: 44px; /* Accessibility touch target */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .post-tagline {
    font-size: 1rem;
  }
  
  .page-hero {
    min-height: 50vh;
  }
  
  .post-hero {
    min-height: 40vh;
  }
  
  .page-hero.about-hero {
    background-size: 200px auto, cover;
    background-position: 90% center, center;
  }
  
  .post-content,
  .contact-form-container,
  .success-content {
    padding: 1.5rem;
  }
  
  .footer-hashtags {
    justify-content: center;
  }
}

/* High Contrast and Accessibility */
@media (prefers-contrast: high) {
  :root {
    --text-white: #FFFFFF;
    --primary-dark: #000000;
  }
  
  .nav-link, .service-card, .pillar, .blog-card {
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
}

/* Industry Videos & Podcasts Pages */
.video-categories, .podcast-categories {
  padding: 4rem 0;
}

.video-nav, .podcast-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.video-tab, .podcast-tab {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  color: var(--text-white);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.video-tab:hover, .podcast-tab:hover,
.video-tab.active, .podcast-tab.active {
  background: rgba(0, 188, 212, 0.2);
  border-color: #00BCD4;
  transform: translateY(-2px);
}

.video-content, .podcast-content {
  display: none;
}

.video-content.active, .podcast-content.active {
  display: block;
}

.video-grid, .podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-item, .podcast-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover, .podcast-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.video-thumbnail, .podcast-artwork {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img, .podcast-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 188, 212, 0.9);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button,
.podcast-artwork:hover .play-button {
  background: rgba(0, 188, 212, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration, .episode-length {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.video-info, .podcast-info {
  padding: 1.5rem;
}

.video-info h3, .podcast-info h3 {
  margin-bottom: 0.5rem;
}

.video-info h3 a, .podcast-info h3 a {
  color: var(--text-white);
  text-decoration: none;
}

.video-info h3 a:hover, .podcast-info h3 a:hover {
  color: #00BCD4;
}

.video-channel, .podcast-show {
  color: #00BCD4;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.video-info p, .podcast-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.video-tags, .podcast-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag {
  background: rgba(0, 188, 212, 0.2);
  color: #00BCD4;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Texas Statistics Highlights */
.texas-stats-highlight, .texas-podcast-stats {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.stat-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00BCD4;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.stat-item .stat-number {
  font-size: 2rem;
  color: #00BCD4;
  font-weight: 700;
  display: block;
}

.stat-item .stat-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Featured Podcast Items */
.podcast-item.featured {
  border: 2px solid rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.05);
}

.episode-highlights {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin: 1rem 0;
}

.episode-highlights h4 {
  color: #00BCD4;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.episode-highlights ul {
  margin: 0;
  padding-left: 1.5rem;
}

.episode-highlights li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.3rem;
}

/* Newsletter Subscription */
.podcast-subscription {
  background: rgba(255, 255, 255, 0.02);
  padding: 4rem 0;
}

.subscription-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.subscription-cta h2 {
  color: #00BCD4;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: var(--button-radius);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-btn {
  padding: 1rem 1.5rem;
  background: var(--gradient-blue);
  color: white;
  border: none;
  border-radius: var(--button-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Texas Leadership Section */
.texas-leadership {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.texas-capitol-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
}

.capitol-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.texas-leadership .container {
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.texas-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.texas-stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(0, 188, 212, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.texas-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  border-color: #00BCD4;
}

.texas-stat-card .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00BCD4;
  display: block;
  margin-bottom: 0.5rem;
}

.texas-stat-card .stat-label {
  font-size: 1.1rem;
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.texas-stat-card .stat-change {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.texas-stat-card .stat-source {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.texas-ai-initiatives {
  margin-top: 3rem;
  padding: 2rem 0;
}

.texas-ai-initiatives h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-white);
  font-size: 1.8rem;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.initiative-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.initiative-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.initiative-icon {
  font-size: 2.5rem;
  color: #00BCD4;
  margin-bottom: 1rem;
  text-align: center;
}

.initiative-card h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.initiative-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.initiative-status {
  font-size: 0.9rem;
  color: #4CAF50;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  background: rgba(76, 175, 80, 0.2);
  border-radius: 20px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.texas-positioning {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 3rem;
  margin-top: 3rem;
}

.positioning-content h3 {
  color: #00BCD4;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.positioning-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.highlight-icon {
  font-size: 2rem;
  min-width: 60px;
  text-align: center;
  background: rgba(0, 188, 212, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-text h4 {
  color: #00BCD4;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.highlight-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.contract-readiness {
  background: rgba(0, 188, 212, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid #00BCD4;
  margin-top: 2rem;
}

.contract-readiness h4 {
  color: #00BCD4;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contract-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contract-tag {
  background: rgba(0, 188, 212, 0.3);
  color: #00BCD4;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 188, 212, 0.5);
}

/* Responsive Design for Media Pages */
@media (max-width: 768px) {
  .video-grid, .podcast-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-boxes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .video-nav, .podcast-nav {
    flex-direction: column;
    align-items: center;
  }
}

/* Legal Pages Styles */
.legal-content {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: var(--border-radius);
  line-height: 1.8;
}

.last-updated {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text h2 {
  color: #00BCD4;
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  padding-top: 1rem;
}

.legal-text h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.legal-text p {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.legal-text ul {
  margin: 1rem 0 1.5rem 2rem;
  padding: 0;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.legal-text a {
  color: #00BCD4;
  text-decoration: underline;
}

.legal-text a:hover {
  color: #ffffff;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 0;
  }
  
  .legal-text {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .legal-text h2 {
    font-size: 1.3rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iterator-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-circuits {
    animation: none;
  }
}

/* Resources Page Styles */
.resources-section {
  padding: 4rem 0;
}

.resources-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.resource-tab {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: var(--button-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.resource-tab:hover,
.resource-tab.active {
  background: var(--gradient-blue);
  border-color: #00BCD4;
  transform: translateY(-2px);
}

.resource-content {
  display: none;
}

.resource-content.active {
  display: block;
}

.resource-content h2 {
  color: #00BCD4;
  margin-bottom: 2rem;
  text-align: center;
}

/* News Grid */
.news-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.news-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid #00BCD4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}

.news-source {
  color: #00BCD4;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-item h3 {
  margin: 0.5rem 0 1rem 0;
  font-size: 1.3rem;
}

.news-item h3 a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-item h3 a:hover {
  color: #00BCD4;
}

.news-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.news-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(0, 188, 212, 0.2);
  color: #00BCD4;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Media Grid */
.media-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.media-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: translateY(-3px);
}

.media-thumbnail {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.media-thumbnail img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.media-info h4 {
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.media-info h4 a {
  color: inherit;
  text-decoration: none;
}

.media-info h4 a:hover {
  color: #00BCD4;
}

.media-source {
  color: #00BCD4;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.media-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.media-stats span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Research Grid */
.research-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.research-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.research-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.research-header h4 {
  color: var(--text-white);
  margin: 0;
  flex: 1;
}

.research-source {
  color: #00BCD4;
  font-size: 0.9rem;
  font-weight: 600;
}

.research-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.research-type,
.research-pages {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.download-link {
  background: var(--gradient-orange);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.tool-category {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.tool-category h3 {
  color: #00BCD4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tool-items {
  display: grid;
  gap: 1.5rem;
}

.tool-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.tool-item h4 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.tool-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.tool-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tool-tags span {
  background: rgba(0, 188, 212, 0.2);
  color: #00BCD4;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* Newsletter Signup */
.newsletter-signup {
  background: rgba(0, 188, 212, 0.1);
  padding: 4rem 0;
  margin-top: 4rem;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: #00BCD4;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 1rem;
  min-width: 250px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #00BCD4;
}

.newsletter-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Resources */
@media (max-width: 768px) {
  .resources-nav {
    flex-direction: column;
    align-items: center;
  }

  .resource-tab {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .media-item {
    grid-template-columns: 1fr;
  }

  .media-thumbnail {
    max-width: 200px;
    margin: 0 auto;
  }

  .research-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .research-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .mobile-menu-toggle,
  .cta-button,
  .service-link {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .main-content {
    margin-top: 0;
  }
}/* AI Clone Integration Styles - Golden Grimes Consulting */

/* HeyGen Clone Placeholder Styles */
.clone-placeholder {
    position: relative;
    background: linear-gradient(135deg, #0A0F1C, #03060D);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    min-height: 300px;
}

.clone-preview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 28, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clone-placeholder:hover .play-overlay {
    opacity: 1;
}

.play-button {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.play-overlay p {
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* Sales Page Demo Layouts */
.clone-demo-hero {
    background: linear-gradient(135deg, #0A0F1C, #03060D);
    padding: 80px 20px;
    color: #FFFFFF;
    min-height: 500px;
}

.clone-demo-hero.premium {
    background: linear-gradient(135deg, #1a1f3c, #0A0F1C);
}

.clone-demo-hero.enterprise {
    background: linear-gradient(135deg, #2a1f3c, #1a1f3c);
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-video {
    position: relative;
}

.demo-content {
    padding-left: 40px;
}

.tier-badge {
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    color: #0A0F1C;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.tier-badge.premium {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: #FFFFFF;
}

.tier-badge.enterprise {
    background: linear-gradient(135deg, #EF4444, #F87171);
    color: #FFFFFF;
}

.demo-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    color: #D4AF37;
    line-height: 1.2;
}

.price-highlight {
    font-size: 32px;
    font-weight: bold;
    color: #D4AF37;
    margin: 10px 0;
}

.demo-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin: 20px 0 30px 0;
    color: #F1F5F9;
}

.demo-features {
    margin: 30px 0;
}

.demo-features .feature {
    font-size: 18px;
    margin: 10px 0;
    color: #F1F5F9;
    display: flex;
    align-items: center;
}

.demo-features .feature:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #D4AF37;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.pricing-note {
    font-size: 14px;
    color: #94A3B8;
    font-style: italic;
    margin: 15px 0;
    padding: 10px 15px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 10px;
    border-left: 3px solid #D4AF37;
}

.cta-primary {
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    color: #0A0F1C;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-content {
        padding-left: 0;
        text-align: center;
    }
    
    .demo-content h1 {
        font-size: 36px;
    }
    
    .price-highlight {
        font-size: 24px;
    }
    
    .clone-demo-hero {
        padding: 60px 20px;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

/* Homepage AI Clone Welcome Section */
.ai-clone-welcome {
    background: linear-gradient(135deg, #0A0F1C, #03060D);
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.clone-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.clone-avatar {
    position: relative;
    flex-shrink: 0;
}

.ai-avatar-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-avatar-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.pulse-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.clone-message-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.message-content {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.message-content strong {
    color: #D4AF37;
    font-size: 18px;
}

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

.secondary-button {
    background: transparent;
    color: #D4AF37;
    padding: 15px 30px;
    border: 2px solid #D4AF37;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: #D4AF37;
    color: #0A0F1C;
}

/* FontAwesome Icon Styling */
.service-icon i,
.pillar-icon i,
.expertise-icon i,
.highlight-icon i,
.service-icon-large i {
  font-size: inherit;
  color: inherit;
}

.service-icon i {
  font-size: 2.5rem;
  color: #FFFFFF;
}

.pillar-icon i {
  font-size: 2rem;
  color: #D4AF37;
}

.expertise-icon i {
  font-size: 2rem;
  color: #D4AF37;
}

.service-icon-large i {
  font-size: 3rem;
  color: #D4AF37;
}

.highlight-icon i {
  font-size: 1.5rem;
  color: #D4AF37;
}

.play-button i {
  font-size: 1.2rem;
  color: #FFFFFF;
}

/* Mobile Responsive for AI Clone */
@media (max-width: 768px) {
    .clone-container {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-avatar-image {
        width: 150px;
        height: 150px;
    }
    
    .clone-actions {
        justify-content: center;
    }
    
    .clone-message-box {
        padding: 20px;
    }
}

/* AI Calculator Styles */
.ai-calculator-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #0A0F1C 0%, #03060D 100%);
  position: relative;
  overflow: hidden;
}

.ai-calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.3;
}

.calculator-intro {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.calculators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.calculator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.calculator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
}

.calculator-header {
  text-align: center;
  margin-bottom: 2rem;
}

.calculator-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.calculator-header h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.calculator-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.calculator-form {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.input-group input,
.input-group select {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--button-radius);
  color: var(--text-white);
  font-size: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #FF6B35;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.calculate-btn {
  background: var(--gradient-orange);
  color: var(--text-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--button-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.calculator-results {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--button-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.calculator-results h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.2rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-of-type {
  border-bottom: none;
}

.result-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.result-value {
  color: #FF6B35;
  font-weight: bold;
  font-size: 1.1rem;
}

.calculator-cta {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

/* Calculator Mobile Responsiveness */
@media (max-width: 1024px) {
  .calculators-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .calculator-card {
    padding: 1.5rem;
  }
  
  .calculator-intro {
    margin-bottom: 2rem;
  }
  
  .calculators-grid {
    gap: 1rem;
  }
  
  .input-group input,
  .input-group select,
  .calculate-btn {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

/* Social Media Styles */
.social-media-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.social-link i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.social-link.coming-soon {
  opacity: 0.5;
  cursor: not-allowed;
}

.social-link.coming-soon:hover {
  transform: none;
  background: none;
  color: rgba(255, 255, 255, 0.5);
}

.social-link small {
  font-size: 0.7rem;
  opacity: 0.7;
  font-style: italic;
}

/* Social Media Platform Colors */
.social-link[href*="instagram"]:hover i {
  color: #E4405F;
}

.social-link[href*="facebook"]:hover i {
  color: #1877F2;
}

.social-link[href*="linkedin"]:hover i {
  color: #0A66C2;
}

.social-link[href*="youtube"]:hover i {
  color: #FF0000;
}

.social-link[href*="tiktok"]:hover i {
  color: #000000;
}

/* Header Social Media Icons */
.header-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

.header-social .social-icon {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.header-social .social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.header-social .social-icon[href*="instagram"]:hover {
  color: #E4405F;
}

.header-social .social-icon[href*="facebook"]:hover {
  color: #1877F2;
}

/* Contact Page Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-contact-link i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.social-contact-link.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
}

.social-contact-link.coming-soon:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
}

.social-contact-link small {
  font-size: 0.7rem;
  opacity: 0.8;
  font-style: italic;
  margin-left: 0.25rem;
}

/* Contact Social Platform Hover Effects */
.social-contact-link.instagram:hover {
  background: linear-gradient(45deg, #E4405F, #C13584);
  color: white;
}

.social-contact-link.facebook:hover {
  background: linear-gradient(45deg, #1877F2, #42A5F5);
  color: white;
}

.social-contact-link.linkedin:hover:not(.coming-soon) {
  background: linear-gradient(45deg, #0A66C2, #0288D1);
  color: white;
}

.social-contact-link.youtube:hover:not(.coming-soon) {
  background: linear-gradient(45deg, #FF0000, #FF5722);
  color: white;
}

.social-contact-link.tiktok:hover:not(.coming-soon) {
  background: linear-gradient(45deg, #000000, #25F4EE);
  color: white;
}

/* Accessibility Styles */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

/* Enhanced Focus States */
*:focus {
  outline: 2px solid #FF6B35;
  outline-offset: 2px;
}

/* Button Focus States */
button:focus,
.calculate-btn:focus,
.cta-button:focus,
.submit-btn:focus {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

/* Link Focus States */
a:focus {
  outline: 2px solid #FF6B35;
  outline-offset: 2px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 2px;
}

/* Dropdown Accessibility */
.dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

/* Remove conflicting dropdown rules - using opacity-based approach above */

/* Mobile Menu Accessibility */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-radius: 4px;
}

.mobile-menu-toggle:focus {
  outline: 2px solid #FF6B35;
  outline-offset: 2px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-white);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Form Accessibility */
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #FF6B35;
  outline-offset: 2px;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Error States */
.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

input:invalid,
select:invalid,
textarea:invalid {
  border-color: #dc3545;
}

input:invalid:focus,
select:invalid:focus,
textarea:invalid:focus {
  outline-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-bg: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --text-white: #ffffff;
  }
  
  .hero-section,
  .services-section,
  .about-snapshot {
    border: 2px solid var(--text-white);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Color Contrast Improvements */
.hero-subtitle,
.section-subtitle,
.media-source {
  color: rgba(255, 255, 255, 0.9); /* Improved from 0.7 for better contrast */
}

.pillar p,
.value-card p {
  color: rgba(255, 255, 255, 0.85); /* Improved contrast */
}

/* Texas Flag Styles */
.texas-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.texas-flag-container {
  position: relative;
  display: flex;
  align-items: center;
}

.texas-flag {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.texas-flag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.texas-flag-image {
  width: 250px;
  height: 320px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
  object-position: center;
}

.texas-flag-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.texas-title-group {
  flex: 1;
}

.texas-title-group .section-title {
  margin-bottom: 0.5rem;
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.texas-title-group .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Texas Flag Animation */
@keyframes flag-wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
}

.texas-flag-container:hover .texas-flag {
  animation: flag-wave 2s ease-in-out infinite;
}

/* Texas Pride Enhancement */
.texas-leadership {
  position: relative;
  background: linear-gradient(135deg, #0A0F1C 0%, #1a1a2e 50%, #0A0F1C 100%);
}

.texas-leadership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(191, 10, 48, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 40, 104, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.texas-leadership .container {
  position: relative;
  z-index: 2;
}

/* Mobile Responsive Texas Header */
@media (max-width: 768px) {
  .texas-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .texas-flag {
    width: 48px;
    height: 32px;
  }
  
  .texas-title-group .section-title {
    font-size: 1.8rem;
  }
  
  .texas-title-group .section-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .texas-flag {
    width: 40px;
    height: 26px;
  }
  
  .texas-header {
    margin-bottom: 2rem;
  }
}

/* Futuristic AI Tech Elements - No Roses */

.decorative-element {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.element-left {
  top: 20%;
  left: -50px;
}

.element-right {
  top: 30%;
  right: -50px;
}

.ai-circuit-pattern {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, rgba(0, 188, 212, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  border: 2px solid rgba(0, 188, 212, 0.2);
  border-radius: 50%;
  position: relative;
  animation: circuitPulse 3s infinite;
}

.ai-circuit-pattern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 2px solid rgba(0, 188, 212, 0.3);
  border-radius: 50%;
  animation: circuitPulse 2s infinite reverse;
}

.ai-circuit-pattern::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  background: rgba(0, 188, 212, 0.2);
  border-radius: 50%;
  animation: circuitGlow 1.5s infinite;
}

.ai-circuit-pattern.small {
  width: 80px;
  height: 80px;
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes circuitGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Enhanced AI Tech Elements for About Page */
.about-hero {
  background: linear-gradient(135deg, #0A0F1C 0%, #03060D 100%);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.about-hero .hero-pattern {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 40%, rgba(0, 188, 212, 0.05) 50%, transparent 60%);
  animation: techBackgroundShift 8s ease-in-out infinite;
}

.ai-tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(0, 188, 212, 0.03) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(156, 39, 176, 0.03) 50%, transparent 100%);
  animation: techScan 6s linear infinite;
}

.hero-tech-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.tech-circle {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(0, 188, 212, 0.2);
  border-radius: 50%;
  animation: techRotate 20s linear infinite;
}

.tech-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50%;
  animation: techPulse 3s ease-in-out infinite;
}

.tech-dots {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 100px;
  height: 100px;
}

.tech-dots::before,
.tech-dots::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(0, 188, 212, 0.4);
  border-radius: 50%;
  animation: techBlink 2s infinite;
}

.tech-dots::before {
  top: 0;
  left: 0;
}

.tech-dots::after {
  bottom: 0;
  right: 0;
  animation-delay: 1s;
}

.tech-lines {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.4), transparent);
  transform: rotate(-45deg);
  animation: techFlow 4s ease-in-out infinite;
}

@keyframes techBackgroundShift {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

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

@keyframes techRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes techPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes techBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes techFlow {
  0% { opacity: 0.3; transform: rotate(-45deg) scaleX(1); }
  50% { opacity: 0.8; transform: rotate(-45deg) scaleX(1.5); }
  100% { opacity: 0.3; transform: rotate(-45deg) scaleX(1); }
}

/* Mobile responsive tech elements */
@media (max-width: 768px) {
  .hero-tech-elements {
    display: none;
  }
}

/* Social Media Responsive */
@media (max-width: 768px) {
  .social-media-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .social-link {
    font-size: 0.8rem;
    padding: 0.4rem;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .header-social {
    display: none;
  }
  
  .social-links {
    gap: 0.5rem;
  }
  
  .social-contact-link {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .social-contact-link i {
    font-size: 1.1rem;
  }
}

/* Enhanced Video Links Styles */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.video-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.media-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.media-item:hover {
  border-color: #FF6B35;
  background: rgba(255, 255, 255, 0.08);
}

.media-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.media-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-link:hover .media-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-link:hover .play-button {
  background: #FF6B35;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.external-link-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #FF0000;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.media-info {
  padding: 1.5rem;
}

.media-info h4 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.media-source {
  color: #FF6B35;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.media-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.video-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.video-stats i {
  font-size: 0.7rem;
}

/* Coming Soon State */
.coming-soon {
  opacity: 0.7;
  pointer-events: none;
}

.coming-soon .play-button {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.coming-soon .media-thumbnail::after {
  content: 'Coming Soon';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

/* External Link Styling */
.external .play-button {
  background: rgba(255, 0, 0, 0.9);
}

.external:hover .play-button {
  background: #FF0000;
}

/* Video Modal (for future use) */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  background: var(--primary-dark);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
}

.video-container {
  width: 80vw;
  height: 45vw;
  max-width: 1200px;
  max-height: 675px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--button-radius);
}

/* Mobile Video Responsiveness */
@media (max-width: 768px) {
  .media-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .media-thumbnail {
    height: 180px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .media-info {
    padding: 1rem;
  }
  
  .video-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Texas Connection About Section */
.texas-connection-about {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
}

.texas-showcase {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
}

.texas-showcase-content h2 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.texas-showcase-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.texas-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.texas-highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.texas-highlight-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.texas-highlight-item i {
  font-size: 1.2rem;
  color: #FFD700;
  min-width: 20px;
}

.texas-highlight-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.capitol-showcase-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.capitol-showcase-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .texas-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .texas-showcase-image {
    order: -1;
  }
  
  .capitol-showcase-image {
    height: 250px;
  }
}

/* ========================================
   RESOURCES PAGE STYLES
   ======================================== */

.resources-hero, .videos-hero, .podcasts-hero {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.9) 0%, rgba(0, 188, 212, 0.9) 50%, rgba(0, 150, 136, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.resources-content, .videos-content, .podcasts-content {
  padding: 4rem 0;
}

.resources-intro, .videos-intro, .podcasts-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.resource-section {
  margin-bottom: 4rem;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-item {
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 188, 212, 0.1);
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.news-date {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-item h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.2) 0%, rgba(156, 39, 176, 0.2) 100%);
  color: var(--text-white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tool-category {
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 188, 212, 0.1);
}

.tool-category h3 {
  color: var(--text-white);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

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

.tool-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
}

.tool-item h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.tool-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.tool-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool-tier {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tool-price {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Reports Grid */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.report-item {
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  border: 1px solid rgba(0, 188, 212, 0.1);
  transition: all 0.3s ease;
}

.report-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.report-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.report-item h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.report-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.report-stats {
  display: flex;
  justify-content: space-around;
  margin: 1.5rem 0;
}

.report-stats span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.report-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.report-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.newsletter-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group-inline {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group-inline input {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 1rem;
}

.form-group-inline input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-note {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ========================================
   INDUSTRY VIDEOS PAGE STYLES
   ======================================== */

.featured-video-section {
  margin-bottom: 4rem;
}

.featured-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 188, 212, 0.1);
}

.video-placeholder {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(156, 39, 176, 0.1));
  z-index: 0;
}

.video-placeholder > * {
  position: relative;
  z-index: 1;
}

.video-placeholder .fas {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.video-info h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.video-info p {
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.video-duration {
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.video-description h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-description p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.video-topics {
  margin: 2rem 0;
}

.video-topics h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.video-topics ul {
  list-style: none;
  padding: 0;
}

.video-topics li {
  color: var(--text-light);
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.video-topics li::before {
  content: '▶';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

/* Video Categories */
.video-categories {
  margin: 4rem 0;
}

.video-category {
  margin-bottom: 3rem;
}

.category-title {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.category-title .fas {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.video-item {
  background: var(--card-background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 188, 212, 0.1);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.video-thumbnail {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(156, 39, 176, 0.1));
  z-index: 0;
}

.video-thumbnail .fas {
  font-size: 2.5rem;
  color: var(--accent-color);
  z-index: 1;
}

.video-thumbnail .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}

.video-details {
  padding: 1.5rem;
}

.video-details h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.video-details p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Video Access Section */
.video-access-section {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.access-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.access-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.benefit-item .fas {
  color: var(--accent-color);
}

.access-cta {
  margin-top: 2rem;
}

.btn-primary.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.access-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ========================================
   PODCASTS PAGE STYLES
   ======================================== */

.podcast-series-section {
  margin-bottom: 4rem;
}

.series-showcase {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 188, 212, 0.1);
}

.podcast-cover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.podcast-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  z-index: 0;
}

.podcast-cover > * {
  position: relative;
  z-index: 1;
}

.podcast-cover .fas {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.series-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.series-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.series-details h3 {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.series-details p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.podcast-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.stat-item .fas {
  color: var(--accent-color);
}

.podcast-platforms h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.platform-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--card-background);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.platform-link:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.platform-link.spotify:hover { border-color: #1DB954; }
.platform-link.apple:hover { border-color: #A855F7; }
.platform-link.google:hover { border-color: #4285F4; }
.platform-link.youtube:hover { border-color: #FF0000; }

/* Episodes List */
.recent-episodes-section {
  margin-bottom: 4rem;
}

.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.episode-item {
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: start;
  border: 1px solid rgba(0, 188, 212, 0.1);
  transition: all 0.3s ease;
}

.episode-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.episode-number {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.episode-content h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.episode-guest {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.episode-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.episode-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.episode-date, .episode-duration, .episode-category {
  color: var(--text-light);
}

.episode-category {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(156, 39, 176, 0.2));
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  font-weight: 500;
}

.episode-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.episode-actions {
  display: flex;
  align-items: center;
}

.play-button {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.episodes-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Podcast Categories */
.podcast-categories {
  margin-bottom: 4rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-item {
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 188, 212, 0.1);
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.category-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.category-item h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.category-item p {
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.episode-count {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Guest Application Section */
.guest-application-section {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  border-radius: var(--border-radius);
  padding: 3rem;
  margin-bottom: 4rem;
}

.guest-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.ideal-guests h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.guest-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.guest-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guest-type .fas {
  color: var(--accent-color);
  font-size: 1.1rem;
  min-width: 20px;
}

.guest-type span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.guest-cta {
  text-align: center;
  margin-top: 2rem;
}

.guest-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Podcast Newsletter */
.podcast-newsletter {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.08) 0%, rgba(156, 39, 176, 0.08) 100%);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
}

.form-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
  text-align: left;
}

.form-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
}

.form-checkboxes input[type="checkbox"] {
  accent-color: var(--accent-color);
}

/* ========================================
   MOBILE RESPONSIVENESS FOR NEW PAGES
   ======================================== */

@media (max-width: 768px) {
  .news-grid, .tools-grid, .reports-grid, .videos-grid, .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-video, .series-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .episode-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .episode-number {
    justify-self: center;
  }
  
  .episode-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .form-group-inline {
    flex-direction: column;
  }
  
  .guest-types {
    grid-template-columns: 1fr;
  }
  
  .form-checkboxes {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .podcast-stats {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .platform-links {
    justify-content: center;
  }
  
  .tool-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: start;
  }
  
  .access-benefits {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

