/* ======================================
   SERVICES PAGE STYLES - ULTRA MODERN TECH
   ====================================== */

/* === Shared Variables & Utilities === */
:root {
    --tech-green: #4acc9a;
    --tech-blue: #4a90e2;
    --tech-dark: #1a202c;
    --tech-gray: #f8fafc;
}

/* === Section Headers === */
.section-header-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    /* Reduced from 5rem */
    position: relative;
}

.section-header-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--tech-green);
    margin: 1.5rem auto 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.section-header-center h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--tech-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-header-center p {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* === Stats Section (Modernized) === */
.stats-section {
    background: white;
    padding: 3rem 0;
    /* Reduced from 6rem */
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: white;
    padding: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Tech corners for stats grid */
.stats-grid::before,
.stats-grid::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--tech-green);
    transition: all 0.3s ease;
}

.stats-grid::before {
    top: -1px;
    left: -1px;
    border-right: 0;
    border-bottom: 0;
}

.stats-grid::after {
    bottom: -1px;
    right: -1px;
    border-left: 0;
    border-top: 0;
}

.stats-grid:hover::before,
.stats-grid:hover::after {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--tech-blue) 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Service Overview & Content Split === */
.service-overview {
    padding: 4rem 0;
    /* Reduced from 8rem */
    background: white;
    overflow: hidden;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 2rem;
}

.content-text h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--tech-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 24px;
    background: var(--tech-green);
    clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
}

.content-text p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Tech Check List */
.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.check-list li {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-left: 3px solid var(--tech-blue);
    font-size: 1.05rem;
    color: #334155;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 98% 100%, 0 100%);
}

.check-list li:hover {
    background: #f1f5f9;
    border-left-color: var(--tech-green);
}

.check-list li strong {
    color: var(--tech-dark);
}

/* === Fuel Types & Dual Image Styles === */
.fuel-types-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.fuel-category-group {
    transition: transform 0.3s ease;
    cursor: default;
}

.category-header {
    font-size: 1rem;
    color: var(--tech-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.commercial-header {
    border-color: var(--tech-green);
}

.military-header {
    border-color: var(--tech-blue);
}

.compact-list {
    font-size: 0.95rem;
    gap: 0.5rem;
}

.compact-list li {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}

.compact-list li a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.compact-list li a:hover {
    color: var(--tech-green);
}

.compact-list li:hover a {
    color: var(--tech-green);
    transform: translateX(5px);
}

.fuel-category-group[data-category="military"] .compact-list li a:hover {
    color: var(--tech-blue);
}

.fuel-category-group[data-category="military"] .compact-list li:hover a {
    color: var(--tech-blue);
}

/* Dual Image Wrapper */
.dual-image-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #1a202c;
    /* Fallback */
    transition: background-color 1.2s ease;
}

/* Dynamic Background Colors */
.dual-image-wrapper.commercial-active {
    background-color: var(--tech-green);
}

.dual-image-wrapper.military-active {
    background-color: var(--tech-blue);
}

.dual-image {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1), filter 1.2s ease, opacity 1.2s ease;
    /* Slower transition */
    overflow: hidden;
    background: white;
    /* Ensure images have background */
}

.dual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.image-label {
    position: absolute;
    bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
    /* Delayed label appearance */
    border-left: 3px solid transparent;
}

.dual-image.active .image-label {
    opacity: 1;
    transform: translateY(0);
}

