.contact-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(190, 53, 0, 0.1);
    color: #be3500;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-badge i {
    margin-right: 5px;
}


.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.main-title .highlight {
    color: #be3500;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    z-index: 2;
    position: relative;
}

.contact-form-wrapper {
    animation: fadeInRight 0.8s ease-out 0.4s both;
    z-index: 2;
    position: relative;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 137, 190, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0089be, #005f85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: rotate(10deg) scale(1.1);
}

.info-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-image {
    width: 350px;
    position: absolute;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 1001px) {
    .contact-container {
        position: relative;
    }

    .hero-image {
        height: 600px;
        position: absolute;
        top: 40%;
        left: 30%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 137, 190, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0089be;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 137, 190, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #be3500, #d63a00);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(190, 53, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

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

.submit-btn:hover::before {
    left: 100%;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes float {

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

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

/* Mobile styles - below 1001px */
@media (max-width: 1000px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        max-width: 600px;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .info-content {
        text-align: center;
    }

    .hero-image {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 40px auto;
        display: block;
        animation: fadeInUp 0.8s ease-out 0.2s both, float 6s ease-in-out infinite 0.8s;
    }

    .contact-info,
    .contact-form-wrapper {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .info-item {
        padding: 20px;
        margin-bottom: 25px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
   
    .contact-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 1rem;
    }

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

