 :root {
            --primary: #002366; /* Navy blue */
            --secondary: #BF0A30; /* US red */
            --accent: #FFD700; /* Gold */
            --light: #f8f9fa;
            --dark: #212529;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 35, 102, 0.8), rgba(0, 35, 102, 0.8)), 
                        url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            color: white;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
        }
        
        .btn-outline-light:hover {
            color: var(--primary);
        }
        
        
        
        .flag-icon {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border: 2px solid white;
        }
        
        .benefit-card {
            transition: transform 0.3s;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .world-cup-badge {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 60px;
            height: 60px;
            z-index: 10;
        }
        
        @media (max-width: 768px) {
            .timeline::before {
                left: 31px;
            }
        }
        /* Animation Classes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes colorChange {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Elements */
.hero-section {
    animation: pulse 8s infinite ease-in-out;
}

.world-cup-badge {
    animation: float 4s ease-in-out infinite;
}

.flag-icon:hover {
    animation: shake 0.5s ease-in-out;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary), #d4002a, var(--secondary));
    background-size: 200% 200%;
    animation: colorChange 4s ease infinite;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(191, 10, 48, 0.3);
}

.benefit-card .fa-2x {
    transition: all 0.3s ease;
}

.benefit-card:hover .fa-2x {
    transform: rotate(15deg) scale(1.2);
    color: var(--accent) !important;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    animation: float 3s ease-in-out infinite;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hover Effects */
.service-icon {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.service-icon:hover {
    transform: rotateY(15deg) scale(1.1);
}

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.animated-underline:hover::after {
    width: 100%;
}

/* Confetti Button */
.confetti-btn {
    position: relative;
    overflow: hidden;
}

.confetti-btn::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, transparent 20%, var(--accent) 20%, transparent 21%),
                radial-gradient(circle, transparent 20%, var(--accent) 20%, transparent 21%);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.confetti-btn:hover::after {
    opacity: 0.3;
    animation: confetti 0.5s linear infinite;
}

@keyframes confetti {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 20px 20px, 40px 40px; }
}
/* Ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Expanded WhatsApp options */
.wa-options.expanded {
    width: 220px !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}
.floating-football {
    will-change: transform;
}
.reduce-motion * {
    animation: none !important;
}

 .hero-section {
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.85) 0%, rgba(191, 10, 48, 0.75) 100%), 
                url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 100,100 0,100 Z" fill="none" stroke="white" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
    background-size: 40px 40px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero-section p.lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255,255,255,0.2);
    }
    100% {
        text-shadow: 0 0 20px rgba(255,255,255,0.4), 
                     0 0 30px rgba(255,215,0,0.2);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating football animation */
.floating-football {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url('https://cdn-icons-png.flaticon.com/512/53/53283.png') no-repeat center center;
    background-size: contain;
    animation: float 4s ease-in-out infinite;
    opacity: 0.7;
    z-index: 1;
}

.floating-football:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-football:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    width: 60px;
    height: 60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p.lead {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-football {
        display: none;
    }
}

/* Flags Section Styles */
.flag-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.flag-circle:nth-child(1) {
    top: 20%;
    left: 10%;
}

.flag-circle:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

/* Flag Container */
.flag-container {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.flag-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.flag-container:hover .flag-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Tooltip */
.flag-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.flag-container:hover .flag-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -25px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* FIFA Logo Special Treatment */
.flag-container:nth-child(3) .flag-icon {
    background-color: white;
    padding: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .flag-icon {
        width: 80px;
        height: 80px;
    }
    
    .flag-connector {
        display: none;
    }
    
    .flag-circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .flag-icon {
        width: 60px;
        height: 60px;
    }
    
    .flag-tooltip {
        font-size: 0.6rem;
        bottom: -20px;
    }
    
    .flag-container:hover .flag-tooltip {
        bottom: -15px;
    }
}

/* Services Section Styles */
#services {
    background-color: #f8f9fa;
}

.services-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.services-circle:nth-child(1) {
    top: 10%;
    left: -50px;
}

.services-circle:nth-child(2) {
    bottom: 10%;
    right: -50px;
    animation-delay: 2s;
}

/* Service Card Styles */
.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon-container {
    position: relative;
    padding: 30px 0 20px;
    text-align: center;
}

.service-icon-bg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

.service-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 3px 30px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.service-content {
    padding: 0 25px 25px;
    flex-grow: 1;
}

.service-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.service-features {
    background: rgba(0,35,102,0.03);
    padding: 15px;
    border-radius: 8px;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--secondary);
    margin-right: 8px;
    margin-top: 3px;
    font-size: 0.8rem;
}

