/* Modern CSS Enhancements for Searchlight Website */

/* ============================================
   CSS Variables for Dark Mode Support
   ============================================ */
:root {
    /* Light Mode Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #1a1a2e;
    --text-secondary: #717275;
    --accent-primary: #87CEEB;
    --accent-secondary: #B0E0E6;
    --accent-info: #87CEEB;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-color: #dee2e6;

    /* Process Section Variables (from lightsearch2) */
    --ink: #1A365D;
    --ink-soft: #2C5282;
    --oat: #ffffff;
    --paper: #ffffff;
    --paper-dim: #F0F8FF;
    --terra: #87CEEB;
    --gold: #87CEEB;
    --gold-bright: #B0E0E6;
    --gold-soft: #E0F4FF;
    --teal: #1F4B4D;
    --text-dark: #1A365D;
    --text-muted: #5C6670;
    --line: #E1D8C4;
    --white: #FFFFFF;
    --ink-faint: rgba(26, 35, 50, 0.5);
    --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

    /* Font Variables (from lightsearch2) */
    --display: 'Fraunces', serif;
    --body: 'Public Sans', -apple-system, sans-serif;
    --mono: 'IBM Plex Mono', monospace;

    /* Container and Easing (from lightsearch2) */
    --container: 1180px;
    --ease: cubic-bezier(.22,.61,.36,1);

    /* Animation Variables */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --bounce-easing: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-theme="dark"] {
    /* Dark Mode Colors */
    --bg-primary: #0f3460;
    --bg-secondary: #16213e;
    --bg-tertiary: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-primary: #0dcaf0;
    --accent-secondary: #0f3460;
    --accent-info: #0dcaf0;
    --card-bg: #1a1a2e;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --border-color: #2a2a4a;
}

/* ============================================
   Reveal Animation (from lightsearch2.html)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   Hero Section Styles (from lightsearch2.html)
   ============================================ */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #87CEEB;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: #87CEEB;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background: #0B1B2B;
  color: #FAF7F1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(11, 27, 43, 0.45);
  background: #87CEEB;
  color: #0B1B2B;
}

.btn-outline {
  background: transparent;
  border-color: #0B1B2B;
  color: #0B1B2B;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: #0B1B2B;
  color: #FAF7F1;
}

.chart-card {
  background: #FFFFFF;
  border: 1px solid #E1D8C4;
  border-radius: 6px;
  padding: 28px 24px 20px;
  box-shadow: 0 30px 60px -30px rgba(11, 27, 43, 0.25);
  position: relative;
}

.chart-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5C6670;
  margin-bottom: 14px;
}

.chart-label .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #87CEEB;
  display: inline-block;
  margin-right: 6px;
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252, 221, 98, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(252, 221, 98, 0); }
}

.floating-tag {
  position: absolute;
  bottom: -22px;
  left: 26px;
  background: #0B1B2B;
  color: #FAF7F1;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  box-shadow: 0 20px 40px -18px rgba(11, 27, 43, 0.5);
  border-left: 3px solid #87CEEB;
  max-width: 240px;
}

.floating-tag .fig {
  color: #87CEEB;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.noise-line {
  fill: none;
  stroke: #C7C0AE;
  stroke-width: 1.4;
  opacity: 0.55;
}

.signal-line {
  fill: none;
  stroke: #87CEEB;
  stroke-width: 2.6;
  stroke-linecap: round;
}

.signal-dot {
  fill: #87CEEB;
}

