.contact-section {
    padding: 80px 0;
    min-height: 100vh;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    font-size: 3rem;
    animation: fadeInUp 1s ease-out;
}

.contact-form {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    animation: slideInLeft 0.8s ease-out;
    color: #fff;
}

.contact-form h2 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    box-shadow: none;
}

.form-control:focus::placeholder {
    color: #fff;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.534);
    border-color: #000000;
    color: #000000;
    padding: 12px 30px;
    border-radius: 30px;
    transition: 600ms;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.534);
    color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
}

.company-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    animation: slideInRight 0.8s ease-out;
}

.company-info h2 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: #fff;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.534);
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
}

.info-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-item p {
    color: inherit;
    margin: 0;
    transition: color 0.3s ease;
}

/* Make the hours info item non-interactive */
.info-item:not(a) {
    cursor: default;
    background: rgba(255, 255, 255, 0.2);
}

.info-item:not(a):hover {
    transform: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
}

.location-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    animation: fadeIn 1s ease-out;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-image:hover img {
    transform: scale(1.05);
}

.location-image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
}

.location-image .overlay h3 {
    margin: 0;
    font-size: 1.5rem;
}

.location-image .overlay p {
    margin: 10px 0 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-image img {
        height: 300px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 20px;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .form-control {
        padding: 10px;
    }
}
