.contact-us{
    margin-top: 12rem;
    background-color: rgb(18, 18, 18);
    min-height: 70vh;
}

.contact-us h1 {
    color: #ffffff;
}

.contact-us .lead {
    color: #cccccc;
}

.contactcard{
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contactcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

.contactcard h2 {
    color: #ffffff;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #ffffff;
    font-size: 1.3rem;
}

.contact-details p {
    color: #cccccc;
}

.contact-details .text-muted {
    color: #999999 !important;
}

.contact-details a {
    color: #dc3545;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff4757;
}

.contact-details .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Light Mode Styles */
.light-mode .contact-us {
    background-color: #f8f9fa;
}

.light-mode .contact-us h1 {
    color: #333333;
}

.light-mode .contact-us .lead {
    color: #666666;
}

.light-mode .contactcard {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.light-mode .contactcard:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.light-mode .contactcard h2 {
    color: #333333;
}

.light-mode .contact-details h4 {
    color: #333333;
}

.light-mode .contact-details p {
    color: #666666;
}

.light-mode .contact-details .text-muted {
    color: #999999 !important;
}

.light-mode .contact-icon-wrapper {
    background-color: rgba(220, 53, 69, 0.15);
}

.light-mode .contact-details .border-top {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.light-mode .map-container {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .contact-us {
        margin-top: 10rem;
    }
    
    .map-container {
        min-height: 400px !important;
    }
    
    .map-container iframe {
        min-height: 400px !important;
    }
}