/* Variables */
:root {
    --primary-blue: #1e40af;
    --accent-blue: #2563eb;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
    --section-padding: 80px 0;
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Set Inter font for navigation */
.navbar-desktop, .navbar-mobile {
    font-family: 'Inter', sans-serif;
}

/* Service Pages */
.services-main {
    min-height: calc(100vh - 47px);
}

.service-page {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    min-height: calc(100vh - 47px);
    pointer-events: none;
}

#individuals {
    background-color: #011E41;
    padding: 120px 0;
    margin-top: 0;
}

#business {
    background-color: #011E41;
    padding: 120px 0;
    margin-top: 0;
}

#crypto {
    background-color: #1e3a8a;
    padding: 120px 0;
    margin-top: 0;
}

/* Region Menu */
.region-menu-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.region-menu {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 8px;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.region-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.region-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 100px;
}

.region-menu-btn i {
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.region-menu-btn:hover {
    color: white;
    transform: translateY(-2px);
}

.region-menu-btn:hover i {
    transform: translateY(-2px);
}

.region-menu-btn:hover::before {
    opacity: 0.15;
}

.region-menu-btn:active {
    transform: translateY(1px) scale(0.98);
}

.region-menu-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.region-menu-btn.active i {
    transform: translateY(-1px);
}

/* Portrait Cards */
.portrait-container {
    display: none;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 40px;
    position: relative;
    opacity: 0;
    transition: opacity 0.4s ease;
    perspective: 1000px;
    will-change: transform, opacity;
    justify-content: center;
}

.portrait-container .portrait-card {
    flex: 0 0 calc(33.333% - 27px);
    margin-bottom: 40px;
    max-width: 380px;
}

.portrait-container.active {
    display: flex;
    opacity: 1;
}

.portrait-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(1, 30, 65, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    box-shadow: 
        0 25px 50px rgba(1, 30, 65, 0.1),
        0 15px 30px rgba(1, 30, 65, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(0);
    opacity: 1;
    will-change: transform, opacity;
    animation: cardAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.portrait-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top center,
        rgba(255, 255, 255, 0.15),
        transparent 70%
    );
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.portrait-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.05) 50%
    );
    border-radius: 24px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.portrait-image {
    height: 220px;
    background: rgba(64, 179, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portrait-image i {
    font-size: 70px;
    color: #40B3E0;
    filter: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    opacity: 1;
}

.portrait-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-family: 'Inter', sans-serif;
}

.portrait-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #011E41;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 16px;
}

.portrait-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    border-radius: 3px;
    transition: width 0.4s ease;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.service-list li {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 30, 65, 0.8);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #011E41;
    font-size: 18px;
    line-height: 1;
    top: 1px;
}

.portrait-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.portrait-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.portrait-card:hover {
    transform: translateY(-20px);
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.25),
        0 25px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.portrait-card:hover .portrait-image i {
    transform: scale(1.1) rotate(5deg);
    color: #011E41;
}

.portrait-card:hover .portrait-content h3::after {
    width: 60px;
}

.portrait-card:hover .portrait-btn {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.portrait-card:hover .portrait-btn::before {
    transform: translateX(100%) rotate(45deg);
}

@media (max-width: 1200px) {
    .portrait-container {
        gap: 30px;
        padding: 0 30px;
        justify-content: center;
    }
    
    .portrait-container .portrait-card {
        flex: 0 0 calc(33.333% - 20px);
        margin-bottom: 30px;
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .portrait-container .portrait-card {
        flex: 0 0 calc(50% - 15px);
        max-width: 340px;
    }
}

.service-page.active {
    display: block;
        opacity: 1;
    pointer-events: auto;
}

/* Region Selector */
.region-selector {
    display: flex;
    gap: 0.5rem;
    margin: 3rem auto 4rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 5;
    max-width: 95%;
}

.region-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 100px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.region-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.region-btn:hover {
    color: var(--white);
}

.region-btn:hover i {
    transform: translateY(-2px);
}

.region-btn.active {
    background-color: #2563eb;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.region-btn.active i {
    transform: translateY(-2px);
}

/* Region Cards */
.region-card-group {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s var(--transition-bounce);
}

.region-card-group.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

/* Testimonial Cards Grid */
.testimonial-cards-grid {
    position: relative;
    margin: 40px 0;
    width: 100%;
    padding: 0 30px;
}

.region-card-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Testimonial Card New */
.testimonial-card-new {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1200px;
    cursor: pointer;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    margin: 10px;
}

/* Add extra margin to the middle card in each row */
.region-card-group > div:nth-child(3n-1) {
    margin-left: 30px;
    margin-right: 30px;
}

.testimonial-card-new::before,
.testimonial-card-new::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.testimonial-card-new::before {
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.1),
        transparent 70%
    );
    z-index: 1;
}