/* Commercial Image Styles */
.commercial-img {
    left: 0;
    z-index: 2;
    /* Default State (Commercial Active): Takes almost full width */
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.commercial-img .image-label {
    left: 2rem;
    border-left-color: var(--tech-green);
}

/* Military Image Styles */
.military-img {
    right: 0;
    z-index: 1;
    /* Default State (Receded): Just a sliver on the right */
    clip-path: polygon(92% 0, 100% 0, 100% 100%, 85% 100%);
    opacity: 0.6;
    /* Semi-transparent to show background color */
}

.military-img .image-label {
    right: 2rem;
    border-left-color: var(--tech-blue);
}

/* Interactive States controlled by JS classes on wrapper */
/* State: Military Active */
.dual-image-wrapper.military-active .commercial-img {
    /* Retract Commercial to left sliver */
    clip-path: polygon(0 0, 8% 0, 15% 100%, 0 100%);
    filter: brightness(0.4) grayscale(100%);
    opacity: 0.6;
    z-index: 1;
}

.dual-image-wrapper.military-active .military-img {
    /* Expand Military to almost full width */
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    filter: brightness(1) grayscale(0%);
    opacity: 1;
    z-index: 10;
}

.dual-image-wrapper.military-active .military-img .image-label {
    opacity: 1;
    transform: translateY(0);
}

.dual-image-wrapper.military-active .commercial-img .image-label {
    opacity: 0;
    transform: translateY(20px);
}

/* State: Commercial Active (Default) */
.dual-image-wrapper.commercial-active .commercial-img {
    /* Expand Commercial */
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    filter: brightness(1) grayscale(0%);
    opacity: 1;
    z-index: 10;
}

.dual-image-wrapper.commercial-active .military-img {
    /* Retract Military */
    clip-path: polygon(92% 0, 100% 0, 100% 100%, 85% 100%);
    filter: brightness(0.4) grayscale(100%);
    opacity: 0.6;
    z-index: 1;
}

/* Hover effects on images themselves */
.dual-image:hover img {
    transform: scale(1.05);
}

/* Content Image (General) */
.content-image {
    position: relative;
    z-index: 1;
}

/* === Clients Grid (Visual Cards) === */
.clients-carousel-section {
    padding: 6rem 0;
    background: #1a202c;
    color: white;
    position: relative;
    overflow: hidden;
}

.clients-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.clients-carousel-section .section-header-center h2 {
    color: white;
}

.clients-carousel-section .section-header-center p {
    color: #cbd5e0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.client-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 204, 154, 0.2);
    border-color: var(--tech-green);
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.client-card:hover img {
    transform: scale(1.1);
}

.client-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    transition: background 0.4s ease;
}

.client-card:hover .client-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.client-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.client-card:hover .client-card-content {
    transform: translateY(0);
}

.client-card-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-card-content p {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === Key Benefits / Cards === */
.key-benefits {
    padding: 8rem 0;
    background: #f8fafc;
    position: relative;
}

.key-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.benefit-list {
    display: grid;
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--tech-green);
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, var(--tech-green) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover::after {
    opacity: 1;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: var(--tech-green);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tech-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Visual Card */
.visual-card {
    background: var(--tech-dark);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    color: white;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 48%, rgba(74, 204, 154, 0.1) 48%, rgba(74, 204, 154, 0.1) 52%, transparent 52%);
    background-size: 30px 30px;
}

.visual-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--tech-green);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(74, 204, 154, 0.3);
}

.visual-label {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === CTA Section Modern - Animated Gradient === */
.cta-section-modern {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Animated gradient background */
.cta-animated-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #0f172a, #1e3a5f, #0f4c3a, #1a365d, #0f172a);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-section-modern .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section-modern .cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: white !important;
}

.cta-section-modern .cta-content p {
    font-size: 1.25rem;
    color: #cbd5e0 !important;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section-modern {
        padding: 4rem 0;
    }
    
    .cta-section-modern .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* === OLD CTA Section (Tech Style) - keeping for reference === */
.cta-section {
    padding: 8rem 0;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: white !important;
    /* Force white color */
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e0 !important;
    /* Light gray for readability */
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--tech-green);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: white;
    color: var(--tech-dark);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(74, 204, 154, 0.4);
}

/* === Responsive === */
@media (max-width: 992px) {

    .content-split,
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-image img {
        height: 350px;
    }
}

@media (max-width: 576px) {

    .stats-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .section-header-center h2 {
        font-size: 2.25rem;
    }

    .visual-number {
        font-size: 4rem;
    }

    .content-image img,
    .content-image::before,
    .visual-card,
    .btn-cta-large {
        clip-path: none;
        border-radius: 12px;
    }
}

/* === Credit Solutions Modern Section === */
.credit-solutions-modern {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.credit-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.credit-title-block-modern {
    max-width: 550px;
}

.credit-title-block-modern h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--tech-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.credit-title-block-modern p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Stat Block */
.credit-stat-block-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tech-green) 0%, #3ba889 100%);
    padding: 1.75rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(74, 204, 154, 0.3);
    min-width: 160px;
}

