/* Base Styles */
body {
    background-color: #ffffff;
}

/* Section Styles */
.inquiry-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
}

/* Contact Cards */
.contact-cards {
    min-height: 100%;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #FB3640;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    color: white;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.form-container h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #FB3640;
    transition: width 0.3s ease;
}

.form-container h2:hover::after {
    width: 100px;
}

/* Form Controls */
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FB3640;
    box-shadow: 0 0 0 0.25rem rgba(251, 54, 64, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255, 255, 255, 0.9);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: #FB3640;
    border-color: #FB3640;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

.form-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Button Styles */
.btn-primary {
    background-color: #FB3640;
    border-color: #FB3640;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: #FB3640;
    color: #FB3640;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 54, 64, 0.4);
}

.btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Map Styles */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.map-info {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.map-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.map-info ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card, .form-container {
    animation: fadeIn 0.6s ease-out forwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .inquiry-section {
        padding-top: 60px;
    }
    
    .map-info {
        position: static;
        margin-bottom: 1rem;
        border-radius: 15px 15px 0 0;
    }
}

@media (max-width: 768px) {
    .contact-card, .form-container {
        padding: 1.5rem;
    }
    
    .map-container {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .col-6 {
        width: 100%;
    }
    
    .contact-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }
}
