/* 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);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }
  
  /* loader */
  .security-loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  .security-loader.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader-shield {
    margin-bottom: 2rem;
    animation: shieldPulse 2s ease-in-out infinite;
  }
  
  @keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
  }
  
  .loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 6px;
    text-align: center;
  }
  
  /* custom cursor */
  .cursor-security {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
  }
  
  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    position: fixed;
    transition: transform 0.1s;
  }
  
  .cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--red);
    border-radius: 50%;
    position: fixed;
    transition: all 0.2s;
  }
  
  /* floating elements */
  .floating-security {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }
  
  .float {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.08;
    animation: floatSecurity 20s linear infinite;
  }
  
  .sec-1 { top: 20%; left: 10%; animation-duration: 25s; }
  .sec-2 { top: 60%; right: 15%; animation-duration: 20s; animation-delay: -5s; }
  .sec-3 { bottom: 20%; left: 20%; animation-duration: 30s; animation-delay: -10s; }
  .sec-4 { top: 30%; right: 25%; animation-duration: 22s; animation-delay: -15s; }
  .sec-5 { bottom: 40%; left: 30%; animation-duration: 28s; animation-delay: -20s; }
  
  @keyframes floatSecurity {
    from { transform: translateY(-100vh) rotate(0deg); }
    to { transform: translateY(100vh) rotate(360deg); }
  }
  
  /* hero section */
  .hero-security {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 5rem;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(230,57,70,0.4) 100%);
  }
  
  .hero-content {
    max-width: 800px;
    padding: 0 2rem;
  }
  
  .hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .badge-line {
    width: 40px;
    height: 2px;
    background: var(--red);
  }
  
  .badge-text {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--red);
  }
  
  .hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .title-line {
    display: block;
    overflow: hidden;
    animation: revealTitle 1s ease forwards;
    transform: translateY(100%);
    opacity: 0;
  }
  
  .title-line:nth-child(1) { animation-delay: 0.2s; }
  .title-line:nth-child(2) { animation-delay: 0.4s; }
  .title-line:nth-child(3) { animation-delay: 0.6s; }
  
  .title-line.accent {
    color: var(--red);
  }
  
  @keyframes revealTitle {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .hero-description {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
  }
  
  .btn-primary-security {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .btn-primary-security:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    gap: 1.5rem;
  }
  
  .btn-secondary-security {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .btn-secondary-security:hover {
    background: white;
    color: var(--dark);
  }
  
  .hero-stats {
    display: flex;
    gap: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--red);
    display: block;
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
  }
  
  /* services section */
  .services-security {
    padding: 6rem 2rem;
    background: var(--cream);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
  }
  
  .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(230,57,70,0.1);
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230,57,70,0.1);
    border-color: var(--red);
  }
  
  .service-card.featured {
    background: var(--dark);
    color: white;
    border-color: var(--red);
  }
  
  .service-card.featured .service-btn {
    color: var(--red);
    border-color: var(--red);
  }
  
  .service-card.featured .service-btn:hover {
    background: var(--red);
    color: white;
  }
  
  .service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .service-card.featured p {
    color: rgba(255,255,255,0.7);
  }
  
  .service-features {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .service-features li {
    padding: 0.4rem 0;
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  .service-card.featured .service-features li {
    color: rgba(255,255,255,0.8);
  }
  
  .service-btn {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .service-btn:hover {
    background: var(--red);
    color: white;
  }
  
  /* integrated solutions */
  .integrated-solutions {
    padding: 6rem 2rem;
    background: var(--dark);
    color: white;
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .solutions-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .solutions-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    line-height: 1.8;
  }
  
  .integration-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .flow-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
  }
  
  .flow-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--red);
  }
  
  .flow-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
  }
  
  .flow-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .flow-item p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  .solutions-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .solutions-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .featured-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(230,57,70,0.9);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
  }
  
  /* industries */
  .industries-security {
    padding: 6rem 2rem;
    background: var(--cream);
  }
  
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .industry-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(230,57,70,0.05);
    transition: var(--transition);
  }
  
  .industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(230,57,70,0.1);
  }
  
  .industry-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
  }
  
  .industry-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .industry-card p {
    color: var(--gray);
    font-size: 0.8rem;
  }
  
  /* projects */
  .projects-security {
    padding: 6rem 2rem;
    background: var(--white);
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
  }
  
  .project-card {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  }
  
  .project-image {
    height: 200px;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.1);
  }
  
  .project-content {
    padding: 2rem;
  }
  
  .project-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .project-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  
  .project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .project-tags span {
    background: rgba(230,57,70,0.1);
    color: var(--red);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
  }
  
  .view-all-projects {
    text-align: center;
  }
  
  .btn-view-all {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .btn-view-all:hover {
    background: var(--red);
    color: white;
  }
  
  /* certifications */
  .certifications {
    padding: 3rem 2rem;
    background: var(--dark);
  }
  
  .cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
  }
  
  .cert-icon {
    font-size: 1.2rem;
  }
  
  /* testimonials */
  .testimonials-security {
    padding: 6rem 2rem;
    background: var(--cream);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  }
  
  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--red);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 20px;
  }
  
  .testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .testimonial-author h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  
  .testimonial-author p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  /* quote section */
  .quote-security {
    padding: 6rem 2rem;
    background: var(--dark);
  }
  
  .quote-card {
    background: var(--dark-light);
    padding: 4rem;
    border-radius: 30px;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.05);
  }
  
  .quote-content {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
  }
  
  .quote-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .quote-content p {
    color: rgba(255,255,255,0.7);
  }
  
  .quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
  }
  
  .quote-form input::placeholder,
  .quote-form textarea::placeholder {
    color: var(--gray-light);
  }
  
  .quote-form input:focus,
  .quote-form select:focus,
  .quote-form textarea:focus {
    outline: none;
    border-color: var(--red);
  }
  
  .quote-form select option {
    background: var(--dark);
  }
  
  .btn-submit-quote {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .btn-submit-quote:hover {
    background: var(--red-dark);
    gap: 1.5rem;
  }
  
  /* newsletter */
  .newsletter-security {
    padding: 4rem 2rem;
    background: var(--cream);
  }
  
  .newsletter-card {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  }
  
  .newsletter-card h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-card p {
    color: var(--gray);
    margin-bottom: 2rem;
  }
  
  .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--cream);
    border-radius: 12px;
    font-size: 1rem;
  }
  
  .newsletter-form input:focus {
    outline: none;
    border-color: var(--red);
  }
  
  .newsletter-form button {
    background: var(--red);
    border: none;
    color: white;
    padding: 0 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .newsletter-form button:hover {
    background: var(--red-dark);
    transform: translateX(5px);
  }
  
  /* footer */
  .footer-security {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
  }
  
  .footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .footer-emergency {
    background: rgba(230,57,70,0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }
  
  .emergency-phone {
    color: var(--red);
    font-weight: 600;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: var(--transition);
  }
  
  .social-link:hover {
    background: var(--red);
    transform: translateY(-5px);
  }
  
  .footer-col h4 {
    font-family: var(--font-display);
    color: var(--red);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    font-size: 0.9rem;
  }
  
  .footer-col a:hover {
    color: var(--red);
  }
  
  .footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 2rem;
  }
  
  .footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-legal a:hover {
    color: var(--red);
  }
  
  /* modal */
  .modal-security {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  
  .modal-security.active {
    display: flex;
  }
  
  .modal-content {
    background: var(--dark);
    color: white;
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
    padding: 3rem;
  }
  
  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .modal-close:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  .modal-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .modal-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  
  .modal-features h4 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
  }
  
  .modal-features ul {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .modal-features li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.8);
  }
  
  .modal-cta {
    width: 100%;
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .modal-cta:hover {
    background: var(--red-dark);
  }
  
  /* responsive */
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 3.5rem;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
   
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 2rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .solutions-grid {
      grid-template-columns: 1fr;
    }
    
    .integration-flow {
      grid-template-columns: 1fr;
    }
    
    .projects-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    
    .industries-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
    
    .quote-card {
      padding: 2rem;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  }




  /* ============================================ */
/* WHY CHOOSE US - whcu prefix styles           */
/* ============================================ */

.whcu-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .whcu-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .whcu-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .whcu-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .whcu-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .whcu-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
  }
  
  .whcu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  /* Floating 3D image stack - LEFT */
  .whcu-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
  }
  
  .whcu-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .whcu-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
  }
  
  .whcu-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .whcu-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(230, 57, 70, 0.2);
  }
  
  .whcu-image-card:hover img {
    transform: scale(1.05);
  }
  
  .whcu-card-1 {
    width: 320px;
    height: 280px;
    top: 40px;
    left: 20px;
    z-index: 3;
    transform: rotate(-4deg);
  }
  
  .whcu-card-2 {
    width: 280px;
    height: 240px;
    top: 120px;
    right: 20px;
    z-index: 4;
    transform: rotate(6deg);
  }
  
  .whcu-card-3 {
    width: 260px;
    height: 220px;
    bottom: 40px;
    left: 60px;
    z-index: 2;
    transform: rotate(-8deg);
  }
  
  .whcu-card-4 {
    width: 240px;
    height: 200px;
    bottom: 80px;
    right: 60px;
    z-index: 1;
    transform: rotate(10deg);
  }
  
  .whcu-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(230, 57, 70, 0.15), transparent 70%);
    pointer-events: none;
  }
  
  /* Floating badges on the image stack */
  .whcu-float-badge {
    position: absolute;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 5;
    backdrop-filter: blur(10px);
    animation: whcuFloatBadge 4s ease-in-out infinite;
  }
  
  .whcu-badge-1 {
    top: 20px;
    right: 80px;
    background: rgba(230, 57, 70, 0.95);
    color: white;
    animation-delay: 0s;
  }
  
  .whcu-badge-2 {
    bottom: 160px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation-delay: 1.5s;
  }
  
  @keyframes whcuFloatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  .whcu-float-icon {
    position: absolute;
    font-size: 3rem;
    z-index: 6;
    opacity: 0.2;
    animation: whcuFloatIcon 8s ease-in-out infinite;
  }
  
  .whcu-float-1 {
    top: 80px;
    left: 100px;
    animation-delay: 0s;
  }
  
  .whcu-float-2 {
    bottom: 120px;
    right: 40px;
    animation-delay: 3s;
    font-size: 2.5rem;
  }
  
  @keyframes whcuFloatIcon {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(5deg); }
    66% { transform: translate(-10px, 10px) rotate(-5deg); }
  }
  
  /* Why Choose Us content - RIGHT */
  .whcu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .whcu-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .whcu-reason {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    transition: all 0.3s;
  }
  
  .whcu-reason:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.08);
  }
  
  .whcu-reason-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  
  .whcu-reason-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .whcu-reason-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .whcu-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
  }
  
  .whcu-stat-item {
    text-align: center;
  }
  
  .whcu-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
  }
  
  .whcu-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
  }
  
  /* ============================================ */
  /* ABOUT US - abus prefix styles                 */
  /* ============================================ */
  
  .abus-section {
    padding: 6rem 2rem;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .abus-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .abus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* About Content - LEFT */
  .abus-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .abus-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  
  .abus-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.2;
  }
  
  .abus-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
  }
  
  .abus-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .abus-mission-item {
    display: flex;
    gap: 1rem;
    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;
  }
  
  .abus-mission-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--red);
  }
  
  .abus-mission-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  
  .abus-mission-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .abus-mission-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .abus-values-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--red);
    margin-bottom: 1rem;
    display: block;
  }
  
  .abus-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .abus-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s;
  }
  
  .abus-value:hover {
    background: rgba(230, 57, 70, 0.15);
    transform: translateX(5px);
  }
  
  .abus-value span:first-child {
    font-size: 1.2rem;
  }
  
  .abus-cta {
    margin-top: 1rem;
  }
  
  .abus-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .abus-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
  }
  
  /* About Visual - RIGHT (Floating 3D images) */
  .abus-visual {
    position: relative;
    height: 600px;
    perspective: 1200px;
  }
  
  .abus-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .abus-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .abus-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .abus-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(230, 57, 70, 0.3);
  }
  
  .abus-image-card:hover img {
    transform: scale(1.05);
  }
  
  .abus-card-main {
    width: 360px;
    height: 320px;
    top: 60px;
    right: 20px;
    z-index: 4;
    transform: rotate(-3deg);
  }
  
  .abus-card-main .abus-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  }
  
  .abus-card-main .abus-card-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .abus-card-float-1 {
    width: 220px;
    height: 180px;
    top: 20px;
    left: 20px;
    z-index: 3;
    transform: rotate(6deg);
  }
  
  .abus-card-float-2 {
    width: 200px;
    height: 160px;
    bottom: 40px;
    right: 80px;
    z-index: 2;
    transform: rotate(-8deg);
  }
  
  .abus-card-float-3 {
    width: 240px;
    height: 180px;
    bottom: 140px;
    left: 40px;
    z-index: 1;
    transform: rotate(10deg);
  }
  
  .abus-float-badge {
    position: absolute;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 5;
    backdrop-filter: blur(10px);
    animation: abusFloatBadge 4s ease-in-out infinite;
  }
  
  .abus-badge-1 {
    top: 160px;
    right: 40px;
    background: rgba(230, 57, 70, 0.95);
    color: white;
    animation-delay: 0s;
  }
  
  .abus-badge-2 {
    bottom: 100px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation-delay: 2s;
  }
  
  @keyframes abusFloatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  .abus-float-icon {
    position: absolute;
    font-size: 3rem;
    z-index: 6;
    opacity: 0.15;
    animation: abusFloatIcon 8s ease-in-out infinite;
  }
  
  .abus-float-1 {
    top: 120px;
    right: 180px;
    animation-delay: 0s;
  }
  
  .abus-float-2 {
    bottom: 200px;
    right: 60px;
    animation-delay: 3s;
  }
  
  .abus-float-3 {
    top: 280px;
    left: 80px;
    animation-delay: 6s;
  }
  
  @keyframes abusFloatIcon {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(15px, -20px) rotate(10deg) scale(1.1); }
    66% { transform: translate(-15px, 15px) rotate(-10deg) scale(0.9); }
  }
  
  .abus-experience-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: var(--red);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 7;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    animation: abusPulse 2s ease-in-out infinite;
  }
  
  @keyframes abusPulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
  }
  
  .abus-exp-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .abus-exp-label {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.3;
    opacity: 0.9;
  }
  
  /* Company Timeline */
  .abus-timeline {
    padding-top: 4rem;
  }
  
  .abus-timeline-title {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .abus-timeline-title span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--red);
  }
  
  .abus-timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
  }
  
  .abus-timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
  }
  
  .abus-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
  }
  
  .abus-timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.5rem;
  }
  
  .abus-timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--red);
    border-radius: 50%;
    border: 2px solid var(--dark);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
  }
  
  .abus-timeline-content {
    text-align: center;
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
  
  .abus-timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  
  .abus-timeline-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
  }
  
  /* ============================================ */
  /* RESPONSIVE - whcu & abus                     */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .whcu-grid {
      gap: 3rem;
    }
    
    .whcu-card-1,
    .whcu-card-2,
    .whcu-card-3,
    .whcu-card-4 {
      width: 200px;
      height: 170px;
    }
    
    .abus-card-main {
      width: 280px;
      height: 260px;
    }
    
    .abus-card-float-1,
    .abus-card-float-2,
    .abus-card-float-3 {
      width: 160px;
      height: 140px;
    }
  }
  
  @media (max-width: 992px) {
    .whcu-grid,
    .abus-grid {
      grid-template-columns: 1fr;
    }
    
    .whcu-visual,
    .abus-visual {
      height: 450px;
      order: -1;
    }
    
    .whcu-image-stack {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .whcu-image-card {
      position: relative;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
      transform: none !important;
      width: 160px !important;
      height: 140px !important;
    }
    
    .whcu-float-badge,
    .whcu-float-icon {
      display: none;
    }
    
    .whcu-reasons {
      grid-template-columns: 1fr;
    }
    
    .abus-image-stack {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .abus-image-card {
      position: relative;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
      transform: none !important;
      width: 160px !important;
      height: 140px !important;
    }
    
    .abus-float-badge,
    .abus-float-icon,
    .abus-experience-badge {
      display: none;
    }
    
    .abus-timeline-track {
      flex-direction: column;
      gap: 2rem;
      padding: 1rem 0;
    }
    
    .abus-timeline-track::before {
      display: none;
    }
    
    .abus-timeline-item {
      flex-direction: row;
      gap: 1rem;
    }
    
    .abus-mission {
      grid-template-columns: 1fr;
    }
    
    .whcu-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .whcu-title,
    .abus-title {
      font-size: 2rem;
    }
    
    .whcu-image-card,
    .abus-image-card {
      width: 130px !important;
      height: 110px !important;
    }
    
    .whcu-stats {
      grid-template-columns: 1fr 1fr;
    }
    
    .abus-values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }













  /* ============================================ */
/* CORE SERVICES SLIDER - cssl prefix           */
/* ============================================ */

.cssl-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .cssl-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .cssl-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .cssl-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .cssl-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .cssl-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Slider Wrapper */
  .cssl-slider-wrapper {
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.05);
  }
  
  .cssl-slider {
    position: relative;
    overflow: hidden;
    min-height: 500px;
  }
  
  /* Individual Slides */
  .cssl-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: translateX(30px) scale(0.95);
  }
  
  .cssl-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    position: relative;
  }
  
  .cssl-slide.exit {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
  }
  
  .cssl-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem;
    align-items: center;
  }
  
  /* Slide Text */
  .cssl-slide-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .cssl-slide-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .cssl-slide-text h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
    line-height: 1.2;
  }
  
  .cssl-slide-desc {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
  }
  
  .cssl-slide-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.5rem;
  }
  
  .cssl-slide-features li {
    color: var(--dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .cssl-slide-features li::before {
    content: '▸';
    color: var(--red);
    font-weight: 700;
  }
  
  .cssl-slide-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .cssl-slide-btn:hover {
    background: var(--red-dark);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
  }
  
  /* Slide Image */
  .cssl-slide-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .cssl-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .cssl-slide:hover .cssl-slide-image img {
    transform: scale(1.05);
  }
  
  .cssl-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
  }
  
  .cssl-image-overlay span {
    font-size: 1rem;
    font-weight: 500;
  }
  
  /* Slider Controls */
  .cssl-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border-top: 1px solid var(--cream);
  }
  
  .cssl-prev,
  .cssl-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.2);
    background: transparent;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
  }
  
  .cssl-prev:hover,
  .cssl-next:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: scale(1.1);
  }
  
  /* Dots */
  .cssl-dots {
    display: flex;
    gap: 0.8rem;
  }
  
  .cssl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
  }
  
  .cssl-dot:hover {
    background: rgba(230, 57, 70, 0.4);
    transform: scale(1.2);
  }
  
  .cssl-dot.active {
    background: var(--red);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
  }
  
  /* Progress Bar */
  .cssl-progress {
    height: 3px;
    background: var(--cream);
    position: relative;
  }
  
  .cssl-progress-bar {
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    border-radius: 0 2px 2px 0;
  }
  
  .cssl-progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
  }
  
  /* Slide Counter */
  .cssl-counter {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid var(--cream);
    z-index: 2;
  }
  
  /* ============================================ */
  /* RESPONSIVE - cssl                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .cssl-slide-content {
      grid-template-columns: 1fr;
      padding: 2rem;
    }
    
    .cssl-slide-image {
      height: 300px;
    }
    
    .cssl-slide-text h3 {
      font-size: 2rem;
    }
    
    .cssl-slide-features {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .cssl-title {
      font-size: 2rem;
    }
    
    .cssl-slide-content {
      padding: 1.5rem;
    }
    
    .cssl-slide-image {
      height: 220px;
    }
    
    .cssl-slide-text h3 {
      font-size: 1.8rem;
    }
    
    .cssl-slide-desc {
      font-size: 0.95rem;
    }
    
    .cssl-slide-features li {
      font-size: 0.85rem;
    }
    
    .cssl-controls {
      gap: 1rem;
      padding: 1rem;
    }
    
    .cssl-prev,
    .cssl-next {
      width: 40px;
      height: 40px;
    }
    
    .cssl-slide-btn {
      padding: 0.8rem 2rem;
      font-size: 0.9rem;
    }
    
    .cssl-counter {
      top: 1rem;
      right: 1rem;
      font-size: 0.7rem;
      padding: 0.3rem 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .cssl-section {
      padding: 4rem 1rem;
    }
    
    .cssl-slide-content {
      padding: 1rem;
    }
    
    .cssl-slide-image {
      height: 180px;
    }
    
    .cssl-slide-text h3 {
      font-size: 1.5rem;
    }
  }















  /* ============================================ */
