/* ===== BASE STYLES ===== */

a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #cce0ff;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 40px 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.subtitle {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* ===== CONTAINER ===== */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===== LEFT PANEL ===== */
.contact-info {
    flex: 1 1 350px;
    text-align: left;
    color: #fff;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.icon {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.1);
}

.icon img {
    width: 22px;
    height: 22px;
}

.details {
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ===== RIGHT PANEL ===== */
.quote-box {
    flex: 1 1 400px;
    background-color: #fff;
    color: #000;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quote-box h2 {
    margin-top: 0;
    color: #0a56c1;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.quote-box p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ===== REQUIREMENTS BOX ===== */
.requirements {
    background-color: #0a56c1;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.requirements h3 {
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.requirements li img {
    width: 18px;
    height: 18px;
}

/* ===== BUTTON ===== */
.btn {
    display: inline-block;
    text-align: center;
    width: 92%;
    padding: 12px 20px;
    background-color: #0a56c1;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #003e99;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet adjustments */
@media (max-width: 1024px) {
    .contact-section h1 {
        font-size: 2rem;
    }

    .quote-box {
        padding: 25px;
    }

    .contact-info h2 {
        font-size: 1.3rem;
    }
}

/* Mobile view */
@media (max-width: 800px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-info, 
    .quote-box {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .contact-info {
        text-align: left;
    }

    .info-item {
        justify-content: flex-start;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .contact-section h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .quote-box {
        padding: 20px;
    }

    .btn {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }

    .requirements h3 {
        font-size: 1rem;
    }

    .requirements li {
        font-size: 0.85rem;
    }
}