.credit-stat-label-top {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.credit-stat-number-modern {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.credit-stat-label-bottom {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Cards Grid */
.credit-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.credit-card-modern {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.credit-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 204, 154, 0.15);
    border-color: var(--tech-green);
}

.credit-card-icon-modern {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(74, 204, 154, 0.15) 0%, rgba(74, 204, 154, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.credit-card-icon-modern svg {
    width: 24px;
    height: 24px;
    stroke: var(--tech-green);
}

.credit-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tech-dark);
    margin-bottom: 0.5rem;
}

.credit-card-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .credit-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .credit-header-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .credit-title-block-modern {
        max-width: 100%;
    }
    
    .credit-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .credit-title-block-modern h2 {
        font-size: 2rem;
    }
}

/* === OLD Credit Solutions Carousel Section (keeping for reference) === */
.credit-solutions-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.credit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.credit-title-block h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--tech-dark);
    margin-bottom: 0.5rem;
}

.credit-title-block p {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    line-height: 1.6;
}

.credit-stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--tech-green) 0%, #3ba889 100%);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(74, 204, 154, 0.3);
}

.credit-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.credit-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.credit-carousel-container {
    position: relative;
}

.credit-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.credit-carousel::-webkit-scrollbar {
    display: none;
}

.credit-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.credit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 204, 154, 0.15);
    border-color: var(--tech-green);
}

.credit-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(74, 204, 154, 0.15) 0%, rgba(74, 204, 154, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.credit-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--tech-green);
}

.credit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tech-dark);
    margin-bottom: 0.5rem;
}

.credit-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.credit-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.credit-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--tech-green);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.credit-nav-btn:hover {
    background: var(--tech-green);
}

.credit-nav-btn:hover svg {
    stroke: white;
}

.credit-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--tech-green);
    transition: stroke 0.3s ease;
}

@media (max-width: 768px) {
    .credit-header {
        flex-direction: column;
        text-align: center;
    }
    
    .credit-title-block p {
        max-width: 100%;
    }
    
    .credit-card {
        flex: 0 0 260px;
    }
    
    .credit-stat-block {
        padding: 1.25rem 2rem;
    }
    
    .credit-stat-number {
        font-size: 2.75rem;
    }
}

@media (max-width: 480px) {
    .credit-solutions-section {
        padding: 3rem 0;
    }
    
    .credit-title-block h2 {
        font-size: 1.75rem;
    }
    
    .credit-card {
        flex: 0 0 240px;
        padding: 1.5rem;
    }
}

/* === Modern Credit Grid === */
.credit-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.credit-box {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.credit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--tech-green);
}

.credit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--tech-green);
}

.credit-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--tech-dark);
}

.credit-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Featured Box (Geometric) */
.credit-box-featured {
    background: var(--tech-green);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    box-shadow: 0 10px 30px rgba(74, 204, 154, 0.3);
    transition: transform 0.3s ease;
    min-height: 200px; /* Ensure it has presence */
}

.credit-box-featured:hover {
    transform: scale(1.02);
}

.feat-label-top {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.feat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin: 0.5rem 0;
}

.feat-label-bottom {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .credit-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .credit-grid-modern {
        grid-template-columns: 1fr;
    }
    .credit-box-featured {
        order: -1; /* Show featured item first on mobile */
        margin-bottom: 1rem;
    }
}

/* === Modern Credit Section (Dark) === */
.credit-section-modern {
    padding: 6rem 0;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.credit-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

.credit-content-wrapper {
    position: relative;
    z-index: 2;
}

.credit-header-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.credit-header-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.credit-header-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* === Special Operations Page Styles === */

/* Intro Section */
.special-ops-intro {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.special-ops-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(74, 204, 154, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.intro-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.intro-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(74, 204, 154, 0.15);
    border: 1px solid rgba(74, 204, 154, 0.3);
    color: #4acc9a;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.special-ops-intro h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.special-ops-intro p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* Operations Sections */
.special-ops-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.special-ops-section.alt-bg {
    background: #f8fafc;
}

.ops-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ops-content-grid.reverse {
    direction: rtl;
}

.ops-content-grid.reverse > * {
    direction: ltr;
}

/* Image Wrapper with Decorative Frame */
.ops-image-wrapper {
    position: relative;
}

.ops-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ops-image-frame img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ops-image-wrapper:hover .ops-image-frame img {
    transform: scale(1.05);
}

.ops-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background-image: radial-gradient(#4acc9a 2px, transparent 2px);
    background-size: 16px 16px;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.ops-image-wrapper:hover .ops-image-accent {
    transform: translate(5px, 5px);
    opacity: 0.7;
}

/* Text Content */
.ops-text-content {
    padding: 1rem 0;
}

.ops-section-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #4acc9a;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.ops-section-number::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: #4acc9a;
    transform: translateY(-50%);
}

.ops-text-content h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.ops-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4acc9a;
    margin-bottom: 1.25rem;
}

.ops-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Feature List */
.ops-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ops-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.3s ease;
}

.ops-feature-list li:last-child {
    border-bottom: none;
}

.ops-feature-list li:hover {
    padding-left: 0.5rem;
    background: rgba(74, 204, 154, 0.05);
    border-radius: 6px;
}

.feature-icon {
    font-size: 1.1rem;
    min-width: 24px;
}

.ops-feature-list strong {
    color: #0f172a;
    font-weight: 700;
}

.ops-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(74, 204, 154, 0.08);
    border-left: 3px solid #4acc9a;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #64748b;
}

