@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, rgb(84, 192, 255) 0%, rgb(32, 44, 171) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, rgb(84, 192, 255) 0%, rgb(32, 44, 171) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(84, 192, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(84, 192, 255, 0.2);
    border-color: rgba(84, 192, 255, 0.3);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 192, 255, 0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

html {
    scroll-behavior: smooth;
}

.logo-text {
    background: linear-gradient(135deg, rgb(84, 192, 255) 0%, rgb(32, 44, 171) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2rem;
}

/* Contact Hero Specific Styles */
.contact-hero-bg {
    background: linear-gradient(135deg, rgba(84, 192, 255, 0.9) 0%, rgba(32, 44, 171, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(84, 192, 255, 0.1);
}

.office-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(84, 192, 255, 0.2);
}

.faq-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(84, 192, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(84, 192, 255, 0.3);
    box-shadow: 0 5px 15px rgba(84, 192, 255, 0.1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.active {
    max-height: 200px;
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(84, 192, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.success-message {
    animation: slideInFromTop 0.5s ease;
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-method {
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: scale(1.05);
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, rgb(84, 192, 255), rgb(32, 44, 171));
}

.timeline-item:last-child::before {
    display: none;
}

.working-hours {
    background: linear-gradient(135deg, rgba(84, 192, 255, 0.1) 0%, rgba(32, 44, 171, 0.1) 100%);
}