/*--------------------------------------------------------------
# Contact Simple
--------------------------------------------------------------*/
.contact-simple {
    position: relative;
    display: block;
    padding: 80px 0;
    background: #f8f9fa;
    z-index: 1;
}

.contact-simple__content {
    margin-top: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gorent-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(var(--gorent-base-rgb), 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--gorent-base);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(var(--gorent-base-rgb), 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: rgba(var(--gorent-base-rgb), 0.2);
    transform: scale(1.05);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gorent-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gorent-black);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-btn--primary {
    background: var(--gorent-base);
    color: var(--gorent-white);
    border-color: var(--gorent-base);
}

.contact-btn--primary:hover {
    background: var(--gorent-black);
    color: var(--gorent-white);
    border-color: var(--gorent-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-btn--secondary {
    background: transparent;
    color: var(--gorent-base);
    border-color: var(--gorent-base);
}

.contact-btn--secondary:hover {
    background: var(--gorent-base);
    color: var(--gorent-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-simple {
        padding: 60px 0;
    }

    .contact-simple__content {
        margin-top: 40px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .contact-info-card {
        padding: 18px;
    }

    .contact-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .contact-simple {
        padding: 50px 0;
    }

    .contact-simple__content {
        margin-top: 30px;
    }

    .contact-info-card {
        padding: 16px;
        gap: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-label {
        font-size: 13px;
    }

    .contact-value {
        font-size: 15px;
    }

    .contact-buttons {
        gap: 15px;
    }

    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contact-simple {
        padding: 40px 0;
    }

    .contact-info-cards {
        gap: 12px;
        margin-bottom: 25px;
    }

    .contact-info-card {
        padding: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Large Monitors */
@media (min-width: 1400px) {
    .contact-simple {
        padding: 100px 0;
    }

    .contact-simple__content {
        margin-top: 60px;
    }

    .contact-info-cards {
        gap: 25px;
        margin-bottom: 50px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-label {
        font-size: 15px;
    }

    .contact-value {
        font-size: 18px;
    }

    .contact-btn {
        padding: 18px 35px;
        font-size: 17px;
    }
}

/* Animation */
.contact-info-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-card:nth-child(3) { animation-delay: 0.3s; }
.contact-info-card:nth-child(4) { animation-delay: 0.4s; }

.contact-btn {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}