/* styles-security.css - fire & security company */
:root {
    --red: #E63946;
    --red-dark: #B71C1C;
    --red-light: #FF6B75;
    --dark: #1A1A2E;
    --dark-light: #2A2A3E;
    --gray: #4A4A5E;
    --gray-light: #8A8A9E;
    --cream: #F5F5F7;
    --white: #FFFFFF;
    --font-display: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }


/* ============================================ */
/* HERO SECTION - hero prefix                   */
/* ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
  }
  
  /* Background & Slideshow */
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: scale(1.05);
  }
  
  .hero-slide.active {
    opacity: 1;
    transform: scale(1);
  }
  
  .hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.88) 0%, rgba(230, 57, 70, 0.35) 100%);
  }
  
  /* Particles */
  .hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }
  
  .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: heroParticleFloat 15s linear infinite;
  }
  
  .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
  .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
  .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
  .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
  .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 24s; }
  .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 19s; }
  .particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 21s; }
  .particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 17s; }
  .particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 23s; }
  .particle:nth-child(10) { left: 15%; animation-delay: 3.5s; animation-duration: 25s; }
  
  @keyframes heroParticleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
  }
  
  /* Container */
  .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
  }
  
  /* Hero Content */
  .hero-content {
    max-width: 780px;
    color: white;
    padding: 2rem 0;
  }
  
  /* Badge */
  .hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.2s forwards;
  }
  
  .hero-badge-line {
    width: 40px;
    height: 2px;
    background: var(--red);
  }
  
  .hero-badge-text {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  /* Title */
  .hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
  }
  
  .hero-title-line {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: heroRevealUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  }
  
  .hero-title-line:nth-child(1) { animation-delay: 0.3s; }
  .hero-title-line:nth-child(2) { animation-delay: 0.5s; }
  .hero-title-line:nth-child(3) { animation-delay: 0.7s; }
  
  .hero-title-line.accent {
    color: var(--red);
  }
  
  @keyframes heroRevealUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes heroFadeInUp {
    to {
      opacity: 1;
    }
  }
  
  /* Description */
  .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.9s forwards;
  }
  
  /* CTA Buttons */
  .hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 1.1s forwards;
  }
  
  .hero-btn-primary {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 60px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
  }
  
  .hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s;
  }
  
  .hero-btn-primary:hover::before {
    transform: translateX(100%) skewX(-15deg);
  }
  
  .hero-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.35);
    gap: 1.5rem;
  }
  
  .hero-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 60px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .hero-btn-secondary:hover {
    background: white;
    color: var(--dark);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  /* Trust Indicators */
  .hero-trust {
    display: flex;
    gap: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 1.3s forwards;
  }
  
  .hero-trust-item {
    text-align: center;
  }
  
  .hero-trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
  }
  
  .hero-trust-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .hero-trust-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
  }
  
  /* Partners */
  .hero-partners {
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 1.5s forwards;
  }
  
  .hero-partners-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.8rem;
  }
  
  .hero-partners-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .hero-partner {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  
  .hero-partner:hover {
    color: white;
  }
  
  /* Floating Cards */
  .hero-floating {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
    pointer-events: none;
  }
  
  .hero-float-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    pointer-events: all;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: heroFloat 4s ease-in-out infinite;
  }
  
  .hero-float-card:hover {
    transform: scale(1.05) !important;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--red);
  }
  
  .hero-float-card .hero-float-glow {
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
  }
  
  .hero-float-card:hover .hero-float-glow {
    opacity: 0.15;
  }
  
  .hero-float-1 { animation-delay: 0s; }
  .hero-float-2 { animation-delay: 1.5s; }
  .hero-float-3 { animation-delay: 3s; }
  .hero-float-4 { animation-delay: 4.5s; }
  
  @keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .hero-float-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .hero-float-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: white;
    margin-bottom: 0.1rem;
  }
  
  .hero-float-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
  }
  
  /* Slide Controls */
  .hero-controls {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 3;
  }
  
  .hero-prev,
  .hero-next {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .hero-prev:hover,
  .hero-next:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
  }
  
  .hero-dots {
    display: flex;
    gap: 0.6rem;
  }
  
  .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .hero-dot.active {
    background: var(--red);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
  }
  
  /* Scroll Indicator */
  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    opacity: 0.6;
  }
  
  .hero-scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: heroScrollPulse 2s ease-in-out infinite;
  }
  
  @keyframes heroScrollPulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
  }
  
  /* Emergency Badge */
  .hero-emergency {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: var(--dark);
    border: 1px solid var(--red);
    border-radius: 60px;
    padding: 0.8rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }
  
  .hero-emergency-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: white;
  }
  
  .hero-emergency-icon {
    font-size: 1.4rem;
    animation: heroPulse 1.5s ease-in-out infinite;
  }
  
  @keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
  }
  
  .hero-emergency-text {
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .hero-emergency-phone {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .hero-emergency-phone:hover {
    color: white;
  }
  
  .hero-emergency-badge {
    background: var(--red);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: heroPulse 1.5s ease-in-out infinite 0.5s;
  }
  
  /* ============================================ */
  /* RESPONSIVE - hero                           */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 3.8rem;
    }
    
    .hero-floating {
      display: none;
    }
  }
  
  @media (max-width: 992px) {
    .hero-title {
      font-size: 3.2rem;
    }
    
    .hero-trust {
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    
    .hero-trust-divider {
      display: none;
    }
    
    .hero-controls {
      bottom: 1.5rem;
      right: 1.5rem;
    }
    
    .hero-emergency {
      bottom: 1rem;
      padding: 0.6rem 1.5rem;
    }
    
    .hero-emergency-content {
      gap: 0.8rem;
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }
    
    .hero-cta {
      flex-direction: column;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      justify-content: center;
    }
    
    .hero-trust {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .hero-trust-number {
      font-size: 2rem;
    }
    
    .hero-partners-logos {
      gap: 1rem;
    }
    
    .hero-partner {
      font-size: 0.8rem;
    }
    
    .hero-controls {
      bottom: 1rem;
      right: 1rem;
      gap: 0.8rem;
    }
    
    .hero-prev,
    .hero-next {
      width: 40px;
      height: 40px;
    }
    
    .hero-dot {
      width: 8px;
      height: 8px;
    }
    
    .hero-scroll {
      display: none;
    }
    
    .hero-emergency {
      bottom: 0.5rem;
      left: 0.5rem;
      right: 0.5rem;
      transform: none;
      border-radius: 16px;
    }
    
    .hero-emergency-content {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-badge-line {
      width: 20px;
    }
    
    .hero-badge-text {
      font-size: 0.7rem;
    }
    
    .hero-trust {
      grid-template-columns: 1fr 1fr;
    }
    
    .hero-trust-number {
      font-size: 1.6rem;
    }
    
    .hero-trust-label {
      font-size: 0.7rem;
    }
  }





















  /* ============================================ */
/* FEATURED ARTICLE - fa prefix                 */
/* ============================================ */

.fa-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .fa-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .fa-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .fa-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .fa-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .fa-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Featured Article Card */
  .fa-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(230, 57, 70, 0.05);
    transition: all 0.3s;
    position: relative;
  }
  
  .fa-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
  }
  
  /* Article Badge */
  .fa-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .fa-badge-icon {
    font-size: 1rem;
    animation: faPulse 2s ease-in-out infinite;
  }
  
  @keyframes faPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
  }
  
  .fa-badge-dot {
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
  }
  
  .fa-badge-read {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
  }
  
  /* Grid Layout */
  .fa-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    min-height: 500px;
  }
  
  /* Image Column */
  .fa-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }
  
  .fa-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .fa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .fa-card:hover .fa-image img {
    transform: scale(1.03);
  }
  
  .fa-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  }
  
  .fa-image-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .fa-image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.05) 60%, transparent 80%);
    pointer-events: none;
  }
  
  /* Floating Badge on Image */
  .fa-float-badge {
    position: absolute;
    bottom: 5rem;
    right: -1rem;
    background: var(--red);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    animation: faFloatBadge 3s ease-in-out infinite;
    z-index: 3;
  }
  
  @keyframes faFloatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
  }
  
  .fa-float-icon {
    font-size: 1.4rem;
  }
  
  /* Content Column */
  .fa-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  /* Meta Info */
  .fa-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream);
  }
  
  .fa-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray);
  }
  
  .fa-meta-icon {
    font-size: 1rem;
  }
  
  .fa-meta-item strong {
    color: var(--dark);
  }
  
  .fa-meta-divider {
    width: 4px;
    height: 4px;
    background: var(--gray-light);
    border-radius: 50%;
  }
  
  /* Article Title */
  .fa-article-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.3;
    color: var(--dark);
    transition: color 0.3s;
  }
  
  .fa-article-title:hover {
    color: var(--red);
  }
  
  /* Excerpt */
  .fa-article-excerpt {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
  }
  
  /* Key Points */
  .fa-key-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
    background: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 12px;
  }
  
  .fa-key-point {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--dark);
  }
  
  .fa-key-icon {
    color: var(--red);
    font-weight: 700;
    font-size: 1rem;
  }
  
  /* Footer */
  .fa-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--cream);
  }
  
  .fa-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .fa-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--red);
  }
  
  .fa-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .fa-author-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.1rem;
  }
  
  .fa-author-info p {
    color: var(--gray);
    font-size: 0.8rem;
    margin: 0;
  }
  
  .fa-actions {
    display: flex;
    gap: 0.8rem;
  }
  
  .fa-btn-read {
    background: var(--red);
    border: none;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .fa-btn-read:hover {
    background: var(--red-dark);
    gap: 1rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.25);
  }
  
  .fa-btn-share {
    background: transparent;
    border: 2px solid var(--cream);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray);
  }
  
  .fa-btn-share:hover {
    border-color: var(--red);
    color: var(--red);
    transform: scale(1.1);
  }
  
  /* Stats Bar */
  .fa-stats-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2.5rem;
    background: var(--cream);
    border-top: 1px solid rgba(230, 57, 70, 0.03);
  }
  
  .fa-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
  }
  
  .fa-stat-icon {
    font-size: 1.1rem;
  }
  
  .fa-stat-number {
    font-weight: 700;
    color: var(--dark);
  }
  
  .fa-stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.06);
  }
  
  /* Related Articles */
  .fa-related {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(230, 57, 70, 0.05);
  }
  
  .fa-related-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }
  
  .fa-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .fa-related-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    transition: all 0.3s;
  }
  
  .fa-related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(230, 57, 70, 0.1);
  }
  
  .fa-related-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .fa-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .fa-related-item:hover .fa-related-image img {
    transform: scale(1.1);
  }
  
  .fa-related-content {
    flex: 1;
  }
  
  .fa-related-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .fa-related-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.3;
    margin: 0.3rem 0 0.5rem;
    color: var(--dark);
  }
  
  .fa-related-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
  }
  
  .fa-related-link:hover {
    gap: 0.5rem;
    color: var(--red-dark);
  }
  
  /* View All */
  .fa-view-all {
    text-align: center;
    margin-top: 3rem;
  }
  
  .fa-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 2px solid var(--cream);
    border-radius: 50px;
    transition: all 0.3s;
  }
  
  .fa-view-all-link:hover {
    border-color: var(--red);
    color: var(--red);
    gap: 1.2rem;
    transform: translateY(-2px);
  }
  
  /* ============================================ */
  /* RESPONSIVE - fa                             */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .fa-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .fa-related-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .fa-title {
      font-size: 2.5rem;
    }
    
    .fa-grid {
      grid-template-columns: 1fr;
    }
    
    .fa-image-wrapper {
      min-height: 300px;
    }
    
    .fa-content {
      padding: 2rem;
    }
    
    .fa-key-points {
      grid-template-columns: 1fr;
    }
    
    .fa-stats-bar {
      flex-wrap: wrap;
      gap: 0.8rem;
      padding: 0.8rem 1.5rem;
    }
    
    .fa-related-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .fa-section {
      padding: 4rem 1rem;
    }
    
    .fa-title {
      font-size: 2rem;
    }
    
    .fa-badge {
      top: 1rem;
      left: 1rem;
      padding: 0.3rem 1rem;
      font-size: 0.7rem;
    }
    
    .fa-article-title {
      font-size: 1.5rem;
    }
    
    .fa-footer {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }
    
    .fa-actions {
      justify-content: stretch;
    }
    
    .fa-btn-read {
      flex: 1;
      justify-content: center;
    }
    
    .fa-stats-bar {
      justify-content: center;
    }
    
    .fa-float-badge {
      display: none;
    }
    
    .fa-related-item {
      flex-direction: column;
      text-align: center;
    }
    
    .fa-related-image {
      width: 100%;
      height: 120px;
    }
  }
  
  @media (max-width: 480px) {
    .fa-title {
      font-size: 1.6rem;
    }
    
    .fa-meta {
      gap: 0.6rem;
      font-size: 0.7rem;
    }
    
    .fa-meta-divider {
      display: none;
    }
    
    .fa-article-title {
      font-size: 1.3rem;
    }
    
    .fa-stats-bar {
      gap: 0.5rem;
      padding: 0.6rem 1rem;
    }
    
    .fa-stat {
      font-size: 0.7rem;
    }
  }

















  /* ============================================ */
