.banner-section video{
    width:100%;
    height:100vh;
    object-fit:cover;
}
  /* 3D Container Setup */
  .flip-card-wrapper {
    background-color: transparent;
    perspective: 1000px; /* Gives 3D depth effect */
    min-height: 230px;
  }

  /* Flip Inner Container */
  .flip-card-inner {
    position: relative;
    /*width: 100%;*/
    /*height: 100%;*/
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 6px;
  }

  /* Trigger Flip on Hover */
  .flip-card-wrapper:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  /* Common Styling for Front and Back Faces */
  .flip-card-front, .flip-card-back {
    position: absolute;
    /*width: 100%;*/
    /*height: 100%;*/
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 6px;
    top: 0;
    left: 0;
  }

  /* Front Face Style */
  .flip-card-front {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 2;
  }

  /* Featured Card Front Styling */
  .flip-card-front.featured-red {
    background-color: #ffffff;
    color: #333333 !important;
  }

  /* Back Face Style (Flipped state uses #CE277F) */
  .flip-card-back {
    background-color: #CE277F;
    color: #ffffff;
    transform: rotateY(180deg);
  }

  /* Featured Red Card Back Styling */
  .flip-card-back.featured-red-back {
    background-color: #CE277F;
  }

  /* Floating Primary Button Glow */
  .btn-animated-primary {
    transition: all 0.3s ease;
  }

  .btn-animated-primary:hover {
    background-color: #CE277F !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 39, 127, 0.4);
  }

  /* Card Icon Transitions */
  .card-icon {
    transition: transform 0.3s ease;
  }
  .flip-card-wrapper:hover .card-icon {
    transform: scale(1.1);
  }
  
  
  
  
  .why-choose-us-section {
    background-color: #f8f9fa;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }

  /* Title Section Styling */
  .why-choose-heading {
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
  }

  .why-choose-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #CE277F;
    border-radius: 2px;
  }

  /* Feature Grid Item Box */
  .why-box-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 15px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .why-box-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(206, 39, 127, 0.12);
    border-color: rgba(206, 39, 127, 0.3);
  }

  /* Circular Icon Container */
  .icon-circle-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff0f7;
    border: 2px solid #CE277F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: all 0.3s ease;
  }

  .why-box-item:hover .icon-circle-wrapper {
    transform: scale(1.08) rotate(-5deg);
    background-color: #CE277F;
  }

  .why-box-item:hover .icon-circle-wrapper i {
    color: #ffffff !important;
  }

  .why-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0;
    line-height: 1.3;
  }
  
  
  /* Icon Box Styling for Industries */
  .industry-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff0f7;
    border: 2px solid #CE277F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
  }

  .industry-card:hover .industry-icon-wrapper {
    background-color: #CE277F;
    transform: scale(1.1) rotate(-5deg);
  }

  .industry-card:hover .industry-icon-wrapper i {
    color: #ffffff !important;
  }
  
  
  .working-steps-section {
    background: #0d0e12;
    background: radial-gradient(circle at 50% 20%, #181920 0%, #0d0e12 100%);
    color: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    position: relative;
    overflow: hidden;
  }

  /* Ambient Glow in Background */
  .working-steps-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(206, 39, 127, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
  }

  /* Section Subtitle Accent */
  .steps-sub-title {
    color: #CE277F;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* Timeline Grid Wrapper */
  .timeline-wrapper {
    position: relative;
  }

  /* Connected Animated Gradient Line Behind Steps (Desktop Only) */
  @media (min-width: 992px) {
    .timeline-wrapper::before {
      content: '';
      position: absolute;
      top: 60px; /* Aligns with center of 120px circle */
      left: 12%;
      right: 12%;
      height: 3px;
      background: linear-gradient(90deg, 
        rgba(206, 39, 127, 0.2) 0%, 
        rgba(206, 39, 127, 0.8) 50%, 
        rgba(206, 39, 127, 0.2) 100%);
      z-index: 1;
      border-radius: 2px;
    }
  }

  /* Step Container */
  .step-node-item {
    position: relative;
    z-index: 2;
    padding: 10px;
  }

  /* Outer White Circle Icon Container with Dual Ring & Pulse */
  .step-icon-circle {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 0 8px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .step-node-item:hover .step-icon-circle {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(206, 39, 127, 0.4), 0 0 0 10px rgba(206, 39, 127, 0.2);
    background-color: #ffffff;
  }

  .step-icon-circle i {
    color: #121214;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .step-node-item:hover .step-icon-circle i {
    color: #CE277F;
    transform: scale(1.15);
  }

  /* Floating Step Number Badge */
  .step-number-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #CE277F 0%, #a81c64 100%);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #0d0e12;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .step-node-item:hover .step-number-badge {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 15px rgba(206, 39, 127, 0.8);
  }

  /* Step Content Styling */
  .step-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    margin-top: 28px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }

  .step-node-item:hover .step-title {
    color: #CE277F;
  }

  .step-desc {
    color: #9da0a8;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* CTA Button Header */
  .btn-quote-custom {
    background: linear-gradient(135deg, #CE277F 0%, #ab1e68 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(206, 39, 127, 0.3);
    transition: all 0.3s ease;
  }

  .btn-quote-custom:hover {
    background: linear-gradient(135deg, #e62e90 0%, #CE277F 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 39, 127, 0.5);
  }
  
  
  .why-section-bg-image {
    position: relative;
    background-image: url('{{ asset('public/why-choose-bg.webp') }}') center center / cover no-repeat;
    padding: 90px 0;
    color: #ffffff;
  }
  .why-section-bg-image::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.88); /* Dark overlay */
    z-index: 1;
  }
  .why-section-bg-image .container {
    position: relative;
    z-index: 2;
  }
  .why-box-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    height: 100%;
  }
  .why-box-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
  }
  .icon-wrapper-glass {
    font-size: 2.2rem;
    color: #38bdf8;
    margin-bottom: 12px;
  }
  
  
   .industry-card-dark {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .industry-card-dark .img-box {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .industry-card-dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .industry-card-dark .industry-title {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 600;
    margin: 4px 0 6px 0;
  }
  .industry-card-dark:hover {
    transform: translateY(-6px);
    border-color: #38bdf8;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
  }
  .industry-card-dark:hover img {
    transform: scale(1.08);
  }
  .industry-card-dark:hover .industry-title {
    color: #38bdf8;
  }
  
  
  
  
  
  
  
  
  
  
   .about-section-wrapper {
    background-color: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }

  /* Subtitle Styling */
  .sub-heading-text {
    color: #CE277F;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
  }

  /* Main Heading Decorative Line */
  .heading-accent {
    position: relative;
    padding-bottom: 12px;
  }
  .heading-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #CE277F;
    border-radius: 2px;
  }

  /* Image Frame & Hover Glow */
  .image-card-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .image-card-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(206, 39, 127, 0.15);
  }

  .image-card-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  /* Metric/Trust Feature Box */
  .stat-badge-box {
    background-color: #f8f9fa;
    border-left: 3px solid #CE277F;
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    transition: transform 0.3s ease;
  }

  .stat-badge-box:hover {
    transform: translateX(4px);
    background-color: #fff0f7;
  }

  /* Action Button Style */
  .btn-primary-custom {
    background-color: #CE277F;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .btn-primary-custom:hover {
    background-color: #a81c64;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(206, 39, 127, 0.3);
  }
  
  
  .industries-section {
    background-color: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }

  /* Section Title Header */
  .industries-heading {
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
  }

  .industries-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #CE277F;
    border-radius: 2px;
  }

  /* Industry Card Container */
  .industry-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(206, 39, 127, 0.15);
    border-color: rgba(206, 39, 127, 0.3);
  }

  /* Image Frame */
  .industry-img-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
  }

  .industry-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .industry-card:hover .industry-img-wrapper img {
    transform: scale(1.08);
  }

  /* Industry Title */
  .industry-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
    transition: color 0.3s ease;
  }

  .industry-card:hover .industry-title {
    color: #CE277F;
  }
  
  
  
  .premium-display-categories {
    background-color: #f8f9fa;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }

  /* Section Title Subtext Accent */
  .sub-title-accent {
    color: #CE277F;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  /* Main Section Title Decorative Underline */
  .heading-underline {
    position: relative;
    padding-bottom: 12px;
  }

  /* Call Now Header Button */
  .btn-call-now {
    background-color: #CE277F;
    color: #ffffff;
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-call-now:hover {
    background-color: #a81c64;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(206, 39, 127, 0.3);
  }

  /* Product Category Card Container */
  .category-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  /* Image Container & Zoom Animation */
  .card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #1a1a1a;
  }

  .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .category-card:hover .card-image-wrapper img {
    transform: scale(1.08);
  }

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.4) 100%);
  }

  /* Card Badge */
  .card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #CE277F;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  /* Card Body */
  .category-card .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .card-description {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  /* Action Buttons inside Card */
  .card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
  }

  .card-actions .btn {
    flex: 1;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .btn-outline-custom {
    border: 1px solid #ddd;
    color: #444;
    background: #ffffff;
  }

  .btn-outline-custom:hover {
    background-color: #f0f0f0;
    color: #111;
    border-color: #bbb;
  }

  .btn-brand-primary {
    background-color: #CE277F;
    color: #ffffff;
    border: 1px solid #CE277F;
  }

  .btn-brand-primary:hover {
    background-color: #a81c64;
    color: #ffffff;
    border-color: #a81c64;
    box-shadow: 0 4px 12px rgba(206, 39, 127, 0.3);
  }
  
  
  /* Grid Container */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.75rem;
        padding: 1rem 0;
    }
    
    /* Card Container */
    .category-card {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .category-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }
    
    /* Image Wrapper & Overlay */
    .card-image-wrapper {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
        background-color: #f4f4f6;
    }
    
    .card-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .category-card:hover .card-image-wrapper img {
        transform: scale(1.08);
    }
    
    .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 60%);
        opacity: 0.8;
    }
    
    /* Optional Badge */
    .card-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        color: #111;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Card Body */
    .card-body {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .card-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .card-description {
        font-size: 0.9rem;
        color: #666666;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        flex-grow: 1;
    }
    
    /* Side-by-Side Action Buttons */
    .card-actions {
        display: flex;
        gap: 0.75rem;
        margin-top: auto;
    }
    
    .btn {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.25s ease;
    }
    
    /* Primary Button (Inquire) */
    .btn-primary {
        background-color: #CA2284;
        color: #ffffff;
        border: 1px solid #CA2284;
    }
    
    .btn-primary:hover {
        background-color: #ffffff;
        border-color: #CA2284;
        color: #111111;
    }
    
    /* Secondary Button (View Details) */
    .btn-secondary {
        background-color: #f1f3f5;
        color: #333333;
        border: 1px solid #ffffff;
    }
    
    .btn-secondary:hover {
        background-color: #CA2284;
        color: #ffffff;
    }
  
  
  
  
  
  
  
  /* ==========================================================================
   FOOTER CORE CONTAINER
   ========================================================================== */
.footer-dark {
    background: #0b0d10;
    color: #a1a8b3;
    font-size: 13.5px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 46, 0, 0.8), transparent);
    box-shadow: 0 0 15px rgba(230, 46, 0, 0.6);
}