.service-cta {
    padding: 0 25px 25px;
    text-align: center;
}

.btn-service {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white !important;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,35,102,0.2);
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
}

.btn-service:hover::before {
    left: 100%;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hover Effects */
.service-card:hover .service-icon-bg {
    transform: scale(1.1);
    background: rgba(0,35,102,0.1);
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
    color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .services-circle {
        width: 200px;
        height: 200px;
    }
    
    .service-icon-bg {
        width: 80px;
        height: 80px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-badge {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-ribbon {
        top: 15px;
        right: -35px;
        font-size: 0.6rem;
    }
}

/* Process Section Styles */
.process-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.process-circle:nth-child(1) {
    top: 10%;
    left: -50px;
}

.process-circle:nth-child(2) {
    bottom: 10%;
    right: -50px;
    animation-delay: 2s;
}

/* Timeline Styles */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    z-index: 1;
}

/* Process Card Styles */
.process-card {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    transition: all 0.3s ease;
    z-index: 2;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,35,102,0.03), rgba(191,10,48,0.03));
    z-index: -1;
}

.process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,35,102,0.2);
}

.process-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.process-description {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.process-details {
    background: rgba(0,35,102,0.03);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.process-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.process-details li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.process-details i {
    color: var(--secondary);
    margin-right: 8px;
    margin-top: 3px;
    font-size: 0.8rem;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    z-index: 3;
}

.process-success {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .timeline::before {
        left: 40px;
    }
    
    .process-card {
        padding: 25px;
    }
    
    .process-arrow {
        right: -25px;
    }
}

@media (max-width: 991px) {
    .timeline::before {
        display: none;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .process-circle {
        width: 200px;
        height: 200px;
    }
    
    .process-card {
        padding: 20px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

/* Pricing Section Styles */
#tarifs {
    background-color: #f8f9fa;
}

.pricing-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
    color: whitesmoke
}

.pricing-circle:nth-child(2) {
    animation-delay: 2s;
}

/* Card Styles */
.hover-effect {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--secondary), #d4002a) !important;
}

/* Popular Package Styles */
.popular {
    border: 2px solid var(--secondary);
    margin-top: -10px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    background-color: var(--accent);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.savings-badge {
    font-size: 0.9rem;
}

/* Price Display Styles */
.display-4 {
    font-size: 2.5rem;
    color: var(--primary);
}

.popular .display-4 {
    color: var(--primary);
}

/* List Item Styles */
.list-unstyled li {
    transition: all 0.3s ease;
}

.list-unstyled li:hover {
    transform: translateX(5px);
}

/* Button Styles */
.choose-pack {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.choose-pack:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.choose-pack::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, transparent 20%, rgba(255,215,0,0.3) 20%, transparent 21%);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.choose-pack:hover::after {
    opacity: 0.5;
    animation: confetti 0.5s linear infinite;
}

@keyframes confetti {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 20px 20px, 40px 40px; }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .popular {
        margin-top: 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-circle {
        width: 150px;
        height: 150px;
    }
}

/* FAQ Section Styles */
#faq {
    position: relative;
}

.faq-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.faq-circle:nth-child(2) {
    animation-delay: 2s;
}

/* Accordion Styles */
.accordion-button {
    font-weight: 500;
    background-color: white;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(0, 35, 102, 0.05);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 35, 102, 0.1);
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
}

/* Progress bar animation */
@keyframes progressAnimation {
    0% { background-position: 1rem 0; }
    100% { background-position: 0 0; }
}

.progress-bar-animated {
    animation: progressAnimation 1s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-circle {
        width: 200px;
        height: 200px;
    }
    
    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* Contact Section Styles */
#contact {
    background-color: #f8f9fa;
    position: relative;
}

.contact-icon {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
    background-color: rgba(0, 35, 102, 0.2) !important;
}

.social-icons i {
    transition: all 0.3s ease;
}

.social-icons i:hover {
    transform: translateY(-5px);
}

/* Floating circles decoration */
.floating-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(2) {
    animation-delay: 2s;
}

/* Form styles */
.form-floating>label {
    color: #6c757d;
    transition: all 0.3s ease;
}

.form-control:focus~label,
.form-control:not(:placeholder-shown)~label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--primary);
    background: white;
    padding: 0 5px;
}

.form-control {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    border-bottom: 1px solid #ced4da;
    padding-left: 0;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pe-lg-5 {
        padding-right: 0 !important;
        margin-bottom: 2rem;
    }
    
    .floating-circle {
        display: none;
    }
}

/* Add will-change to animated elements */
.floating-football, .service-card, .process-card {
    will-change: transform;
}