/* 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);
  }





/* ============================================ */
/* PORTFOLIO HERO - pfh prefix                 */
/* ============================================ */

.pfh-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding: 8rem 2rem 4rem;
  }
  
  /* Background */
  .pfh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .pfh-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(230, 57, 70, 0.08), transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(230, 57, 70, 0.04), transparent 50%);
  }
  
  .pfh-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
  }
  
  /* Particles */
  .pfh-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }
  
  .pfh-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pfhParticleFloat 20s linear infinite;
  }
  
  .pfh-particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 22s; }
  .pfh-particle:nth-child(2) { left: 12%; animation-delay: 2s; animation-duration: 18s; }
  .pfh-particle:nth-child(3) { left: 20%; animation-delay: 4s; animation-duration: 25s; }
  .pfh-particle:nth-child(4) { left: 28%; animation-delay: 1s; animation-duration: 20s; }
  .pfh-particle:nth-child(5) { left: 35%; animation-delay: 3s; animation-duration: 23s; }
  .pfh-particle:nth-child(6) { left: 42%; animation-delay: 5s; animation-duration: 19s; }
  .pfh-particle:nth-child(7) { left: 50%; animation-delay: 2.5s; animation-duration: 21s; }
  .pfh-particle:nth-child(8) { left: 58%; animation-delay: 4.5s; animation-duration: 24s; }
  .pfh-particle:nth-child(9) { left: 65%; animation-delay: 1.5s; animation-duration: 17s; }
  .pfh-particle:nth-child(10) { left: 72%; animation-delay: 3.5s; animation-duration: 26s; }
  .pfh-particle:nth-child(11) { left: 80%; animation-delay: 0.5s; animation-duration: 22s; }
  .pfh-particle:nth-child(12) { left: 90%; animation-delay: 2.5s; animation-duration: 20s; }
  
  @keyframes pfhParticleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
  }
  
  /* Container */
  .pfh-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
  }
  
  /* Content */
  .pfh-content {
    max-width: 780px;
    color: white;
  }
  
  /* Breadcrumb */
  .pfh-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    opacity: 0;
    animation: pfhFadeInUp 0.8s ease 0.1s forwards;
  }
  
  .pfh-breadcrumb-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .pfh-breadcrumb-link:hover {
    color: var(--red);
  }
  
  .pfh-breadcrumb-current {
    color: var(--red);
    font-weight: 500;
  }
  
  .pfh-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
  }
  
  /* Badge */
  .pfh-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: pfhFadeInUp 0.8s ease 0.2s forwards;
  }
  
  .pfh-badge-line {
    width: 40px;
    height: 2px;
    background: var(--red);
  }
  
  .pfh-badge-text {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  /* Title */
  .pfh-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
  }
  
  .pfh-title-line {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: pfhRevealUp 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  }
  
  .pfh-title-line:nth-child(1) { animation-delay: 0.3s; }
  .pfh-title-line:nth-child(2) { animation-delay: 0.5s; }
  .pfh-title-line:nth-child(3) { animation-delay: 0.7s; }
  
  .pfh-title-line.accent {
    color: var(--red);
  }
  
  @keyframes pfhRevealUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pfhFadeInUp {
    to {
      opacity: 1;
    }
  }
  
  /* Description */
  .pfh-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: pfhFadeInUp 0.8s ease 0.9s forwards;
  }
  
  /* Stats */
  .pfh-stats {
    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: pfhFadeInUp 0.8s ease 1.1s forwards;
  }
  
  .pfh-stat {
    text-align: center;
  }
  
  .pfh-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
  }
  
  .pfh-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .pfh-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
  }
  
  /* CTA */
  .pfh-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: pfhFadeInUp 0.8s ease 1.3s forwards;
  }
  
  .pfh-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;
    position: relative;
    overflow: hidden;
  }
  
  .pfh-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;
  }
  
  .pfh-btn-primary:hover::before {
    transform: translateX(100%) skewX(-15deg);
  }
  
  .pfh-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.35);
    gap: 1.5rem;
  }
  
  .pfh-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;
  }
  
  .pfh-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 */
  .pfh-trust {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: pfhFadeInUp 0.8s ease 1.5s forwards;
  }
  
  .pfh-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
  }
  
  .pfh-trust-icon {
    font-size: 1.2rem;
  }
  
  .pfh-trust-text {
    font-weight: 500;
  }
  
  /* Floating Cards */
  .pfh-floating {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 3;
    pointer-events: none;
    width: 320px;
  }
  
  .pfh-float-card {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: pfhFloatCard 5s ease-in-out infinite;
    position: relative;
    cursor: pointer;
  }
  
  .pfh-float-card:hover {
    transform: translateX(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(230, 57, 70, 0.3);
  }
  
  .pfh-float-card .pfh-float-glow {
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
  }
  
  .pfh-float-card:hover .pfh-float-glow {
    opacity: 0.15;
  }
  
  .pfh-float-1 { animation-delay: 0s; }
  .pfh-float-2 { animation-delay: 1.2s; }
  .pfh-float-3 { animation-delay: 2.4s; }
  .pfh-float-4 { animation-delay: 3.6s; }
  
  @keyframes pfhFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .pfh-float-image {
    position: relative;
    height: 120px;
    overflow: hidden;
  }
  
  .pfh-float-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .pfh-float-card:hover .pfh-float-image img {
    transform: scale(1.05);
  }
  
  .pfh-float-overlay {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
  }
  
  .pfh-float-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
  }
  
  .pfh-float-info {
    padding: 0.8rem 1.2rem;
  }
  
  .pfh-float-info h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: white;
    margin-bottom: 0.1rem;
  }
  
  .pfh-float-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0;
  }
  
  /* Count Badge */
  .pfh-count-badge {
    position: absolute;
    bottom: 8rem;
    right: 2rem;
    background: var(--red);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
    animation: pfhPulseBadge 2s ease-in-out infinite;
    text-align: center;
  }
  
  @keyframes pfhPulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .pfh-count-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
  }
  
  .pfh-count-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-top: 0.2rem;
  }
  
  /* Scroll Indicator */
  .pfh-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    opacity: 0.6;
  }
  
  .pfh-scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .pfh-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: pfhScrollPulse 2s ease-in-out infinite;
  }
  
  @keyframes pfhScrollPulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
  }
  
  /* ============================================ */
  /* RESPONSIVE - pfh                             */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .pfh-title {
      font-size: 3.8rem;
    }
    
    .pfh-floating {
      display: none;
    }
    
    .pfh-count-badge {
      display: none;
    }
  }
  
  @media (max-width: 992px) {
    .pfh-title {
      font-size: 3.2rem;
    }
    
    .pfh-stats {
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    
    .pfh-stat-divider {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .pfh-section {
      padding: 6rem 1.5rem 3rem;
    }
    
    .pfh-title {
      font-size: 2.5rem;
    }
    
    .pfh-description {
      font-size: 1rem;
    }
    
    .pfh-cta {
      flex-direction: column;
    }
    
    .pfh-btn-primary,
    .pfh-btn-secondary {
      width: 100%;
      justify-content: center;
    }
    
    .pfh-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .pfh-stat-number {
      font-size: 2rem;
    }
    
    .pfh-trust {
      gap: 1.5rem;
    }
    
    .pfh-scroll {
      display: none;
    }
    
    .pfh-badge-line {
      width: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .pfh-title {
      font-size: 2rem;
    }
    
    .pfh-title-line {
      font-size: 2rem;
    }
    
    .pfh-stat-number {
      font-size: 1.6rem;
    }
    
    .pfh-stat-label {
      font-size: 0.7rem;
    }
    
    .pfh-trust-item {
      font-size: 0.75rem;
    }
  }











  /* ============================================ */
/* PORTFOLIO OVERVIEW - pov prefix             */
/* ============================================ */

.pov-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .pov-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .pov-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .pov-header-left {
    flex: 1;
  }
  
  .pov-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .pov-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  .pov-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
  }
  
  /* Search */
  .pov-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
    border-radius: 50px;
    border: 2px solid rgba(230, 57, 70, 0.05);
    transition: all 0.3s;
  }
  
  .pov-search:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.05);
  }
  
  .pov-search-input {
    border: none;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--dark);
    background: transparent;
    width: 200px;
  }
  
  .pov-search-input:focus {
    outline: none;
  }
  
  .pov-search-input::placeholder {
    color: var(--gray-light);
  }
  
  .pov-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--red);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .pov-search-btn:hover {
    background: var(--red-dark);
    transform: scale(1.05);
  }
  
  /* Filters */
  .pov-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  
  .pov-filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(230, 57, 70, 0.1);
    background: transparent;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .pov-filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
  }
  
  .pov-filter-btn.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
  }
  
  /* Quick Stats */
  .pov-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }
  
  .pov-quick-stat {
    text-align: center;
  }
  
  .pov-quick-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  
  .pov-quick-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
    display: block;
  }
  
  /* Projects Grid */
  .pov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .pov-project {
    background: white;
    border-radius: 16px;
    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);
  }
  
  .pov-project:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 57, 70, 0.08);
  }
  
  .pov-project.hidden {
    display: none;
  }
  
  .pov-project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .pov-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .pov-project:hover .pov-project-image img {
    transform: scale(1.05);
  }
  
  .pov-project-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;
  }
  
  .pov-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
  }
  
  .pov-project:hover .pov-project-overlay {
    opacity: 1;
  }
  
  .pov-project-view {
    padding: 0.8rem 2rem;
    background: var(--red);
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  
  .pov-project:hover .pov-project-view {
    transform: translateY(0);
  }
  
  .pov-project-view:hover {
    background: var(--red-dark);
    transform: scale(1.05);
  }
  
  .pov-project-info {
    padding: 1.5rem;
  }
  
  .pov-project-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
  }
  
  .pov-project-location {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }
  
  .pov-project-desc {
    color: var(--charcoal-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .pov-project-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
  }
  
  .pov-project-meta span {
    background: var(--cream);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
  }
  
  /* Load More */
  .pov-load-more {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .pov-load-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;
  }
  
  .pov-load-btn:hover {
    border-color: var(--red);
    color: var(--red);
    gap: 1.2rem;
    transform: translateY(-2px);
  }
  
  .pov-load-info {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.8rem;
  }
  
  /* Industries */
  .pov-industries {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 3rem;
  }
  
  .pov-industries-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }
  
  .pov-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .pov-industry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s;
  }
  
  .pov-industry:hover {
    background: rgba(230, 57, 70, 0.05);
    transform: translateX(5px);
  }
  
  .pov-industry-count {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 600;
  }
  
  /* CTA */
  .pov-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;
  }
  
  .pov-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .pov-cta-icon {
    font-size: 2.5rem;
  }
  
  .pov-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .pov-cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
  }
  
  .pov-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;
  }
  
  .pov-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 - pov                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .pov-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .pov-industries-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .pov-title {
      font-size: 2.2rem;
    }
    
    .pov-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .pov-search {
      width: 100%;
    }
    
    .pov-search-input {
      width: 100%;
    }
    
    .pov-quick-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .pov-section {
      padding: 4rem 1rem;
    }
    
    .pov-title {
      font-size: 1.8rem;
    }
    
    .pov-grid {
      grid-template-columns: 1fr;
    }
    
    .pov-filters {
      flex-wrap: wrap;
    }
    
    .pov-filter-btn {
      font-size: 0.8rem;
      padding: 0.4rem 1rem;
    }
    
    .pov-quick-stats {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.5rem;
    }
    
    .pov-industries-grid {
      grid-template-columns: 1fr;
    }
    
    .pov-cta {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .pov-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .pov-cta-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .pov-title {
      font-size: 1.5rem;
    }
    
    .pov-quick-stats {
      grid-template-columns: 1fr 1fr;
    }
    
    .pov-quick-number {
      font-size: 1.8rem;
    }
  }


































  /* ============================================ */