.ops-note a {
    color: #4acc9a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ops-note a:hover {
    color: #3db885;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .ops-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ops-content-grid.reverse {
        direction: ltr;
    }
    
    .ops-image-frame img {
        height: 300px;
    }
    
    .ops-text-content h2 {
        font-size: 1.85rem;
    }
    
    .special-ops-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .special-ops-section {
        padding: 3rem 0;
    }
    
    .ops-image-accent {
        display: none;
    }
    
    .ops-image-frame img {
        height: 250px;
    }
}

/* === Image Hover Container with Overlay === */
.image-hover-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(74, 204, 154, 0.1);
}

.image-hover-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tech-green), var(--tech-blue));
    z-index: 2;
}

.image-hover-container img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-hover-container:hover img {
    transform: scale(1.06);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.4s ease;
}

.image-hover-container:hover .image-overlay {
    background: linear-gradient(180deg, rgba(74, 204, 154, 0.1) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.overlay-label {
    background: linear-gradient(135deg, var(--tech-green), var(--tech-blue));
    color: white;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-hover-container:hover .overlay-label {
    opacity: 1;
    transform: translateY(0);
}

/* Make content-image fill height to match text */
.content-image {
    display: flex;
    align-items: stretch;
}

.content-image .image-hover-container {
    width: 100%;
    display: flex;
}

@media (max-width: 768px) {
    .image-hover-container img {
        min-height: 300px;
    }
}

/* === Success Cases Section === */
.success-cases-section {
    padding: 6rem 0;
    background: var(--tech-dark);
    position: relative;
    overflow: hidden;
}

/* Dot pattern background */
.success-cases-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(74, 204, 154, 0.15) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
}

/* Gradient overlay */
.success-cases-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 204, 154, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    pointer-events: none;
}

.success-cases-section .container {
    position: relative;
    z-index: 1;
}

.section-header-modern {
    text-align: left;
    margin-bottom: 4rem;
    position: relative;
}

.section-header-modern h2 {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--tech-green) 0%, #7ee8c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.header-line {
    width: 100%;
    max-width: 600px;
    height: 4px;
    background: linear-gradient(90deg, var(--tech-green) 0%, var(--tech-blue) 50%, transparent 100%);
    border-radius: 2px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.case-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.95) 100%);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    border: none;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tech-green), var(--tech-blue));
}

.case-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--tech-green) 0%, var(--tech-blue) 100%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.case-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(74, 204, 154, 0.25);
}