/* ==========================================================================
   TITLES & TYPOGRAPHY
   ========================================================================== */
.footer-widget-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #e62e00;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-widget:hover .footer-widget-title::after {
    width: 40px;
}

.footer-tagline {
    line-height: 1.6;
    color: #8c93a1;
    font-size: 13px;
}

/* ==========================================================================
   BADGES & SOCIAL BUTTONS
   ========================================================================== */
.trust-badges .badge-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #c5c9d1;
    font-size: 10.5px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.trust-badges .badge-item:hover {
    background: rgba(230, 46, 0, 0.12);
    border-color: rgba(230, 46, 0, 0.4);
    color: #ffffff;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ea4b0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 13px;
}

.social-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3); }
.social-btn.twitter:hover { background: #000000; border-color: #333333; box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2); }
.social-btn.linkedin:hover { background: #0a66c2; border-color: #0a66c2; box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3); }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366); border-color: transparent; }
.social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3); }

/* ==========================================================================
   NAVIGATION LINKS
   ========================================================================== */
.footer-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-list li {
    margin-bottom: 8px;
}

.footer-widget-list li a {
    color: #8c93a1;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-widget-list li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ==========================================================================
   CONTACT CARDS (GLASSMORPHISM)
   ========================================================================== */
.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-card.interactive-link:hover {
    background: rgba(230, 46, 0, 0.08);
    border-color: rgba(230, 46, 0, 0.3);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(230, 46, 0, 0.12);
    color: #e62e00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-card-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c7380;
    font-weight: 600;
}

.contact-card-text {
    color: #c5c9d1;
    line-height: 1.35;
    font-size: 12px;
}

.contact-card-value {
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    display: block;
}

/* ==========================================================================
   FOOTER BASELINE
   ========================================================================== */
.footer-copyright-baseline {
    background: #060709;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: #636a75;
    font-size: 12px;
}

.vendor-link {
    color: #a1a8b3;
    text-decoration: none;
    font-weight: 600;
}

.vendor-link:hover {
    color: #e62e00;
}

.footer-terms-links a {
    color: #636a75;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-terms-links a:hover {
    color: #ffffff;
}

.splitter {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.1);
}