/* Contact Section Specific Styles */
#contactCard .card-body {
    padding: 0;
    background: linear-gradient(135deg, #e0f7fa 0%, hsl(193, 97%, 53%) 100%);
    font-family: 'Roboto', sans-serif;
}

.contact-container {
    padding: 30px;
    color: #333;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.8s ease-out forwards;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #006064;
    margin: 0;
}

.contact-header .material-icons {
    font-size: 48px;
    color: #00acc1;
    margin-right: 20px;
}

.contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.contact-form .form-label {
    font-weight: 500;
    color: #006064;
}

.contact-form .form-control {
    border: 1px solid #b0bec5;
    border-radius: 8px;
    padding: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #00acc1;
    box-shadow: 0 0 8px rgba(0, 172, 193, 0.3);
}

.contact-form .input-group {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.contact-form .input-group:nth-child(1) { animation-delay: 0.2s; }
.contact-form .input-group:nth-child(2) { animation-delay: 0.4s; }
.contact-form .input-group:nth-child(3) { animation-delay: 0.6s; }
.contact-form .input-group:nth-child(4) { animation-delay: 0.8s; }

.contact-form .input-group-text {
    background: #fff;
    border: 1px solid #b0bec5;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #006064;
}

.contact-form .btn-primary {
    background: #00acc1;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #00838f;
    transform: translateY(-2px);
}

.contact-details {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.contact-details h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #006064;
    margin-bottom: 20px;
}

.contact-details ul {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #424242;
}

.contact-details li i {
    font-size: 24px;
    color: #00acc1;
    margin-right: 15px;
}

.contact-details a {
    color: #00acc1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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