.case-number {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--tech-blue);
    margin-bottom: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.case-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--tech-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-card > p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.case-metrics {
    border-top: 2px solid rgba(74, 204, 154, 0.2);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.metric-value.green {
    background: linear-gradient(135deg, var(--tech-green) 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-value.blue {
    color: var(--tech-dark);
}

@media (max-width: 1200px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-modern h2 {
        font-size: 2rem;
    }
}

/* === VAT Recovery Animated Map === */
.vat-map-container {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.europe-map-svg {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* Europe map country shapes */
.europe-countries {
    opacity: 1;
}

.country-shape {
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.country-shape:hover {
    fill: rgba(74, 204, 154, 0.15);
    stroke: var(--tech-green);
}

.europe-outline {
    opacity: 0.5;
}

.country {
    transition: all 0.3s ease;
}

.country:hover {
    fill: rgba(74, 204, 154, 0.1);
    stroke: var(--tech-green);
}

/* Animated flight routes */
.flight-route {
    stroke-dashoffset: 0;
    animation: dashMove 2s linear infinite;
}

.route-1 { animation-delay: 0s; }
.route-2 { animation-delay: 0.4s; }
.route-3 { animation-delay: 0.8s; }
.route-4 { animation-delay: 1.2s; }
.route-5 { animation-delay: 1.6s; }

@keyframes dashMove {
    0% { stroke-dashoffset: 24; }
    100% { stroke-dashoffset: 0; }
}

/* Airport markers pulse */
.airport-marker {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform-origin: center;
        opacity: 1;
    }
    50% { 
        opacity: 0.7;
        filter: drop-shadow(0 0 8px rgba(74, 204, 154, 0.8));
    }
}

.airport-marker:nth-child(odd) { animation-delay: 0.3s; }
.airport-marker:nth-child(even) { animation-delay: 0.6s; }

/* VAT Labels - Interactive version (hidden by default) */
.vat-map-container.world-map .vat-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    visibility: hidden;
    border: none;
    border-top: 4px solid var(--tech-green);
    cursor: default;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    backdrop-filter: blur(10px);
    text-align: center;
    pointer-events: none;
}

.vat-map-container.world-map .vat-label.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.vat-map-container.world-map .vat-label::after {
    display: none;
}

.vat-label-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.vat-route {
    font-size: 0.7rem;
    color: var(--tech-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.vat-map-container.world-map .vat-text {
    font-size: 0.6rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.vat-map-container.world-map .vat-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--tech-dark);
    line-height: 1;
}

/* Route groups - clickable */
.route-group {
    cursor: pointer;
    transition: all 0.3s ease;
}

.route-group:hover .intercontinental-route {
    stroke-width: 4;
    filter: drop-shadow(0 0 8px rgba(74, 204, 154, 0.6));
}

.route-group:hover .airport-marker {
    transform-origin: center;
    filter: drop-shadow(0 0 10px rgba(74, 204, 154, 0.8));
}

.route-group.active .intercontinental-route {
    stroke-width: 4;
    stroke: var(--tech-green) !important;
    filter: drop-shadow(0 0 12px rgba(74, 204, 154, 0.8));
}

/* Map instruction */
.map-instruction {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 32, 44, 0.85);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.4s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.map-instruction .instruction-icon {
    font-size: 1rem;
}

.map-instruction:hover {
    background: rgba(26, 32, 44, 0.95);
    transform: translateX(-50%) scale(1.02);
}

/* Position labels around the map - legacy */
.label-1 { top: 15%; left: 5%; animation-delay: 0.2s; }
.label-2 { top: 35%; left: 8%; animation-delay: 0.4s; }
.label-3 { top: 25%; right: 10%; animation-delay: 0.6s; }
.label-4 { top: 55%; left: 5%; animation-delay: 0.8s; }
.label-5 { bottom: 20%; left: 25%; animation-delay: 1s; }
.label-6 { top: 8%; right: 25%; animation-delay: 1.2s; }
.label-7 { bottom: 25%; right: 8%; animation-delay: 1.4s; }

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover effect on labels */
.vat-label:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 204, 154, 0.3);
    border-left-color: var(--tech-green);
    z-index: 15;
}

.vat-label:hover::after {
    background: var(--tech-blue);
    transform: rotate(15deg) scale(1.1);
}

.vat-label:hover .vat-amount {
    color: var(--tech-green);
    transform: scale(1.02);
}

.vat-label:hover .vat-text {
    color: var(--tech-dark);
}

@media (max-width: 768px) {
    .vat-map-container {
        min-height: 350px;
        padding: 1rem;
    }
    
    .vat-label {
        padding: 0.4rem 0.5rem;
    }
    
    .vat-amount {
        font-size: 0.9rem;
    }
    
    .vat-text {
        font-size: 0.55rem;
    }
}

/* === World Map with Intercontinental Flights - Real Coordinates === */
.vat-map-container.world-map {
    min-height: 400px;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f4f8 100%);
    overflow: hidden;
}

.world-map-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    opacity: 0.35;
    filter: grayscale(30%) contrast(0.9);
}

.flight-routes-svg {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: 2;
}

/* City labels on map */
.city-label {
    font-size: 2.2px;
    font-weight: 600;
    fill: #1a202c;
    text-anchor: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.origin-label {
    fill: #4acc9a;
}

.dest-label {
    fill: #4a90e2;
}

.route-group:hover .city-label,
.route-group.active .city-label {
    opacity: 1;
}

/* Intercontinental flight routes */
.intercontinental-route {
    stroke-dashoffset: 0;
    animation: flyRoute 4s linear infinite;
    filter: drop-shadow(0 0.5px 2px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.route-1 { animation-delay: 0s; }
.route-2 { animation-delay: 0.7s; }
.route-3 { animation-delay: 1.4s; }
.route-4 { animation-delay: 2.1s; }
.route-5 { animation-delay: 2.8s; }
.route-6 { animation-delay: 3.5s; }

@keyframes flyRoute {
    0% { stroke-dashoffset: 12; }
    100% { stroke-dashoffset: 0; }
}

/* Route group interactions */
.route-group {
    cursor: pointer;
    transition: all 0.3s ease;
}

.route-group:hover .intercontinental-route,
.route-group.active .intercontinental-route {
    stroke-width: 1.2 !important;
    filter: drop-shadow(0 0 4px rgba(74, 204, 154, 0.8));
}

.route-group:hover .airport-marker,
.route-group.active .airport-marker {
    filter: drop-shadow(0 0 6px rgba(74, 204, 154, 0.9));
}

.route-group.active .intercontinental-route {
    stroke: #4acc9a !important;
}

/* Origin markers (European airports) */
.airport-marker.origin {
    animation: pulseOrigin 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(74, 204, 154, 0.6));
    transition: all 0.3s ease;
}

@keyframes pulseOrigin {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Destination markers */
.airport-marker.destination {
    animation: pulseDestination 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(74, 144, 226, 0.5));
}

@keyframes pulseDestination {
    0%, 100% { 
        r: 6;
        opacity: 1;
    }
    50% { 
        r: 8;
        opacity: 0.7;
    }
}

/* World map VAT label positions - aligned with destination markers */
.vat-map-container.world-map .vat-label {
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.vat-map-container.world-map .vat-label:hover {
    transform: scale(1.18) translateY(-4px);
    box-shadow: 0 10px 30px rgba(74, 204, 154, 0.35);
    z-index: 20;
}

.vat-map-container.world-map .vat-label:hover .vat-amount {
    color: var(--tech-green);
}

/* Precise positioning near destination markers - spread out to show routes */
.label-ny { top: 25%; left: 3%; animation-delay: 0.2s; }       /* New York - top left */
.label-miami { top: 52%; left: 5%; animation-delay: 0.4s; }    /* Miami - mid left */
.label-sp { bottom: 5%; left: 18%; animation-delay: 0.6s; }    /* São Paulo - bottom left */
.label-dubai { top: 50%; right: 22%; animation-delay: 0.8s; }  /* Dubai - mid right */
.label-sing { bottom: 18%; right: 3%; animation-delay: 1s; }   /* Singapore - bottom right */
.label-tokyo { top: 28%; right: 2%; animation-delay: 1.2s; }   /* Tokyo - top right */

@media (max-width: 768px) {
    .vat-map-container.world-map {
        min-height: 380px;
    }
    
    .world-map-bg {
        width: 120%;
    }
    
    .vat-map-container.world-map .vat-label {
        padding: 0.25rem 0.4rem;
    }
    
    .vat-map-container.world-map .vat-label::after {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .vat-map-container.world-map .vat-amount {
        font-size: 0.95rem;
    }
    
    .vat-map-container.world-map .vat-text {
        font-size: 0.5rem;
    }
    
    .label-ny { top: 22%; left: 2%; }
    .label-sp { bottom: 5%; left: 15%; }
    .label-dubai { top: 40%; right: 18%; }
    .label-miami { top: 42%; left: 5%; }
    .label-sing { bottom: 22%; right: 2%; }
    .label-tokyo { top: 25%; right: 2%; }
}

/* === Modern Products Carousel (Infinite) === */
.products-carousel-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
    position: relative;
    overflow: hidden;
}

.products-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 204, 154, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.carousel-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.carousel-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.products-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 70px;
    overflow: hidden;
}

.products-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.product-carousel-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.product-carousel-card:hover {
    transform: translateY(-10px);
    border-color: var(--tech-green);
    box-shadow: 0 25px 50px rgba(74, 204, 154, 0.2);
}

.product-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tech-green), var(--tech-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-carousel-card:hover::before {
    opacity: 1;
}

.product-card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-carousel-card:hover .product-card-image-wrapper img {
    transform: scale(1.1);
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--tech-green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-body {
    padding: 2rem;
}

.product-card-spec {
    display: inline-block;
    background: rgba(74, 204, 154, 0.15);
    color: var(--tech-green);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.product-card-body p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tech-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card-link:hover {
    gap: 1rem;
}

.product-card-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.product-card-link:hover svg {
    transform: translateX(5px);
}

/* Carousel Navigation */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav-btn:hover {
    background: var(--tech-green);
    border-color: var(--tech-green);
}

.carousel-nav-btn.prev {
    left: 0;
}

.carousel-nav-btn.next {
    right: 0;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--tech-green);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .product-carousel-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .products-carousel-section {
        padding: 3rem 0;
    }
    
    .carousel-header h2 {
        font-size: 2rem;
    }
    
    .products-carousel-wrapper {
        padding: 0 50px;
    }
    
    .product-carousel-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* === Products Carousel Light Theme === */
.products-carousel-section.light-theme {
    background: white !important;
}

.products-carousel-section.light-theme::before {
    display: none;
}

.products-carousel-section.light-theme .carousel-header h2 {
    color: var(--tech-dark);
}

.products-carousel-section.light-theme .carousel-header p {
    color: #64748b;
}

.products-carousel-section.light-theme .product-carousel-card {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.08);
}

.products-carousel-section.light-theme .product-carousel-card:hover {
    border-color: var(--tech-blue);
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.15);
}

.products-carousel-section.light-theme .product-card-body h3 {
    color: var(--tech-dark);
}

.products-carousel-section.light-theme .product-card-body p {
    color: #64748b;
}

.products-carousel-section.light-theme .product-feature-tag {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.2);
    color: var(--tech-blue);
}

.products-carousel-section.light-theme .carousel-nav-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--tech-dark);
}

