/*!
 * Hanell International - Homepage Styles
 * Developer: Brian Guvava | Company: BLAXIUM (https://blaxium.com)
 * Project: Hanell International Website Redesign v1.0.0
 * Last Updated: December 30, 2024
 * Color Scheme: Blue-Gray Theme
 */

/* =============================================================================
   HOMEPAGE HERO SECTION
   ============================================================================= */

.hero-homepage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #003B6D 0%, #6699CC 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #ffffff;
  color: #003B6D;
  border: 2px solid #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* =============================================================================
   FEATURES SECTION
   ============================================================================= */

.features-section {
  padding: 80px 0;
  background: #F5F6F9;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 59, 109, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #EBEDF3;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 59, 109, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #003B6D, #6699CC);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  font-size: 1.75rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #003B6D;
  margin-bottom: 1rem;
}

.feature-description {
  color: #676767;
  line-height: 1.6;
}

/* =============================================================================
   STATISTICS SECTION
   ============================================================================= */

.stats-section {
  padding: 80px 0;
  background: #003B6D;
  color: #ffffff;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #6699CC;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================================================
   CALL TO ACTION SECTION
   ============================================================================= */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6699CC 0%, #003B6D 100%);
  color: #ffffff;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 768px) {
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

/*!
 * Hanell International - Homepage Styles
 * Developer: Brian Guvava | Company: BLAXIUM (https://blaxium.com)
 * Project: Hanell International Website Redesign v1.0.0
 * Last Updated: June 29, 2025
 */

/* =============================================================================
   HERO SECTION WITH VIDEO BACKGROUND & CAROUSEL
   ============================================================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

/* Video Background */
.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(44, 94, 58, 0.9) 0%, 
    rgba(44, 94, 58, 0.7) 50%, 
    rgba(74, 140, 90, 0.8) 100%);
  z-index: 2;
}

/* Hero Carousel */
.hero-section .carousel {
  position: relative;
  z-index: 3;
  min-height: 100vh;
}

.hero-section .carousel-inner {
  min-height: 100vh;
}