/* BLOG CATEGORIES - bc prefix                 */
/* ============================================ */

.bc-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .bc-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .bc-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  
  .bc-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .bc-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .bc-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Categories Grid */
  .bc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  /* Category Card */
  .bc-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(230, 57, 70, 0.03);
    overflow: hidden;
    cursor: pointer;
    min-height: 280px;
    display: flex;
    flex-direction: column;
  }
  
  .bc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 57, 70, 0.1);
  }
  
  .bc-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.02), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  
  .bc-card:hover .bc-card-bg {
    opacity: 1;
  }
  
  .bc-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  
  .bc-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .bc-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  .bc-card-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
  }
  
  .bc-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1rem;
  }
  
  .bc-card-count {
    font-weight: 600;
    color: var(--red);
  }
  
  .bc-card-updated {
    color: var(--gray-light);
  }
  
  .bc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .bc-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    background: var(--cream);
    color: var(--gray);
    border-radius: 50px;
    transition: all 0.3s;
  }
  
  .bc-card:hover .bc-tag {
    background: rgba(230, 57, 70, 0.05);
    color: var(--red);
  }
  
  .bc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: auto;
  }
  
  .bc-card-link:hover {
    gap: 0.8rem;
    color: var(--red-dark);
  }
  
  /* Card specific colors */
  .bc-card-1 .bc-card-icon { background: rgba(255, 107, 53, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-2 .bc-card-icon { background: rgba(52, 152, 219, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-3 .bc-card-icon { background: rgba(46, 204, 113, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-4 .bc-card-icon { background: rgba(241, 196, 15, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-5 .bc-card-icon { background: rgba(230, 126, 34, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-6 .bc-card-icon { background: rgba(155, 89, 182, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-7 .bc-card-icon { background: rgba(52, 73, 94, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-8 .bc-card-icon { background: rgba(39, 174, 96, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-9 .bc-card-icon { background: rgba(142, 68, 173, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  .bc-card-10 .bc-card-icon { background: rgba(211, 84, 0, 0.1); border-radius: 12px; padding: 0.5rem; display: inline-block; }
  
  /* Popular Categories */
  .bc-popular {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 3rem;
  }
  
  .bc-popular-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .bc-popular-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .bc-popular-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.5rem;
    background: var(--cream);
    border-radius: 50px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
  }
  
  .bc-popular-item:hover {
    background: var(--red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.2);
    border-color: var(--red);
  }
  
  .bc-popular-count {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 400;
  }
  
  .bc-popular-item:hover .bc-popular-count {
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Newsletter */
  .bc-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--dark);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    color: white;
  }
  
  .bc-newsletter-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .bc-newsletter-icon {
    font-size: 2.5rem;
  }
  
  .bc-newsletter-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .bc-newsletter-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
  }
  
  .bc-newsletter-form {
    display: flex;
    gap: 0.8rem;
    flex: 1;
    max-width: 450px;
  }
  
  .bc-newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
  }
  
  .bc-newsletter-form input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .bc-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .bc-newsletter-form button {
    background: var(--red);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .bc-newsletter-form button:hover {
    background: var(--red-dark);
    gap: 0.8rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.25);
  }
  
  /* ============================================ */
  /* RESPONSIVE - bc                             */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .bc-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .bc-title {
      font-size: 2.5rem;
    }
    
    .bc-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .bc-newsletter {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .bc-newsletter-content {
      flex-direction: column;
      text-align: center;
    }
    
    .bc-newsletter-form {
      max-width: 100%;
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .bc-section {
      padding: 4rem 1rem;
    }
    
    .bc-title {
      font-size: 2rem;
    }
    
    .bc-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .bc-card {
      padding: 1.5rem;
      min-height: auto;
    }
    
    .bc-popular-list {
      flex-direction: column;
    }
    
    .bc-popular-item {
      justify-content: space-between;
    }
    
    .bc-newsletter-form {
      flex-direction: column;
    }
    
    .bc-newsletter-form button {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .bc-title {
      font-size: 1.6rem;
    }
    
    .bc-subtitle {
      font-size: 0.95rem;
    }
    
    .bc-card-content h3 {
      font-size: 1.1rem;
    }
    
    .bc-card-desc {
      font-size: 0.85rem;
    }
    
    .bc-newsletter {
      padding: 1.5rem;
    }
  }















  /* ============================================ */
/* LATEST ARTICLES - la prefix                 */
/* ============================================ */

.la-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .la-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .la-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .la-header-left {
    flex: 1;
  }
  
  .la-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .la-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  .la-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
  }
  
  .la-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(230, 57, 70, 0.1);
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .la-view-all:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
    gap: 0.8rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
  }
  
  /* Articles Grid */
  .la-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  /* Article Card */
  .la-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(230, 57, 70, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }
  
  .la-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 57, 70, 0.08);
  }
  
  /* Featured Card */
  .la-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  
  .la-card-featured .la-card-image {
    height: 100%;
    min-height: 350px;
  }
  
  .la-card-featured .la-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Card Image */
  .la-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .la-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .la-card:hover .la-card-image img {
    transform: scale(1.05);
  }
  
  .la-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--red);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
  }
  
  .la-card-badge-popular {
    background: #F39C12;
  }
  
  .la-card-badge-new {
    background: #2E7D32;
  }
  
  .la-card-badge-guide {
    background: #2980B9;
  }
  
  /* Card Content */
  .la-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .la-card-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
  }
  
  .la-card-category {
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .la-card-date {
    color: var(--gray);
  }
  
  .la-card-read-time {
    color: var(--gray);
  }
  
  .la-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--dark);
    transition: color 0.3s;
  }
  
  .la-card:hover .la-card-title {
    color: var(--red);
  }
  
  .la-card-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .la-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--cream);
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .la-card-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  
  .la-card-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cream);
  }
  
  .la-card-author span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
  }
  
  .la-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .la-card-share {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .la-card-share:hover {
    background: var(--cream);
    color: var(--red);
  }
  
  .la-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: none;
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.3rem 0;
    transition: all 0.3s;
  }
  
  .la-card-read-more:hover {
    gap: 0.6rem;
    color: var(--red-dark);
  }
  
  /* Load More */
  .la-load-more {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .la-load-more-btn {
    background: transparent;
    border: 2px solid rgba(230, 57, 70, 0.1);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .la-load-more-btn:hover {
    border-color: var(--red);
    color: var(--red);
    gap: 1.2rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.05);
  }
  
  .la-load-more-info {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.8rem;
  }
  
  /* Newsletter */
  .la-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--dark);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    color: white;
  }
  
  .la-newsletter-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .la-newsletter-icon {
    font-size: 2.5rem;
  }
  
  .la-newsletter-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .la-newsletter-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
  }
  
  .la-newsletter-form {
    display: flex;
    gap: 0.8rem;
    flex: 1;
    max-width: 420px;
  }
  
  .la-newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
  }
  
  .la-newsletter-form input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .la-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .la-newsletter-form button {
    background: var(--red);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .la-newsletter-form button:hover {
    background: var(--red-dark);
    gap: 0.8rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.25);
  }
  
  /* ============================================ */
  /* RESPONSIVE - la                             */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .la-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .la-card-featured {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 992px) {
    .la-title {
      font-size: 2.2rem;
    }
    
    .la-card-featured {
      grid-template-columns: 1fr;
    }
    
    .la-card-featured .la-card-image {
      min-height: 250px;
    }
  }
  
  @media (max-width: 768px) {
    .la-section {
      padding: 4rem 1rem;
    }
    
    .la-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .la-title {
      font-size: 1.8rem;
    }
    
    .la-grid {
      grid-template-columns: 1fr;
    }
    
    .la-card-featured {
      grid-column: span 1;
    }
    
    .la-newsletter {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .la-newsletter-content {
      flex-direction: column;
      text-align: center;
    }
    
    .la-newsletter-form {
      max-width: 100%;
      width: 100%;
      flex-direction: column;
    }
    
    .la-newsletter-form button {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .la-title {
      font-size: 1.5rem;
    }
    
    .la-subtitle {
      font-size: 0.95rem;
    }
    
    .la-card-title {
      font-size: 1.1rem;
    }
    
    .la-card-excerpt {
      font-size: 0.85rem;
    }
    
    .la-card-footer {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .la-card-actions {
      width: 100%;
      justify-content: space-between;
    }
    
    .la-load-more-btn {
      width: 100%;
      justify-content: center;
    }
  }







  /* ============================================ */
/* FAQ SECTION - faq prefix                    */
/* ============================================ */

.faq-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .faq-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .faq-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .faq-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .faq-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* FAQ Categories */
  .faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  
  .faq-category-btn {
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    border: 2px solid rgba(230, 57, 70, 0.1);
    background: transparent;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .faq-category-btn:hover {
    border-color: var(--red);
    color: var(--red);
  }
  
  .faq-category-btn.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.2);
  }
  
  /* FAQ Grid */
  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  /* FAQ Item */
  .faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.03);
    transition: all 0.3s;
  }
  
  .faq-item:hover {
    border-color: rgba(230, 57, 70, 0.08);
  }
  
  .faq-item.hidden {
    display: none;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .faq-question:hover {
    background: rgba(230, 57, 70, 0.02);
  }
  
  .faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .faq-question h3 {
    flex: 1;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
  }
  
  .faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--cream);
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
  }
  
  .faq-toggle:hover {
    background: rgba(230, 57, 70, 0.05);
    color: var(--red);
  }
  
  .faq-item.active .faq-toggle {
    background: var(--red);
    color: white;
    transform: rotate(180deg);
  }
  
  .faq-item.active .faq-toggle:hover {
    background: var(--red-dark);
  }
  
  /* FAQ Answer */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                padding 0.3s ease,
                opacity 0.3s ease;
    opacity: 0;
  }
  
  .faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
    padding: 0 2rem 2rem 2rem;
  }
  
  .faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  
  .faq-answer ul,
  .faq-answer ol {
    color: var(--gray);
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .faq-answer ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .faq-answer strong {
    color: var(--dark);
  }
  
  /* FAQ CTA */
  .faq-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--dark);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    color: white;
  }
  
  .faq-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .faq-cta-icon {
    font-size: 2.5rem;
  }
  
  .faq-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .faq-cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
  }
  
  .faq-cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .faq-cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .faq-cta-phone:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .faq-cta-phone-icon {
    font-size: 1.2rem;
  }
  
  .faq-cta-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .faq-cta-btn:hover {
    background: var(--red-dark);
    gap: 1.2rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.25);
  }
  
  /* ============================================ */
  /* RESPONSIVE - faq                            */
  /* ============================================ */
  
  @media (max-width: 992px) {
    .faq-title {
      font-size: 2.5rem;
    }
    
    .faq-cta {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .faq-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .faq-cta-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .faq-section {
      padding: 4rem 1rem;
    }
    
    .faq-title {
      font-size: 2rem;
    }
    
    .faq-subtitle {
      font-size: 0.95rem;
    }
    
    .faq-categories {
      gap: 0.5rem;
    }
    
    .faq-category-btn {
      font-size: 0.8rem;
      padding: 0.4rem 1.2rem;
    }
    
    .faq-question {
      padding: 1.2rem;
      gap: 0.8rem;
    }
    
    .faq-question h3 {
      font-size: 0.95rem;
    }
    
    .faq-icon {
      font-size: 1.2rem;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 1.2rem 1.2rem 1.2rem;
    }
    
    .faq-cta {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
    }
    
    .faq-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .faq-cta-buttons {
      width: 100%;
      flex-direction: column;
    }
    
    .faq-cta-phone,
    .faq-cta-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .faq-title {
      font-size: 1.6rem;
    }
    
    .faq-categories {
      gap: 0.3rem;
    }
    
    .faq-category-btn {
      font-size: 0.7rem;
      padding: 0.3rem 1rem;
    }
    
    .faq-question h3 {
      font-size: 0.9rem;
    }
  }