/* CERTIFICATES & COMPLIANCE - ccom prefix      */
/* ============================================ */

.ccom-section {
    padding: 6rem 2rem;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .ccom-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .ccom-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .ccom-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .ccom-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .ccom-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
  }
  
  .ccom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
  }
  
  .ccom-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .ccom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .ccom-card:hover::before {
    opacity: 1;
  }
  
  .ccom-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.1);
  }
  
  .ccom-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
  }
  
  .ccom-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--red);
  }
  
  .ccom-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .ccom-card-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: rgba(230, 57, 70, 0.15);
    color: var(--red);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .ccom-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .ccom-strip-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  .ccom-strip-check {
    color: var(--red);
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  /* ============================================ */
  /* BRANDS WE WORK WITH - bww prefix            */
  /* ============================================ */
  
  .bww-section {
    padding: 6rem 2rem;
    background: var(--cream);
    overflow: hidden;
  }
  
  .bww-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .bww-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .bww-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .bww-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .bww-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
  }
  
  .bww-marquee {
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid rgba(230, 57, 70, 0.05);
    border-bottom: 1px solid rgba(230, 57, 70, 0.05);
  }
  
  .bww-track {
    display: flex;
    gap: 4rem;
    animation: bwwScroll 30s linear infinite;
    width: fit-content;
  }
  
  .bww-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
    white-space: nowrap;
    border: 1px solid rgba(230, 57, 70, 0.03);
  }
  
  .bww-brand:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.08);
    border-color: var(--red);
  }
  
  .bww-brand-icon {
    font-size: 1.8rem;
  }
  
  .bww-brand span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
  }
  
  @keyframes bwwScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .bww-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .bww-category {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    transition: all 0.3s;
  }
  
  .bww-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.05);
    border-color: var(--red);
  }
  
  .bww-cat-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
  }
  
  .bww-category h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .bww-category p {
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  /* ============================================ */
  /* CTA BANNER - ctab prefix                     */
  /* ============================================ */
  
  .ctab-section {
    padding: 6rem 2rem;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .ctab-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
  }
  
  .ctab-bg {
    position: absolute;
    inset: -50px;
    z-index: 0;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .ctab-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .ctab-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(230, 57, 70, 0.4) 100%);
  }
  
  /* Floating Cards */
  .ctab-floating-cards {
    position: relative;
    z-index: 1;
  }
  
  .ctab-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: ctabFloat 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    transition: all 0.3s;
  }
  
  .ctab-float-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 30px 60px rgba(230, 57, 70, 0.3);
    border-color: var(--red);
  }
  
  .ctab-card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
  }
  
  .ctab-card-2 {
    top: 30%;
    right: 8%;
    animation-delay: 1.5s;
  }
  
  .ctab-card-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
  }
  
  .ctab-card-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 4.5s;
  }
  
  .ctab-card-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
    background: var(--red);
    color: white;
    border-color: var(--red);
  }
  
  .ctab-card-5 .ctab-card-content p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  @keyframes ctabFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
  }
  
  .ctab-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  
  .ctab-card-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  
  .ctab-card-content p {
    color: var(--gray);
    font-size: 0.85rem;
  }
  
  .ctab-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
  }
  
  .ctab-float-card:hover .ctab-card-glow {
    opacity: 0.1;
  }
  
  /* Main CTA Content */
  .ctab-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
    padding: 4rem;
  }
  
  .ctab-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .ctab-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .ctab-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 450px;
  }
  
  .ctab-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  
  .ctab-btn-primary {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .ctab-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.4);
    gap: 1.5rem;
  }
  
  .ctab-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .ctab-btn-secondary:hover {
    background: white;
    color: var(--dark);
    border-color: white;
    transform: translateY(-3px);
    gap: 1.5rem;
  }
  
  .ctab-stats {
    display: flex;
    gap: 3rem;
  }
  
  .ctab-stat {
    text-align: center;
  }
  
  .ctab-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  
  .ctab-stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* ============================================ */
  /* RESPONSIVE - ccom, bww, ctab                 */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .ccom-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .ccom-strip {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .bww-categories {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .ctab-floating-cards {
      display: none;
    }
    
    .ctab-content {
      max-width: 100%;
      padding: 3rem;
    }
    
    .ctab-title {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .ccom-grid {
      grid-template-columns: 1fr;
    }
    
    .ccom-strip {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .ccom-title,
    .bww-title {
      font-size: 2rem;
    }
    
    .bww-categories {
      grid-template-columns: 1fr;
    }
    
    .ctab-content {
      padding: 2rem;
    }
    
    .ctab-title {
      font-size: 2rem;
    }
    
    .ctab-buttons {
      flex-direction: column;
    }
    
    .ctab-stats {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .ctab-float-card {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .ccom-strip {
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }
    
    .ccom-strip-item {
      font-size: 0.8rem;
    }
    
    .ctab-title {
      font-size: 1.8rem;
    }
    
    .ctab-description {
      font-size: 0.95rem;
    }
  }