/* ============================================
   Dark Mode Toggle Button
   ============================================ */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    background: var(--accent-primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.theme-toggle i {
    color: white;
    font-size: 24px;
    transition: transform var(--transition-medium);
}

.theme-toggle:hover i {
    transform: rotate(180deg);
}

/* ============================================
   CSS Grid Layout Enhancements
   ============================================ */
.grid-container {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Enhanced Feature Cards with Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-medium);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform var(--transition-medium);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

/* ============================================
   Team Card Hover Effects
   ============================================ */
.team-card:hover,
.team-card-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.team-card-small:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ============================================
   Glass Effect for Sections
   ============================================ */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-effect-dark {
    background: rgba(15, 52, 96, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Form Input Focus Effects
   ============================================ */
.form-control:focus {
    border-color: #0dcaf0 !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* ============================================
   Stats Counter Animation
   ============================================ */
.stat-item h3 {
    transition: transform 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.1);
}

/* ============================================
   Navigation Link Hover Effects
   ============================================ */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

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

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

/* ============================================
   Footer Link Hover Effects
   ============================================ */
footer a {
    position: relative;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0dcaf0 !important;
}

/* LinkedIn icon - keep blue color on hover */
.social-icon-link.bi-linkedin {
    color: #0077b5 !important;
}

.social-icon-link.bi-linkedin:hover {
    color: #0077b5 !important;
}

/* Gold accent color for icons and highlights */
.text-gold {
    color: #87CEEB !important;
}

.bg-gold {
    background-color: #87CEEB !important;
}

.text-silver {
    color: #B0E0E6 !important;
}

.bg-silver {
    background-color: #B0E0E6 !important;
}

/* ============================================
   Smooth Image Loading
   ============================================ */
img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

/* ============================================
   Advanced Micro-interactions
   ============================================ */

/* Button Micro-interactions */
.custom-btn {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.custom-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.custom-btn:active::before {
    width: 300px;
    height: 300px;
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.team-card, .location-card, .milestone-card {
    transition: all var(--transition-medium);
    cursor: pointer;
}

.team-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.team-card:hover .team-overlay {
    background: rgba(15, 52, 96, 0.9);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.milestone-card:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-info);
}

/* Image Hover Effects */
img {
    transition: transform var(--transition-medium);
}

.team-card:hover img,
.location-card:hover img {
    transform: scale(1.05);
}

/* ============================================
   Scroll Animations
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   Stats Counter Animation
   ============================================ */
.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-info);
    transition: width var(--transition-slow);
}

.stat-item:hover::after {
    width: 60%;
}

.stat-item h3 {
    transition: transform var(--transition-medium);
}

.stat-item:hover h3 {
    transform: scale(1.1);
}

/* ============================================
   Mobile-First Responsive Enhancements
   ============================================ */

/* Better Touch Targets */
@media (max-width: 768px) {
    .custom-btn {
        min-height: 48px;
        min-width: 48px;
        padding: 12px 24px;
    }
    
    .navbar-nav .nav-link {
        padding: 16px 20px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .theme-toggle {
        top: auto;
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .feature-card,
    .team-card-small,
    .milestone-card {
        padding: 1.5rem;
    }
    
    /* Larger touch targets for interactive elements */
    .social-icon-link {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 20px;
    }
    
    /* Better spacing for mobile */
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* Mobile-First Grid Adjustments */
@media (max-width: 576px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Stack location cards on mobile */
    .location-card {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   Dark Mode Specific Styles
   ============================================ */
[data-theme="dark"] .hero {
    background-image: linear-gradient(rgba(15, 52, 96, 0.95), rgba(26, 26, 46, 0.95)), url('images/hero-background.jpg');
}

[data-theme="dark"] .about,
[data-theme="dark"] .schedule,
[data-theme="dark"] .venue {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme="dark"] .contact {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme="dark"] .navbar {
    background: var(--bg-secondary);
}

[data-theme="dark"] .contact-form {
    background: var(--card-bg);
}

[data-theme="dark"] .form-control {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control::placeholder {
    color: var(--text-secondary);
}

/* ============================================
   Loading Animation
   ============================================ */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================
   Bounce Animation
   ============================================ */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   Smooth Scroll Enhancements
   ============================================ */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Improve scroll performance - only apply will-change to animated elements */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-scale {
    will-change: transform, opacity;
}

/* ============================================
   Focus States for Accessibility
   ============================================ */
*:focus-visible {
    outline: 3px solid var(--accent-info);
    outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .theme-toggle,
    .navbar,
    .hero {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
/* ============================================
   Enhanced Scroll Effects & Layout
   ============================================ */

/* Parallax Background Effect */
.hero {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Smooth Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}

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

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}

.scroll-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}

.scroll-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}

.scroll-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Glass Effect Enhancement */
.glass-effect {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Card Hover Effects */
.feature-card, .team-card-small, .honeycomb-cell {
  transition: all 0.4s var(--ease-soft);
}

.feature-card:hover, .team-card-small:hover, .honeycomb-cell:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Section Divider Animation */
.section-padding {
  position: relative;
}

.section-padding::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 221, 98, 0.5), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

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

/* Floating Animation for Hero Elements */
.hero-visual {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Stats Counter Animation */
.stat-item h3 {
  transition: all 0.3s ease;
}

.stat-item:hover h3 {
  transform: scale(1.1);
  color: #87CEEB;
}

/* Button Hover Effects */
.btn-primary, .btn-outline {
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-soft);
}

.btn-primary::before, .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before, .btn-outline:hover::before {
  left: 100%;
}

.btn-primary:hover, .btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(252, 221, 98, 0.4);
}

/* Responsive Layout Improvements */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .honeycomb {
    flex-direction: column;
    align-items: center;
  }
  
  .honeycomb-cell {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 280px;
    clip-path: none;
    border-radius: 15px;
  }
}

/* Smooth Page Transitions */
main {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   SECTION 5: PROJECTS (Bee Cells/Honeycomb)
   ═══════════════════════════════════════════════ */
.projects-section {
  position: relative;
  padding: 60px 20px;
  min-height: auto;
  background: linear-gradient(180deg, #F1EBDD 0%, #B0E0E6 100%);
}

.projects-section::before {
  display: none;
}

.projects-section::after {
  display: none;
}

.projects-container {
  position: relative;
  z-index: 3;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 15px;
}

.projects-subtitle {
  font-size: 18px;
  color: #1a2332;
  opacity: 0.8;
}

.honeycomb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.honeycomb-cell {
  position: relative;
  width: 280px;
  height: 320px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 35, 50, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .honeycomb-cell {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 280px;
    clip-path: none;
    border-radius: 16px;
  }
  
  .project-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
  }
  
  .project-name {
    font-size: 16px;
  }
  
  .project-type {
    font-size: 11px;
  }
  
  .stat-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .projects-section {
    padding: 40px 15px;
  }
  
  .projects-title {
    font-size: 24px;
  }
  
  .projects-subtitle {
    font-size: 14px;
  }
  
  /* Hero Section Mobile */
  .hero {
    padding: 60px 0 !important;
  }
  
  .hero h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  
  .hero p {
    font-size: 14px !important;
  }
  
  .hero .btn {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
  
  .chart-card {
    margin-top: 30px;
  }
  
  /* About Section Mobile */
  .about {
    padding: 40px 0 !important;
  }
  
  .about-content {
    padding: 20px !important;
  }
  
  .about h3 {
    font-size: 20px !important;
  }
  
  .about p {
    font-size: 14px !important;
  }
  
  /* Footer Mobile */
  .site-footer {
    padding: 40px 0 20px !important;
  }
  
  .site-footer .p-5 {
    padding: 20px !important;
  }
  
  .site-footer h4 {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  
  .site-footer p {
    font-size: 14px !important;
  }
  
  .footer-menu-link {
    font-size: 14px !important;
  }
  
  /* CTA Section Mobile */
  .cta-section {
    padding: 40px 15px !important;
  }
  
  .cta-section h3 {
    font-size: 20px !important;
  }
  
  .cta-section p {
    font-size: 14px !important;
  }
  
  .cta-section .btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  
  /* Stats Section Mobile */
  .stat-item h3 {
    font-size: 28px !important;
  }
  
  .stat-item p {
    font-size: 12px !important;
  }
  
  /* Navigation Mobile */
  .navbar-brand span {
    font-size: 1.2rem !important;
  }
  
  .nav-link {
    font-size: 14px !important;
  }
  
  /* Floating WhatsApp Button Mobile */
  .floating-whatsapp {
    width: 50px !important;
    height: 50px !important;
    bottom: 20px !important;
    right: 20px !important;
  }
  
  .floating-whatsapp i {
    font-size: 1.5rem !important;
  }
  
  /* Glass Effect Cards Mobile */
  .glass-effect {
    padding: 20px !important;
  }
  
  /* Section Padding Mobile */
  .section-padding {
    padding: 40px 0 !important;
  }
}

.honeycomb-cell:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(26, 35, 50, 0.2);
}

.honeycomb-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.honeycomb-cell:hover::before {
  opacity: 1;
}

.project-icon {
  font-size: 40px;
  color: #87CEEB;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(252, 221, 98, 0.2) 0%, rgba(252, 221, 98, 0.05) 100%);
  border-radius: 50%;
  margin: 0 auto 15px auto;
}

.project-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 10px;
}

.project-type {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #717275;
  margin-bottom: 15px;
}

.project-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.stat-badge {
  background: rgba(252, 221, 98, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  color: #1a2332;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .honeycomb-cell {
    width: 240px;
    height: 280px;
  }

  .projects-section {
    padding: 60px 32px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .projects-section {
    padding: 60px 32px;
  }
}
