/*
Theme Name: Gunnerson Consulting
Theme URI: https://gunnersonconsulting.com
Author: Gunnerson Consulting
Author URI: https://gunnersonconsulting.com
Description: Professional WordPress theme for Gunnerson Consulting & Communication Site Services - Cell Tower Lease Experts
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gunnerson
*/

/* CSS Variables for Brand Colors */
:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #2563eb;
    --accent-gold: #d97706;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header-top {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    text-align: center;
}

.contact-info {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
}

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

.header-main {
    padding: 22px 0;
    transition: padding 0.3s ease;
}

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

.site-logo img {
    max-height: 110px;
    max-width: 280px;
    width: auto;
    transition: max-height 0.3s ease, max-width 0.3s ease;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    background-color: var(--accent-gold);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.95), rgba(30, 58, 138, 0.95)),
                url('images/cell-tower-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-blue), var(--accent-gold));
    border-radius: 2px;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--accent-gold);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Projects List */
.projects-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.projects-list {
    list-style: none;
}

.projects-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: var(--white);
    border-left: 4px solid var(--secondary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.projects-list li:hover {
    border-left-color: var(--accent-gold);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Resources Links */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.resource-link {
    display: block;
    padding: 18px 20px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
}

.resource-link:hover {
    background: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
    text-decoration: none;
    transform: scale(1.02);
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ea580c 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        width: 100%;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .services-grid,
    .projects-columns,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.bold {
    font-weight: 700;
}


/* ============================================
   NEW SECTIONS - Gunnerson Consulting Enhancements
   ============================================ */

/* Hero Enhancements */
.hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1f2937 0%, #1e3a8a 50%, #1f2937 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('<?php echo get_template_directory_uri(); ?>/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(217, 119, 6, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(217, 119, 6, 0.4);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.75;
  text-align: left;
  text-align: center;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--accent-gold);
  color: #1f2937;
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background: #b45309;
  border-color: #b45309;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180,83,9,0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

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

/* Stats Bar */
.stats-bar {
  background: var(--accent-gold);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #44403c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services Grid - Enhanced */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--primary-blue);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Projects Section */
.projects-section {
  background: var(--light-gray);
  padding: 72px 0;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.project-tag {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: all 0.2s ease;
}

.project-tag:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Blog Grid */
.blog-preview-section {
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--medium-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--dark-gray);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--primary-blue);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

.no-posts {
  text-align: center;
  color: var(--medium-gray);
  padding: 40px;
  grid-column: 1 / -1;
}

/* Resources Section */
.resources-section {
  background: var(--dark-gray);
  padding: 72px 0;
}

.resources-section .section-title {
  color: #ffffff;
}

.resources-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.resources-section .section-header p {
  color: #7db3e0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.resources-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s ease;
}

.resource-link:hover {
  color: var(--accent-gold);
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .services-grid,
  .blog-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================
   Gunnerson Consulting Enhanced Sections
   ============================================ */

/* Hero Enhancements */
.hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1f2937 0%, #1e3a8a 50%, #1f2937 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(217,119,6,0.2);
  color: #fbbf24;
  border: 1px solid rgba(217,119,6,0.4);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.75;
  text-align: center;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-primary { background: var(--accent-gold); color: #1f2937; border-color: var(--accent-gold); }
.btn-primary:hover { background: #b45309; border-color: #b45309; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(180,83,9,0.3); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-outline { background: transparent; color: var(--primary-blue); border-color: var(--primary-blue); padding: 10px 22px; font-size: 0.9rem; }
.btn-outline:hover { background: var(--primary-blue); color: #fff; }
.text-center { text-align: center; }

/* Stats Bar */
.stats-bar { background: var(--accent-gold); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: #1f2937; line-height: 1; }
.stat-label { font-size: 0.85rem; font-weight: 600; color: #44403c; text-transform: uppercase; letter-spacing: 0.05em; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: var(--dark-gray); margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--medium-gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Service Cards Enhanced */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 36px 28px; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-color: var(--primary-blue); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 12px; }
.service-card p { color: var(--medium-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

/* Projects Section */
.projects-section { background: var(--light-gray); padding: 72px 0; }
.projects-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.project-tag { background: #fff; border: 1px solid #d1d5db; border-radius: 50px; padding: 8px 20px; font-size: 0.9rem; font-weight: 500; color: var(--dark-gray); transition: all 0.2s ease; }
.project-tag:hover { background: var(--primary-blue); border-color: var(--primary-blue); color: #fff; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg,#1e3a8a 0%,#1e40af 100%); padding: 72px 0; text-align: center; }
.cta-content h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }

/* Blog Grid */
.blog-preview-section { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 24px; }
.blog-card-meta { font-size: 0.8rem; color: var(--medium-gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--dark-gray); text-decoration: none; }
.blog-card-title a:hover { color: var(--primary-blue); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.65; margin-bottom: 16px; }
.no-posts { text-align: center; color: var(--medium-gray); padding: 40px; grid-column: 1 / -1; }

/* Resources Section */
.resources-section { background: var(--dark-gray); padding: 72px 0; }
.resources-section .section-title { color: #fff; }
.resources-section .section-subtitle { color: rgba(255,255,255,0.7); }
.resources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.resources-column { display: flex; flex-direction: column; gap: 10px; }
.resource-link { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s ease; }
.resource-link:hover { color: var(--accent-gold); }

/* Animations */
.fade-in-up { animation: fadeInUp 0.8s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .blog-grid, .resources-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2rem; }
}

/* ============================================
   Gunnerson Consulting Enhanced Sections
   ============================================ */

.hero-section { position: relative; min-height: auto; display: flex; align-items: center; background: linear-gradient(135deg, #1f2937 0%, #1e3a8a 50%, #1f2937 100%); overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; opacity: 0.15; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 80px 20px; }
.hero-badge { display: inline-block; background: rgba(217,119,6,0.2); color: #fbbf24; border: 1px solid rgba(217,119,6,0.4); padding: 6px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: #ffffff; line-height: 1.15; margin-bottom: 24px; }
.hero-description { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto 36px; line-height: 1.75; text-align: center; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; transition: all 0.2s ease; border: 2px solid transparent; }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-primary { background: var(--accent-gold); color: #1f2937; border-color: var(--accent-gold); }
.btn-primary:hover { background: #b45309; border-color: #b45309; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(180,83,9,0.3); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-outline { background: transparent; color: var(--primary-blue); border-color: var(--primary-blue); padding: 10px 22px; font-size: 0.9rem; }
.btn-outline:hover { background: var(--primary-blue); color: #fff; }
.text-center { text-align: center; }
.stats-bar { background: var(--accent-gold); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: #1f2937; line-height: 1; }
.stat-label { font-size: 0.85rem; font-weight: 600; color: #44403c; text-transform: uppercase; letter-spacing: 0.05em; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: var(--dark-gray); margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--medium-gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 36px 28px; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-color: var(--primary-blue); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 12px; }
.service-card p { color: var(--medium-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.projects-section { background: var(--light-gray); padding: 72px 0; }
.projects-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.project-tag { background: #fff; border: 1px solid #d1d5db; border-radius: 50px; padding: 8px 20px; font-size: 0.9rem; font-weight: 500; color: var(--dark-gray); transition: all 0.2s ease; }
.project-tag:hover { background: var(--primary-blue); border-color: var(--primary-blue); color: #fff; }
.cta-banner { background: linear-gradient(135deg,#1e3a8a 0%,#1e40af 100%); padding: 72px 0; text-align: center; }
.cta-content h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.blog-preview-section { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 24px; }
.blog-card-meta { font-size: 0.8rem; color: var(--medium-gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--dark-gray); text-decoration: none; }
.blog-card-title a:hover { color: var(--primary-blue); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.65; margin-bottom: 16px; }
.no-posts { text-align: center; color: var(--medium-gray); padding: 40px; grid-column: 1 / -1; }
.resources-section { background: var(--dark-gray); padding: 72px 0; }
.resources-section .section-title { color: #fff; }
.resources-section .section-subtitle { color: rgba(255,255,255,0.7); }
.resources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.resources-column { display: flex; flex-direction: column; gap: 10px; }
.resource-link { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s ease; }
.resource-link:hover { color: var(--accent-gold); }
.fade-in-up { animation: fadeInUp 0.8s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .blog-grid, .resources-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2rem; }
}

/* ============================================
   Gunnerson Consulting Enhanced Sections
   ============================================ */

.hero-section { position: relative; min-height: auto; display: flex; align-items: center; background: linear-gradient(135deg, #1f2937 0%, #1e3a8a 50%, #1f2937 100%); overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; opacity: 0.15; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 80px 20px; }
.hero-badge { display: inline-block; background: rgba(217,119,6,0.2); color: #fbbf24; border: 1px solid rgba(217,119,6,0.4); padding: 6px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: #ffffff; line-height: 1.15; margin-bottom: 24px; }
.hero-description { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto 36px; line-height: 1.75; text-align: center; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; transition: all 0.2s ease; border: 2px solid transparent; }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-primary { background: var(--accent-gold); color: #1f2937; border-color: var(--accent-gold); }
.btn-primary:hover { background: #b45309; border-color: #b45309; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(180,83,9,0.3); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-outline { background: transparent; color: var(--primary-blue); border-color: var(--primary-blue); padding: 10px 22px; font-size: 0.9rem; }
.btn-outline:hover { background: var(--primary-blue); color: #fff; }
.text-center { text-align: center; }
.stats-bar { background: var(--accent-gold); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: #1f2937; line-height: 1; }
.stat-label { font-size: 0.85rem; font-weight: 600; color: #44403c; text-transform: uppercase; letter-spacing: 0.05em; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: var(--dark-gray); margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--medium-gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 36px 28px; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-color: var(--primary-blue); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 12px; }
.service-card p { color: var(--medium-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.projects-section { background: var(--light-gray); padding: 72px 0; }
.projects-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.project-tag { background: #fff; border: 1px solid #d1d5db; border-radius: 50px; padding: 8px 20px; font-size: 0.9rem; font-weight: 500; color: var(--dark-gray); transition: all 0.2s ease; }
.project-tag:hover { background: var(--primary-blue); border-color: var(--primary-blue); color: #fff; }
.cta-banner { background: linear-gradient(135deg,#1e3a8a 0%,#1e40af 100%); padding: 72px 0; text-align: center; }
.cta-content h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.blog-preview-section { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 24px; }
.blog-card-meta { font-size: 0.8rem; color: var(--medium-gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--dark-gray); text-decoration: none; }
.blog-card-title a:hover { color: var(--primary-blue); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.65; margin-bottom: 16px; }
.no-posts { text-align: center; color: var(--medium-gray); padding: 40px; grid-column: 1 / -1; }
.resources-section { background: var(--dark-gray); padding: 72px 0; }
.resources-section .section-title { color: #fff; }
.resources-section .section-subtitle { color: rgba(255,255,255,0.7); }
.resources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.resources-column { display: flex; flex-direction: column; gap: 10px; }
.resource-link { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s ease; }
.resource-link:hover { color: var(--accent-gold); }
.fade-in-up { animation: fadeInUp 0.8s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .blog-grid, .resources-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2rem; }
}

/* ============================================
   IMPORTANT OVERRIDES - Gunnerson Consulting
   These ensure new sections render correctly
   ============================================ */
.hero-section { position: relative !important; min-height: auto !important; display: flex !important; align-items: center !important; background: linear-gradient(135deg, #1f2937 0%, #1e3a8a 50%, #1f2937 100%) !important; overflow: hidden !important; }
.hero-content { position: relative !important; z-index: 2 !important; text-align: center !important; padding: 30px 20px !important; width: 100% !important; }
.hero-badge { display: inline-block !important; background: rgba(217,119,6,0.25) !important; color: #fbbf24 !important; border: 1px solid rgba(217,119,6,0.4) !important; padding: 6px 20px !important; border-radius: 50px !important; font-size: 0.85rem !important; font-weight: 600 !important; text-transform: uppercase !important; margin-bottom: 20px !important; }
.hero-title { font-size: clamp(2rem,5vw,3.8rem) !important; font-weight: 800 !important; color: #ffffff !important; line-height: 1.15 !important; margin-bottom: 24px !important; }
.hero-description { font-size: 1.1rem !important; color: rgba(255,255,255,0.9) !important; max-width: 700px !important; margin: 0 auto 36px !important; line-height: 1.75 !important; text-align: center !important; }
.hero-cta { display: flex !important; gap: 16px !important; justify-content: center !important; flex-wrap: wrap !important; margin-top: 8px !important; }
.btn { display: inline-block !important; padding: 12px 28px !important; border-radius: 6px !important; font-weight: 600 !important; font-size: 1rem !important; text-decoration: none !important; cursor: pointer !important; transition: all 0.2s ease !important; border: 2px solid transparent !important; }
.btn-large { padding: 16px 36px !important; font-size: 1.1rem !important; }
.btn-primary { background: #d97706 !important; color: #1f2937 !important; border-color: #d97706 !important; }
.btn-primary:hover { background: #b45309 !important; border-color: #b45309 !important; color: #fff !important; }
.btn-secondary { background: transparent !important; color: #fff !important; border: 2px solid rgba(255,255,255,0.6) !important; }
.btn-secondary:hover { background: rgba(255,255,255,0.15) !important; border-color: #fff !important; }
.btn-outline { background: transparent !important; color: #1e3a8a !important; border: 2px solid #1e3a8a !important; padding: 10px 22px !important; font-size: 0.9rem !important; }
.btn-outline:hover { background: #1e3a8a !important; color: #fff !important; }
.text-center { text-align: center !important; }
.stats-bar { background: #d97706 !important; padding: 36px 0 !important; }
.stats-grid { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 20px !important; text-align: center !important; }
.stat-item { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 6px !important; }
.stat-number { font-size: 2.4rem !important; font-weight: 800 !important; color: #1f2937 !important; line-height: 1 !important; display: block !important; }
.stat-label { font-size: 0.85rem !important; font-weight: 600 !important; color: #44403c !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; display: block !important; }
.section-header { text-align: center !important; margin-bottom: 48px !important; }
.section-title { font-size: clamp(1.8rem,3vw,2.4rem) !important; font-weight: 700 !important; color: #1f2937 !important; margin-bottom: 12px !important; }
.section-subtitle { font-size: 1.05rem !important; color: #6b7280 !important; max-width: 600px !important; margin: 0 auto !important; line-height: 1.7 !important; }
.services-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 28px !important; }
.service-card { background: #fff !important; border: 1px solid #e5e7eb !important; border-radius: 12px !important; padding: 36px 28px !important; transition: all 0.3s ease !important; }
.service-card:hover { transform: translateY(-6px) !important; box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important; border-color: #1e3a8a !important; }
.service-icon { font-size: 2.4rem !important; margin-bottom: 16px !important; display: block !important; }
.service-card h3 { font-size: 1.2rem !important; font-weight: 700 !important; color: #1f2937 !important; margin-bottom: 12px !important; }
.service-card p { color: #6b7280 !important; font-size: 0.95rem !important; line-height: 1.7 !important; margin-bottom: 20px !important; }
.projects-section { background: #f3f4f6 !important; padding: 72px 0 !important; }
.projects-grid { display: flex !important; flex-wrap: wrap !important; gap: 12px !important; justify-content: center !important; }
.project-tag { display: inline-block !important; background: #fff !important; border: 1px solid #d1d5db !important; border-radius: 50px !important; padding: 8px 20px !important; font-size: 0.9rem !important; font-weight: 500 !important; color: #1f2937 !important; transition: all 0.2s ease !important; }
.project-tag:hover { background: #1e3a8a !important; border-color: #1e3a8a !important; color: #fff !important; }
.cta-banner { background: linear-gradient(135deg,#1e3a8a 0%,#1e40af 100%) !important; padding: 72px 0 !important; text-align: center !important; }
.cta-content h2 { font-size: clamp(1.8rem,3vw,2.4rem) !important; font-weight: 700 !important; color: #fff !important; margin-bottom: 16px !important; }
.cta-content p { font-size: 1.1rem !important; color: rgba(255,255,255,0.85) !important; max-width: 600px !important; margin: 0 auto 32px !important; line-height: 1.7 !important; }
.blog-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 28px !important; }
.blog-card { background: #fff !important; border: 1px solid #e5e7eb !important; border-radius: 12px !important; overflow: hidden !important; transition: all 0.3s ease !important; }
.blog-card:hover { transform: translateY(-4px) !important; box-shadow: 0 10px 28px rgba(0,0,0,0.1) !important; }
.blog-card-image img { width: 100% !important; height: 200px !important; object-fit: cover !important; }
.blog-card-content { padding: 24px !important; }
.blog-card-meta { font-size: 0.8rem !important; color: #6b7280 !important; font-weight: 500 !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; margin-bottom: 8px !important; display: block !important; }
.blog-card-title { font-size: 1.05rem !important; font-weight: 700 !important; margin-bottom: 10px !important; line-height: 1.4 !important; }
.blog-card-title a { color: #1f2937 !important; text-decoration: none !important; }
.blog-card-title a:hover { color: #1e3a8a !important; }
.blog-card-excerpt { font-size: 0.9rem !important; color: #6b7280 !important; line-height: 1.65 !important; margin-bottom: 16px !important; }
.resources-section { background: #1f2937 !important; padding: 72px 0 !important; }
.resources-section .section-title { color: #fff !important; }
.resources-section .section-subtitle { color: rgba(255,255,255,0.7) !important; }
.resources-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 40px !important; }
.resources-column { display: flex !important; flex-direction: column !important; gap: 10px !important; }
.resource-link { color: #1e293b !important; text-decoration: none !important; font-size: 0.95rem !important; font-weight: 600 !important; display: block !important; }
.resource-link:hover { color: var(--white) !important; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr) !important; }
  .services-grid, .blog-grid, .resources-grid { grid-template-columns: 1fr !important; }
  .hero-cta { flex-direction: column !important; align-items: center !important; }
  .hero-title { font-size: 2rem !important; }
}

/* ===== Video Gallery Section ===== */
.video-gallery-section { background: #f3f4f6 !important; padding: 72px 0 !important; }

/* Carousel wrapper */
.video-carousel { position: relative !important; max-width: 860px !important; margin: 0 auto !important; }

/* Track holds all slides, only .active is visible */
.video-carousel-track { position: relative !important; }

.video-slide { display: none !important; }
.video-slide.active { display: block !important; }

.video-slide video { width: 100% !important; display: block !important; border-radius: 12px !important; box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important; background: #000 !important; max-height: 480px !important; object-fit: contain !important; }

.video-slide-title { text-align: center !important; margin-top: 16px !important; font-size: 1.1rem !important; font-weight: 700 !important; color: #1f2937 !important; letter-spacing: 0.01em !important; }

/* Prev / Next controls */
.video-carousel-controls { display: flex !important; align-items: center !important; justify-content: center !important; gap: 24px !important; margin-top: 24px !important; }

.video-carousel-btn { background: #1e3a8a !important; color: #fff !important; border: none !important; border-radius: 50% !important; width: 44px !important; height: 44px !important; font-size: 1.3rem !important; cursor: pointer !important; display: flex !important; align-items: center !important; justify-content: center !important; transition: background 0.2s ease !important; flex-shrink: 0 !important; }
.video-carousel-btn:hover { background: #d97706 !important; }

.video-carousel-counter { font-size: 1rem !important; font-weight: 600 !important; color: #4b5563 !important; min-width: 60px !important; text-align: center !important; }

/* Dot indicators */
.video-carousel-dots { display: flex !important; justify-content: center !important; gap: 8px !important; margin-top: 16px !important; flex-wrap: wrap !important; }

.video-dot { width: 10px !important; height: 10px !important; border-radius: 50% !important; border: none !important; background: #cbd5e1 !important; cursor: pointer !important; padding: 0 !important; transition: background 0.2s ease, transform 0.2s ease !important; }
.video-dot.active { background: #1e3a8a !important; transform: scale(1.3) !important; }
.video-dot:hover { background: #d97706 !important; }

.video-empty { text-align: center !important; color: #6b7280 !important; font-size: 1rem !important; padding: 40px 0 !important; }

/* === Sticky Header Shrink-on-Scroll === */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

.site-header.scrolled .header-main {
    padding: 10px 0 !important;
}

.site-header.scrolled .site-logo img {
    max-height: 65px !important;
    max-width: 200px !important;
}

.site-header.scrolled .header-top {
    padding: 6px 0 !important;
}


/* === AI Advantage Bar === */
.ai-advantage-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 22px 0;
    border-top: 3px solid #d97706;
    border-bottom: 3px solid #d97706;
}

.ai-advantage-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ai-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.ai-text {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}

.ai-text strong {
    color: #d97706;
    font-size: 1.05rem;
}

.ai-advantage-bar .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .ai-advantage-content {
        text-align: center;
    }
    .ai-text {
        min-width: 100%;
    }
}