/* FILTERABLE PROJECT PORTFOLIO - fpp prefix   */
/* ============================================ */

.fpp-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .fpp-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .fpp-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .fpp-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .fpp-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .fpp-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Stats Bar */
  .fpp-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }
  
  .fpp-stats-item {
    text-align: center;
  }
  
  .fpp-stats-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  
  .fpp-stats-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
    display: block;
  }
  
  /* Filter Tabs */
  .fpp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
  }
  
  .fpp-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: 2px solid transparent;
    background: var(--cream);
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .fpp-tab:hover {
    background: rgba(230, 57, 70, 0.05);
    color: var(--red);
  }
  
  .fpp-tab.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
  }
  
  .fpp-tab-icon {
    font-size: 1.1rem;
  }
  
  .fpp-tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
  }
  
  .fpp-tab.active .fpp-tab-count {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* Filter Info */
  .fpp-filter-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(230, 57, 70, 0.03);
  }
  
  .fpp-filter-label {
    color: var(--gray);
    font-size: 0.85rem;
  }
  
  .fpp-filter-active {
    font-weight: 700;
    color: var(--red);
    font-size: 0.95rem;
  }
  
  .fpp-filter-count {
    color: var(--gray);
    font-size: 0.85rem;
  }
  
  .fpp-filter-clear {
    background: transparent;
    border: none;
    color: var(--red);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    transition: all 0.3s;
  }
  
  .fpp-filter-clear:hover {
    background: rgba(230, 57, 70, 0.05);
  }
  
  /* Projects Grid */
  .fpp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .fpp-project {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .fpp-project.hidden {
    display: none;
  }
  
  .fpp-project-inner {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s;
    height: 100%;
  }
  
  .fpp-project-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 57, 70, 0.08);
  }
  
  .fpp-project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .fpp-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .fpp-project-inner:hover .fpp-project-image img {
    transform: scale(1.05);
  }
  
  .fpp-project-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;
  }
  
  .fpp-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
  }
  
  .fpp-project-inner:hover .fpp-project-overlay {
    opacity: 1;
  }
  
  .fpp-project-btn {
    padding: 0.8rem 2rem;
    background: var(--red);
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  
  .fpp-project-inner:hover .fpp-project-btn {
    transform: translateY(0);
  }
  
  .fpp-project-btn:hover {
    background: var(--red-dark);
    transform: scale(1.05);
  }
  
  .fpp-project-content {
    padding: 1.5rem;
  }
  
  .fpp-project-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  .fpp-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
  }
  
  .fpp-project-desc {
    color: var(--charcoal-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .fpp-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .fpp-project-tags span {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    background: var(--cream);
    color: var(--gray);
    border-radius: 50px;
    transition: all 0.3s;
  }
  
  .fpp-project-tags span:hover {
    background: var(--red);
    color: white;
  }
  
  /* No Results */
  .fpp-no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
  }
  
  .fpp-no-results-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
  }
  
  .fpp-no-results h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .fpp-no-results p {
    color: var(--gray);
    margin-bottom: 1.5rem;
  }
  
  .fpp-no-results-btn {
    padding: 0.8rem 2rem;
    background: var(--red);
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .fpp-no-results-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
  }
  
  /* Load More */
  .fpp-load-more {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .fpp-load-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;
  }
  
  .fpp-load-btn:hover {
    border-color: var(--red);
    color: var(--red);
    gap: 1.2rem;
    transform: translateY(-2px);
  }
  
  .fpp-load-info {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.8rem;
  }
  
  /* Category Quick Links */
  .fpp-category-links {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 3rem;
  }
  
  .fpp-category-links-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .fpp-category-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .fpp-category-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: var(--cream);
    border-radius: 12px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
  }
  
  .fpp-category-link:hover {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.05);
    transform: translateX(5px);
  }
  
  .fpp-category-link-count {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 600;
    background: rgba(230, 57, 70, 0.05);
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
  }
  
  /* CTA */
  .fpp-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;
  }
  
  .fpp-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .fpp-cta-icon {
    font-size: 2.5rem;
  }
  
  .fpp-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .fpp-cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
  }
  
  .fpp-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;
  }
  
  .fpp-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 - fpp                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .fpp-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .fpp-category-links-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .fpp-title {
      font-size: 2.5rem;
    }
    
    .fpp-stats-bar {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .fpp-tabs {
      padding: 0.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .fpp-section {
      padding: 4rem 1rem;
    }
    
    .fpp-title {
      font-size: 2rem;
    }
    
    .fpp-grid {
      grid-template-columns: 1fr;
    }
    
    .fpp-tabs {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 0.8rem;
      gap: 0.5rem;
      -webkit-overflow-scrolling: touch;
    }
    
    .fpp-tab {
      flex-shrink: 0;
      padding: 0.5rem 1.2rem;
      font-size: 0.8rem;
    }
    
    .fpp-stats-bar {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.5rem;
    }
    
    .fpp-stats-number {
      font-size: 2rem;
    }
    
    .fpp-category-links-grid {
      grid-template-columns: 1fr;
    }
    
    .fpp-cta {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .fpp-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .fpp-cta-btn {
      width: 100%;
      justify-content: center;
    }
    
    .fpp-filter-info {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .fpp-title {
      font-size: 1.6rem;
    }
    
    .fpp-stats-bar {
      grid-template-columns: 1fr 1fr;
    }
    
    .fpp-stats-number {
      font-size: 1.6rem;
    }
  }













  /* ============================================ */
/* PROJECT GALLERY PORTFOLIO - pgp prefix      */
/* ============================================ */

.pgp-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .pgp-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .pgp-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .pgp-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .pgp-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .pgp-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Gallery Filter */
  .pgp-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  
  .pgp-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(230, 57, 70, 0.1);
    background: transparent;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .pgp-filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
  }
  
  .pgp-filter-btn.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
  }
  
  .pgp-filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
  }
  
  .pgp-filter-btn.active .pgp-filter-count {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* Gallery Grid */
  .pgp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .pgp-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all 0.4s;
    cursor: pointer;
  }
  
  .pgp-item.hidden {
    display: none;
  }
  
  .pgp-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .pgp-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .pgp-item:hover .pgp-item-inner img {
    transform: scale(1.08);
  }
  
  /* Item Overlay */
  .pgp-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
  }
  
  .pgp-item:hover .pgp-item-overlay {
    opacity: 1;
  }
  
  .pgp-item-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;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }
  
  .pgp-item:hover .pgp-item-badge {
    opacity: 1;
    transform: translateY(0);
  }
  
  .pgp-item-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }
  
  .pgp-item:hover .pgp-item-info {
    transform: translateY(0);
  }
  
  .pgp-item-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  
  .pgp-item-info p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.3rem;
  }
  
  .pgp-item-location {
    font-size: 0.75rem;
    opacity: 0.6;
  }
  
  .pgp-item-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
  }
  
  .pgp-item:hover .pgp-item-expand {
    opacity: 1;
    transform: scale(1);
  }
  
  .pgp-item-expand:hover {
    background: var(--red);
    border-color: var(--red);
  }
  
  /* Load More */
  .pgp-load-more {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .pgp-load-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;
  }
  
  .pgp-load-btn:hover {
    border-color: var(--red);
    color: var(--red);
    gap: 1.2rem;
    transform: translateY(-2px);
  }
  
  .pgp-load-info {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.8rem;
  }
  
  /* Gallery Stats */
  .pgp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }
  
  .pgp-stat {
    text-align: center;
  }
  
  .pgp-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  
  .pgp-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
    display: block;
  }
  
  /* ============================================ */
  /* LIGHTBOX - pgp-lightbox                     */
  /* ============================================ */
  
  .pgp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  
  .pgp-lightbox.active {
    display: flex;
  }
  
  .pgp-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
  }
  
  .pgp-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pgp-lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
  }
  
  .pgp-lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--red);
  }
  
  .pgp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .pgp-lightbox-nav:hover {
    background: var(--red);
    border-color: var(--red);
  }
  
  .pgp-lightbox-prev {
    left: -3rem;
  }
  
  .pgp-lightbox-next {
    right: -3rem;
  }
  
  .pgp-lightbox-image-wrapper {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  }
  
  .pgp-lightbox-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 70vh;
  }
  
  .pgp-lightbox-info {
    margin-top: 1.5rem;
    color: white;
    text-align: center;
    max-width: 600px;
  }
  
  .pgp-lightbox-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .pgp-lightbox-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
  }
  
  .pgp-lightbox-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }
  
  .pgp-lightbox-tag {
    padding: 0.3rem 1.2rem;
    background: var(--red);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  /* ============================================ */
  /* RESPONSIVE - pgp                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .pgp-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .pgp-title {
      font-size: 2.5rem;
    }
    
    .pgp-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .pgp-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .pgp-lightbox-nav {
      width: 40px;
      height: 40px;
      font-size: 1.4rem;
    }
    
    .pgp-lightbox-prev {
      left: -1.5rem;
    }
    
    .pgp-lightbox-next {
      right: -1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .pgp-section {
      padding: 4rem 1rem;
    }
    
    .pgp-title {
      font-size: 2rem;
    }
    
    .pgp-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .pgp-filter {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 0.5rem 0;
      gap: 0.5rem;
      -webkit-overflow-scrolling: touch;
    }
    
    .pgp-filter-btn {
      flex-shrink: 0;
      padding: 0.4rem 1.2rem;
      font-size: 0.8rem;
    }
    
    .pgp-stats {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.5rem;
    }
    
    .pgp-stat-number {
      font-size: 2rem;
    }
    
    .pgp-lightbox-content {
      max-width: 95vw;
    }
    
    .pgp-lightbox-nav {
      width: 35px;
      height: 35px;
      font-size: 1.2rem;
    }
    
    .pgp-lightbox-prev {
      left: -0.5rem;
    }
    
    .pgp-lightbox-next {
      right: -0.5rem;
    }
    
    .pgp-lightbox-close {
      top: -2.5rem;
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .pgp-title {
      font-size: 1.6rem;
    }
    
    .pgp-stats {
      grid-template-columns: 1fr 1fr;
    }
    
    .pgp-stat-number {
      font-size: 1.6rem;
    }
    
    .pgp-item-info h3 {
      font-size: 0.95rem;
    }
    
    .pgp-lightbox-info h3 {
      font-size: 1.2rem;
    }
  }






















  /* ============================================ */
/* INDUSTRIES SERVED - ind prefix               */
/* ============================================ */

.ind-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .ind-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .ind-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .ind-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .ind-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .ind-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Industry Stats */
  .ind-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }
  
  .ind-stat {
    text-align: center;
  }
  
  .ind-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  
  .ind-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.3rem;
    display: block;
  }
  
  /* Industries Grid */
  .ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .ind-card {
    position: relative;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    overflow: hidden;
  }
  
  .ind-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 57, 70, 0.08);
  }
  
  .ind-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.02), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  
  .ind-card:hover .ind-card-bg {
    opacity: 1;
  }
  
  .ind-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  
  .ind-card-content {
    position: relative;
    z-index: 1;
  }
  
  .ind-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  .ind-card-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .ind-card-meta {
    margin-bottom: 1rem;
  }
  
  .ind-card-projects {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    background: rgba(230, 57, 70, 0.05);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
  }
  
  .ind-card-testimonial {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal-light);
    font-style: italic;
    padding: 0.5rem 0;
    border-top: 1px solid var(--cream);
    margin-top: 0.5rem;
  }
  
  .ind-card-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .ind-card-services span {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    background: var(--cream);
    color: var(--gray);
    border-radius: 50px;
    transition: all 0.3s;
  }
  
  .ind-card:hover .ind-card-services span {
    background: rgba(230, 57, 70, 0.05);
    color: var(--red);
  }
  
  .ind-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;
  }
  
  .ind-card-link:hover {
    gap: 0.8rem;
    color: var(--red-dark);
  }
  
  /* Testimonials */
  .ind-testimonials {
    margin-bottom: 3rem;
  }
  
  .ind-testimonials-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
  }
  
  .ind-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .ind-testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    position: relative;
    transition: all 0.3s;
  }
  
  .ind-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  }
  
  .ind-testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--red);
    opacity: 0.1;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
  }
  
  .ind-testimonial p {
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 0.95rem;
  }
  
  .ind-testimonial-author {
    border-top: 1px solid var(--cream);
    padding-top: 1rem;
  }
  
  .ind-testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
  }
  
  .ind-testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray);
  }
  
  /* Coverage */
  .ind-coverage {
    background: var(--dark);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    margin-bottom: 3rem;
  }
  
  .ind-coverage-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .ind-coverage-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .ind-coverage-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.3rem;
  }
  
  .ind-coverage-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
  }
  
  .ind-coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .ind-coverage-region {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
  }
  
  .ind-coverage-region:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(230, 57, 70, 0.3);
  }
  
  .ind-coverage-region h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--red);
    margin-bottom: 0.5rem;
  }
  
  .ind-coverage-region span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
  }
  
  /* CTA */
  .ind-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 2.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.1);
  }
  
  .ind-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
  }
  
  .ind-cta-icon {
    font-size: 2.5rem;
  }
  
  .ind-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .ind-cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
  }
  
  .ind-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;
  }
  
  .ind-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 - ind                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .ind-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .ind-coverage-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .ind-title {
      font-size: 2.5rem;
    }
    
    .ind-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .ind-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .ind-testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .ind-section {
      padding: 4rem 1rem;
    }
    
    .ind-title {
      font-size: 2rem;
    }
    
    .ind-grid {
      grid-template-columns: 1fr;
    }
    
    .ind-stats {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.5rem;
    }
    
    .ind-stat-number {
      font-size: 2.2rem;
    }
    
    .ind-testimonials-grid {
      grid-template-columns: 1fr;
    }
    
    .ind-coverage-grid {
      grid-template-columns: 1fr;
    }
    
    .ind-coverage {
      padding: 2rem;
    }
    
    .ind-cta {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .ind-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .ind-cta-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .ind-title {
      font-size: 1.6rem;
    }
    
    .ind-stats {
      grid-template-columns: 1fr 1fr;
    }
    
    .ind-stat-number {
      font-size: 1.8rem;
    }
    
    .ind-stat-label {
      font-size: 0.75rem;
    }
    
    .ind-card {
      padding: 1.5rem;
    }
  }























  /* ============================================ */
