:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #f7931e;
    --dark-orange: #e65100;
    --light-orange: #ff9800;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.contact-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-section {
    background: linear-gradient(135deg, var(--dark-orange), var(--light-orange));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 200px;
    height: 80px;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.content-section {
    padding: 3rem 2rem;
}

.section-title {
    font-size: 1.5rem;
    color: var(--dark-orange);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.5rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.contact-label {
    font-weight: 600;
    color: var(--dark-orange);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.contact-sublabel {
    font-weight: 500;
    color: var(--dark-orange);
    margin: 1rem 0 0.5rem 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.contact-value {
    color: var(--primary-orange);
    font-size: 1rem;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-value:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

.phone-group {
    margin-bottom: 1.2rem;
}

.phone-group:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding: 10px 0;
    }

    .header-section {
        padding: 2rem 1rem;
    }

    .logo-container {
        width: 180px;
        height: 70px;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .contact-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .header-section {
        padding: 1.5rem 0.75rem;
    }

    .logo-container {
        width: 160px;
        height: 65px;
    }

    .content-section {
        padding: 1.5rem 0.75rem;
    }

    .contact-card {
        padding: 1rem;
    }
}