.products-carousel-section.light-theme .carousel-nav-btn:hover {
    background: var(--tech-blue);
    border-color: var(--tech-blue);
    color: white;
}

.products-carousel-section.light-theme .carousel-dot {
    background: rgba(0, 0, 0, 0.15);
}

.products-carousel-section.light-theme .carousel-dot.active {
    background: var(--tech-blue);
}

/* Light theme - Diagonal cut badges */
.products-carousel-section.light-theme .product-card-badge {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 30%);
    border-radius: 0;
}

/* === Products Carousel Military Theme === */
.products-carousel-section.military-theme {
    background: #e8eaed !important;
    padding-top: 8rem;
    padding-bottom: 0;
    position: relative;
    z-index: 5;
}

.products-carousel-section.military-theme::before {
    display: none;
}

.products-carousel-section.military-theme .products-carousel-wrapper {
    padding-bottom: 6rem;
    padding-top: 3rem;
}

.products-carousel-section.military-theme .carousel-header h2 {
    color: #1f2937;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.products-carousel-section.military-theme .carousel-header p {
    color: #374151;
}

.products-carousel-section.military-theme .product-carousel-card {
    background: #111318;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    /* Removed clip-path to allow box-shadow to work properly */
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.25);
    position: relative;
    z-index: 10;
    transition: all 0.4s ease;
    overflow: hidden;
}