/* SAFETY & QUALITY COMMITMENT - sqc prefix    */
/* ============================================ */

.sqc-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .sqc-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .sqc-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .sqc-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .sqc-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .sqc-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Quality Stats */
  .sqc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }
  
  .sqc-stat {
    text-align: center;
  }
  
  .sqc-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  
  .sqc-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.3rem;
    display: block;
  }
  
  /* Quality Pillars */
  .sqc-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .sqc-pillar {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .sqc-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 57, 70, 0.08);
  }
  
  .sqc-pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .sqc-pillar-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  .sqc-pillar-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .sqc-pillar-list {
    list-style: none;
    padding: 0;
  }
  
  .sqc-pillar-list li {
    padding: 0.3rem 0;
    color: var(--charcoal-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .sqc-pillar-list li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
  }
  
  /* Certifications */
  .sqc-certifications {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 3rem;
  }
  
  .sqc-cert-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .sqc-cert-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .sqc-cert-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
  }
  
  .sqc-cert-header p {
    color: var(--gray);
    font-size: 1rem;
  }
  
  .sqc-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .sqc-cert-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
  }
  
  .sqc-cert-item:hover {
    border-color: rgba(230, 57, 70, 0.1);
    transform: translateY(-4px);
  }
  
  .sqc-cert-item .sqc-cert-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin: 0;
  }
  
  .sqc-cert-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--dark);
  }
  
  .sqc-cert-info p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
  }
  
  .sqc-cert-status {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .sqc-cert-status.certified {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
  }
  
  .sqc-cert-status.compliant {
    background: rgba(25, 118, 210, 0.1);
    color: #1976D2;
  }
  
  .sqc-cert-status.listed {
    background: rgba(237, 108, 2, 0.1);
    color: #ED6C02;
  }
  
  .sqc-cert-status.verified {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
  }
  
  /* Quality Process */
  .sqc-process {
    background: var(--dark);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    margin-bottom: 3rem;
  }
  
  .sqc-process-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .sqc-process-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .sqc-process-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 0.3rem;
  }
  
  .sqc-process-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
  }
  
  .sqc-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .sqc-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
  }
  
  .sqc-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(230, 57, 70, 0.2);
  }
  
  .sqc-step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
    line-height: 1;
  }
  
  .sqc-step-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .sqc-step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Badges */
  .sqc-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .sqc-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    transition: all 0.3s;
  }
  
  .sqc-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  }
  
  .sqc-badge-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
  }
  
  .sqc-badge h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
  }
  
  .sqc-badge p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
  }
  
  /* CTA */
  .sqc-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 2.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.1);
  }
  
  .sqc-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
  }
  
  .sqc-cta-icon {
    font-size: 2.5rem;
  }
  
  .sqc-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .sqc-cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
  }
  
  .sqc-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;
  }
  
  .sqc-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 - sqc                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .sqc-pillars {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .sqc-cert-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .sqc-title {
      font-size: 2.5rem;
    }
    
    .sqc-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .sqc-process-steps {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .sqc-badges {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .sqc-section {
      padding: 4rem 1rem;
    }
    
    .sqc-title {
      font-size: 2rem;
    }
    
    .sqc-pillars {
      grid-template-columns: 1fr;
    }
    
    .sqc-stats {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.5rem;
    }
    
    .sqc-stat-number {
      font-size: 2.2rem;
    }
    
    .sqc-cert-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .sqc-certifications {
      padding: 2rem;
    }
    
    .sqc-process {
      padding: 2rem;
    }
    
    .sqc-process-steps {
      grid-template-columns: 1fr;
    }
    
    .sqc-badges {
      grid-template-columns: 1fr;
    }
    
    .sqc-cta {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .sqc-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .sqc-cta-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .sqc-title {
      font-size: 1.6rem;
    }
    
    .sqc-stats {
      grid-template-columns: 1fr 1fr;
    }
    
    .sqc-stat-number {
      font-size: 1.8rem;
    }
    
    .sqc-stat-label {
      font-size: 0.75rem;
    }
    
    .sqc-cert-grid {
      grid-template-columns: 1fr;
    }
    
    .sqc-step {
      flex-direction: column;
      gap: 0.5rem;
    }
  }




















  /* ============================================ */
/* AWARDS & CERTIFICATIONS - awc prefix         */
/* ============================================ */

.awc-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .awc-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .awc-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .awc-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .awc-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .awc-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Stats */
  .awc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }
  
  .awc-stat {
    text-align: center;
  }
  
  .awc-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  
  .awc-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.3rem;
    display: block;
  }
  
  /* Section Titles */
  .awc-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
  }
  
  /* Awards Grid */
  .awc-awards {
    margin-bottom: 4rem;
  }
  
  .awc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .awc-award-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .awc-award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 57, 70, 0.08);
  }
  
  .awc-award-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
  }
  
  .awc-award-content {
    flex: 1;
  }
  
  .awc-award-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
  }
  
  .awc-award-content p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }
  
  .awc-award-year {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--gray-light);
    background: var(--cream);
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    margin-right: 0.5rem;
  }
  
  .awc-award-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    background: var(--red);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Certifications Grid */
  .awc-certifications {
    margin-bottom: 4rem;
  }
  
  .awc-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .awc-cert-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
  }
  
  .awc-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(230, 57, 70, 0.08);
  }
  
  .awc-cert-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  
  .awc-cert-info {
    flex: 1;
  }
  
  .awc-cert-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
  }
  
  .awc-cert-info p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
  }
  
  .awc-cert-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
  }
  
  .awc-cert-status {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .awc-cert-status.certified {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
  }
  
  .awc-cert-status.compliant {
    background: rgba(25, 118, 210, 0.1);
    color: #1976D2;
  }
  
  .awc-cert-status.listed {
    background: rgba(237, 108, 2, 0.1);
    color: #ED6C02;
  }
  
  .awc-cert-status.verified {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
  }
  
  .awc-cert-date {
    font-size: 0.7rem;
    color: var(--gray-light);
  }
  
  /* Timeline */
  .awc-timeline {
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
  }
  
  .awc-timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
  }
  
  .awc-timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(230, 57, 70, 0.1);
    transform: translateY(-50%);
  }
  
  .awc-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
  }
  
  .awc-timeline-year {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.5rem;
  }
  
  .awc-timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid white;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
  }
  
  .awc-timeline-content {
    text-align: center;
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
  
  .awc-timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--dark);
  }
  
  .awc-timeline-content p {
    color: var(--gray);
    font-size: 0.8rem;
    margin: 0;
  }
  
  /* Trust Badges */
  .awc-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: var(--dark);
    border-radius: 16px;
    color: white;
    margin-bottom: 3rem;
  }
  
  .awc-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .awc-trust-icon {
    font-size: 2rem;
  }
  
  .awc-trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  
  .awc-trust-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* CTA */
  .awc-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 2.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.1);
  }
  
  .awc-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
  }
  
  .awc-cta-icon {
    font-size: 2.5rem;
  }
  
  .awc-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .awc-cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
  }
  
  .awc-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;
  }
  
  .awc-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 - awc                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .awc-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .awc-cert-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .awc-title {
      font-size: 2.5rem;
    }
    
    .awc-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .awc-cert-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .awc-trust {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .awc-section {
      padding: 4rem 1rem;
    }
    
    .awc-title {
      font-size: 2rem;
    }
    
    .awc-grid {
      grid-template-columns: 1fr;
    }
    
    .awc-stats {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.5rem;
    }
    
    .awc-stat-number {
      font-size: 2.2rem;
    }
    
    .awc-cert-grid {
      grid-template-columns: 1fr;
    }
    
    .awc-timeline-track {
      flex-direction: column;
      gap: 2rem;
      padding: 1rem 0;
    }
    
    .awc-timeline-track::before {
      display: none;
    }
    
    .awc-timeline-item {
      flex-direction: row;
      gap: 1.5rem;
    }
    
    .awc-timeline-content {
      text-align: left;
      margin: 0;
    }
    
    .awc-trust {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.5rem;
    }
    
    .awc-cta {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
    
    .awc-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .awc-cta-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .awc-title {
      font-size: 1.6rem;
    }
    
    .awc-stats {
      grid-template-columns: 1fr 1fr;
    }
    
    .awc-stat-number {
      font-size: 1.8rem;
    }
    
    .awc-stat-label {
      font-size: 0.75rem;
    }
    
    .awc-award-card {
      padding: 1.5rem;
    }
    
    .awc-trust {
      grid-template-columns: 1fr;
    }
  }