.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;
}

/* Main Form Container */
.contact-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    animation: slideInLeft 0.8s ease-out;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Fill the column height */
}

/* Form Styles to Fill Height */
#contactForm {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#contactForm .form-group:has(textarea) {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#contactForm textarea {
    flex-grow: 1;
    min-height: 150px;
    /* Minimum height for usability */
    height: 100%;
}

.contact-info 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);
}

/* Modern Map & Info Section */
.section-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
}

/* New Action Grid for Phone/Email */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

.action-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.action-card .icon-box {
    margin: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
}

.action-card h3 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.action-card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    word-break: break-all;
}

/* Distinct Hover Effects */
.action-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: #fff;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.action-card:hover h3,
.action-card:hover p {
    color: #000;
}

.action-card:hover .icon-box {
    background: #000;
    color: #fff;
}

.action-card:hover .icon-box i {
    color: #fff;
}


/* Existing Info Section (Location) */
.company-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-info h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    border-left: 4px solid #fff;
    padding-left: 15px;
}

.info-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card:not(.non-interactive):hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-box i {
    color: #fff;
    font-size: 1.2rem;
}

.info-card:hover .icon-box {
    background: #fff;
    color: #000;
}

.info-card:hover .icon-box i {
    color: #000;
}

.text-box h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.text-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.4;
}

.text-box .small.text-muted {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 3px;
}

.map-container {
    width: 100%;
    min-height: 450px;
    /* Ensure map has height */
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.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;
    }
}