.products-carousel-section.military-theme .product-carousel-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.5);
}

.products-carousel-section.military-theme .product-carousel-card::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.products-carousel-section.military-theme .product-card-image-wrapper {
    border-radius: 8px 8px 0 0;
}

.products-carousel-section.military-theme .product-card-badge {
    background: #dc2626;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 30%);
    border-radius: 0;
}

.products-carousel-section.military-theme .product-card-spec {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-radius: 0;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.products-carousel-section.military-theme .product-card-body h3 {
    color: white;
}

.products-carousel-section.military-theme .product-card-body p {
    color: rgba(255, 255, 255, 0.65);
}

.products-carousel-section.military-theme .product-feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.products-carousel-section.military-theme .product-card-link {
    color: #60a5fa;
}

.products-carousel-section.military-theme .product-card-link:hover {
    color: #93c5fd;
}

.products-carousel-section.military-theme .carousel-nav-btn {
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 0;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    position: absolute;
    z-index: 10;
}

.products-carousel-section.military-theme .carousel-nav-btn:hover {
    background: #3b82f6;
    border-color: #3b82f6;
}

.products-carousel-section.military-theme .carousel-dot {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0;
    width: 30px;
    height: 4px;
}

.products-carousel-section.military-theme .carousel-dot.active {
    background: #3b82f6;
}