.hero-section .carousel-item {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Carousel Indicators */
.hero-section .carousel-indicators {
  position: absolute;
  bottom: 30px;
  z-index: 4;
}

.hero-section .carousel-indicators [data-bs-target] {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.hero-section .carousel-indicators .active {
  background-color: var(--color-secondary);
  transform: scale(1.1);
}

/* Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-section .carousel-control-prev {
  left: 30px;
}

.hero-section .carousel-control-next {
  right: 30px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
}

.hero-title span {
  display: inline-block;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  opacity: 0.95;
  max-width: 600px;
}

.hero-cta {
  margin-top: var(--spacing-2xl);
}

.hero-cta .btn {
  font-size: var(--font-size-lg);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-base);
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Hero Stats Card & Grid */
.hero-stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.hero-stats-grid {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.stat-item,
.stat-card {
  padding: var(--spacing-lg) var(--spacing-md);
  transition: var(--transition-base);
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero CTA Grid */
.hero-cta-grid {
  margin-top: var(--spacing-2xl);
}

.hero-cta-grid .btn {
  padding: var(--spacing-md) var(--spacing-xl);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-cta-grid .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down-link {
  display: inline-block;
  color: var(--color-white);
  font-size: var(--font-size-2xl);
  opacity: 0.8;
  transition: var(--transition-base);
}

.scroll-down-link:hover {
  color: var(--color-secondary);
  opacity: 1;
  transform: translateY(-5px);
}

/* =============================================================================
   SECTION STYLES
   ============================================================================= */

.section {
  padding: var(--spacing-5xl) 0;
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.3;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

/* =============================================================================
   ABOUT PREVIEW SECTION
   ============================================================================= */

.about-image-wrapper {
  position: relative;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  max-width: 200px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-card .card {
  background: var(--color-white);
  border: none;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
}

.feature-list {
  margin-top: var(--spacing-xl);
}

.feature-item {
  padding: var(--spacing-md) 0;
}

.feature-item h5 {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.feature-item .fa-check-circle {
  font-size: var(--font-size-lg);
}

/* =============================================================================
   SERVICES PREVIEW SECTION
   ============================================================================= */

.service-card {
  background: var(--color-white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(44, 94, 58, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-3xl);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.service-card p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-xl);
}

.service-features li {
  padding: var(--spacing-xs) 0;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.service-features .fa-check {
  font-size: var(--font-size-sm);
}

/* =============================================================================
   STATS SECTION
   ============================================================================= */

.stats-section {
  padding: var(--spacing-5xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stat-box {
  padding: var(--spacing-xl);
  transition: var(--transition-base);
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box .stat-number {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.stat-box .stat-label {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */

.cta-section {
  padding: var(--spacing-5xl) 0;
  background: linear-gradient(135deg, 
    var(--color-primary-dark) 0%, 
    var(--color-primary) 50%, 
    var(--color-primary-light) 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 70%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

.cta-subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons .btn {
  font-size: var(--font-size-lg);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  border-width: 2px;
}

/* =============================================================================
   FOOTER STYLES
   ============================================================================= */

.footer {
  background: var(--color-dark);
  padding: var(--spacing-5xl) 0 var(--spacing-xl);
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
}

.footer-title {
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-lg);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-base);
  font-size: var(--font-size-sm);
}

.footer-links a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-base);
  font-size: var(--font-size-lg);
}

.social-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.newsletter-form .input-group {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 0;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: var(--color-white);
}

.newsletter-form .btn {
  border-radius: 0;
  border: none;
  background: var(--color-secondary);
  padding: var(--spacing-sm) var(--spacing-lg);
}

.newsletter-form .btn:hover {
  background: var(--color-secondary-dark);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: var(--transition-base);
}

.footer-legal a:hover {
  color: var(--color-secondary);
}

/* =============================================================================
   TESTIMONIALS SECTION
   ============================================================================= */

.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(44, 94, 58, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(74, 140, 90, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(44, 94, 58, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.08;
  line-height: 1;
  font-weight: bold;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(44, 94, 58, 0.15);
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.rating-stars .fa-star {
  color: #ddd;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  transform: scale(1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rating-stars .fa-star.star-filled,
.rating-stars .fa-star.filled {
  color: #ffd700;
  animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.testimonial-quote {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
  margin: 0 0 2.5rem 0;
  quotes: none;
  position: relative;
  z-index: 2;
  font-weight: 400;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.author-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-secondary);
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(44, 94, 58, 0.2);
  transition: all 0.3s ease;
}

.author-image:hover {
  transform: scale(1.1);
  border-color: var(--color-primary);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.author-image:hover img {
  transform: scale(1.1);
}

.author-info {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

@media (min-width: 768px) {
  .author-info {
    text-align: left;
  }
}

.author-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.025em;
}

.author-title {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 0.25rem 0;
  font-weight: 500;
}

.author-location {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .author-location {
    justify-content: flex-start;
  }
}

.author-location::before {
  content: '📍';
  font-size: 0.8rem;
}

/* Testimonials Carousel Controls */
#testimonialsCarousel {
  position: relative;
  overflow: visible;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid var(--color-white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(44, 94, 58, 0.3);
  opacity: 0.9;
}

#testimonialsCarousel .carousel-control-prev {
  left: -30px;
}

#testimonialsCarousel .carousel-control-next {
  right: -30px;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  transform: translateY(-50%) scale(1.15);
  opacity: 1;
  box-shadow: 0 12px 35px rgba(74, 140, 90, 0.4);
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  filter: brightness(0) invert(1);
}

#testimonialsCarousel .carousel-indicators {
  bottom: -4rem;
  margin-bottom: 0;
}

#testimonialsCarousel .carousel-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.4;
  border: none;
  margin: 0 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

#testimonialsCarousel .carousel-indicators button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#testimonialsCarousel .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.3);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  box-shadow: 0 4px 15px rgba(74, 140, 90, 0.4);
}

#testimonialsCarousel .carousel-indicators button.active::before {
  border-color: var(--color-secondary);
}

/* Mobile Carousel Controls */
@media (max-width: 768px) {
  #testimonialsCarousel .carousel-control-prev {
    left: 10px;
  }
  
  #testimonialsCarousel .carousel-control-next {
    right: 10px;
  }
  
  #testimonialsCarousel .carousel-control-prev,
  #testimonialsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    opacity: 0.8;
  }
}

/* =============================================================================
   NEWS & INSIGHTS SECTION
   ============================================================================= */

.news-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  position: relative;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(74, 140, 90, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(44, 94, 58, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.news-filter-btn {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.news-filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.news-filter-btn:hover,
.news-filter-btn.active {
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 94, 58, 0.2);
}

.news-filter-btn:hover::before,
.news-filter-btn.active::before {
  left: 0;
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(44, 94, 58, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(44, 94, 58, 0.15);
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card.news-hidden {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  pointer-events: none;
}

.news-card.news-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.news-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(44, 94, 58, 0.95);
  color: var(--color-white);
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 70px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(44, 94, 58, 0.3);
}

.news-card:hover .news-date {
  background: rgba(74, 140, 90, 0.95);
  transform: scale(1.1);
}

.date-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.date-month {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.news-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.news-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary-lighter) 100%);
  color: var(--color-secondary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(74, 140, 90, 0.2);
  transition: all 0.3s ease;
}

.news-card:hover .news-category {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
  transform: translateX(5px);
}

.news-title {
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.news-title a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.3s ease;
  letter-spacing: -0.025em;
  display: block;
}

.news-title a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.news-excerpt {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(44, 94, 58, 0.1);
  font-size: 0.9rem;
  color: var(--color-text-light);
  position: relative;
}

.news-meta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: width 0.3s ease;
}

.news-card:hover .news-meta::before {
  width: 100%;
}

.news-author {
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.news-card:hover .news-author {
  color: var(--color-primary);
}

.news-read-time {
  color: var(--color-text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-read-time::before {
  content: '📖';
  font-size: 0.8rem;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  background: transparent;
}

.news-read-more:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateX(5px);
}

.news-read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.news-read-more:hover::after {
  transform: translateX(3px);
}

/* Load More Button */
.news-load-more {
  text-align: center;
  margin-top: 3rem;
}

.load-more-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(44, 94, 58, 0.2);
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(44, 94, 58, 0.3);
}

.load-more-btn:hover::before {
  left: 0;
}

/* News Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-card[style*="animation"] {
  animation-fill-mode: both;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .news-filters {
    justify-content: center;
  }
  
  .news-filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .news-image {
    height: 200px;
  }
  
  .news-content {
    padding: 1.25rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 1.1rem;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
  }
  
  #testimonialsCarousel .carousel-control-prev,
  #testimonialsCarousel .carousel-control-next {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .news-section {
    padding: 3rem 0;
  }
}

/* =============================================================================
   PRINT STYLES
   ============================================================================= */

@media print {
  .hero-section,
  .stats-section,
  .cta-section,
  .footer {
    background: none !important;
    color: black !important;
  }
  
  .hero-background,
  .hero-overlay {
    display: none;
  }
  
  .btn {
    border: 1px solid black;
    background: none;
    color: black;
  }
}

/* =============================================================================
   ANIMATION DELAYS
   ============================================================================= */

[data-animate="fade-in-up"] {
  opacity: 0;
  transform: translateY(30px);
}

[data-animate="fade-in-left"] {
  opacity: 0;
  transform: translateX(-30px);
}

[data-animate="fade-in-right"] {
  opacity: 0;
  transform: translateX(30px);
}

.is-animated {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* Hero Title Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================================
   ADVISORY BOARD INTRODUCTION SECTION
   ============================================================================= */

.advisory-board-intro-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.advisory-intro-card {
  border: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.advisory-intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.advisory-intro-card .position-relative.z-index-1 {
  z-index: 2;
}

.advisory-intro-card .btn.hover-lift {
  transition: all 0.3s ease;
  border-width: 2px;
}

.advisory-intro-card .btn.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 120, 81, 0.3);
}

.advisory-intro-card .btn-outline-primary.hover-lift:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.advisory-intro-card .fas.fa-users-cog {
  color: var(--color-primary);
  text-shadow: 0 2px 4px rgba(0, 120, 81, 0.2);
}

/* Decorative Elements Animation */
.advisory-intro-card .position-absolute.top-0.end-0,
.advisory-intro-card .position-absolute.bottom-0.start-0 {
  transition: all 0.3s ease;
}

.advisory-intro-card:hover .position-absolute.top-0.end-0 {
  transform: rotate(20deg) scale(1.1);
}

.advisory-intro-card:hover .position-absolute.bottom-0.start-0 {
  transform: rotate(-20deg) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .advisory-intro-card {
    padding: 2rem !important;
    margin: 0 1rem;
  }
  
  .advisory-intro-card .d-flex.gap-3 {
    flex-direction: column;
    gap: 1rem !important;
  }
  
  .advisory-intro-card .btn {
    width: 100%;
  }
  
  .advisory-intro-card .position-absolute.top-0.end-0 i,
  .advisory-intro-card .position-absolute.bottom-0.start-0 i {
    font-size: 4rem !important;
  }
}

@media (max-width: 576px) {
  .advisory-intro-card {
    padding: 1.5rem !important;
  }
  
  .advisory-intro-card .section-title {
    font-size: 1.8rem;
  }
  
  .advisory-intro-card .lead {
    font-size: 1rem;
  }
}