.testimonial-card-new::after {
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.testimonial-tag {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 20px rgba(37, 99, 235, 0.25),
        0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-tag::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.testimonial-company-logo {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-company-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-company-logo i {
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-body {
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.testimonial-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    position: relative;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

/* Stats removed */

.testimonial-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.btn-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-card::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-left: 3px;
}

.btn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-card:hover::after {
    transform: translateX(5px);
}

/* Card Hover Effects */
.testimonial-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    background: #ffffff;
    border-color: rgba(1, 30, 65, 0.2);
    box-shadow: 
        0 30px 60px rgba(1, 30, 65, 0.15),
        0 20px 40px rgba(1, 30, 65, 0.1),
        0 10px 20px rgba(1, 30, 65, 0.08);
}

.testimonial-card-new:hover::after {
    opacity: 1;
}

.testimonial-card-new:hover .testimonial-company-logo {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.testimonial-card-new:hover .testimonial-company-logo::before {
    opacity: 0.8;
}

.testimonial-card-new:hover .testimonial-company-logo i {
    transform: scale(1.1) rotate(10deg);
    color: #011E41;
    filter: drop-shadow(0 3px 10px rgba(1, 30, 65, 0.3));
}

.testimonial-card-new:hover .testimonial-quote {
    color: #011E41;
    transform: translateY(-2px);
}

/* Stats hover effects removed */

@media (max-width: 1400px) {
    .region-card-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        width: 90%;
    }
    
    /* Reset middle card margin for 2-column layout */
    .region-card-group > div:nth-child(3n-1) {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    /* Add margin to every even card in 2-column layout */
    .region-card-group > div:nth-child(even) {
        margin-left: 30px;
    }
    
    .region-card-group > div:nth-child(odd) {
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .portrait-container {
        gap: 20px;
        padding: 0 20px;
        justify-content: center;
    }

    .portrait-container .portrait-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
        max-width: 380px;
    }
    
    .region-card-group {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        width: 85%;
    }
    
    /* Reset all special margins for mobile */
    .region-card-group > div:nth-child(3n-1),
    .region-card-group > div:nth-child(even),
    .region-card-group > div:nth-child(odd) {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Hero Section */
.hero {
    padding: var(--section-padding);
    background: #1e3a8a;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Services Footer Styles */
.services-footer {
    background: #000000;
    color: var(--white);
    padding: 80px 0 40px;
    overflow: hidden;
    margin: 0;
    width: 100vw;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.services-footer-glow {
    display: none;
}

.services-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.services-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    animation: servicesLogoFloat 6s ease-in-out infinite;
}

@keyframes servicesLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.services-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    animation: servicesLogoShine 3s linear infinite;
}

@keyframes servicesLogoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.services-logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-brand-tagline {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Navigation Section */
.services-footer-nav {
    display: flex;
    gap: 60px;
}

.services-nav-section {
    min-width: 120px;
}

.services-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.services-nav-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 1px;
    animation: servicesExpandLine 1s ease-out 1.2s both;
}

@keyframes servicesExpandLine {
    0% { width: 0; }
    100% { width: 24px; }
}

.services-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-nav-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 4px 0;
    animation: fadeInUp 1s ease-out calc(0.9s + var(--delay, 0)) both;
}

.services-nav-links li:nth-child(1) .services-nav-link { --delay: 0.1s; }
.services-nav-links li:nth-child(2) .services-nav-link { --delay: 0.2s; }
.services-nav-links li:nth-child(3) .services-nav-link { --delay: 0.3s; }

.services-nav-link::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 4px solid var(--primary-blue);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.services-nav-link:hover {
    color: var(--primary-blue);
    transform: translateX(12px);
}

.services-nav-link:hover::before {
    opacity: 1;
}

/* Contact Section */
.services-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.services-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-400);
    animation: fadeInLeft 1s ease-out calc(1.1s + var(--delay, 0)) both;
}

.services-contact-item:nth-child(1) { --delay: 0.1s; }
.services-contact-item:nth-child(2) { --delay: 0.2s; }
.services-contact-item:nth-child(3) { --delay: 0.3s; }

.services-contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 14px;
    transition: all 0.3s ease;
}

.services-contact-item:hover i {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.services-contact-item a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-contact-item:hover a {
    color: var(--primary-blue);
}

/* Footer Bottom */
.services-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.services-copyright span {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.services-certifications {
    display: flex;
    gap: 24px;
}

.services-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: servicesCertFloat calc(4s + var(--delay, 0)) ease-in-out infinite alternate;
}

.services-certifications .services-cert-badge:nth-child(1) { --delay: 0s; }
.services-certifications .services-cert-badge:nth-child(2) { --delay: 2s; }

@keyframes servicesCertFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-4px); }
}

.services-cert-badge:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.services-cert-badge i {
    color: var(--primary-blue);
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .services-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .services-footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-footer-nav {
        flex-direction: column;
        gap: 40px;
    }
    
    .services-footer-contact {
        align-items: flex-start;
    }
    
    .services-footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .services-certifications {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* Container */
.services-footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}