/* Contact Form Styles */
#contactForm {
    display: block;
}

.contact-form-container {
    margin-bottom: 40px;
    position: relative;
}

.contact-form {
    background: rgba(45, 27, 78, 0.2);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(138, 99, 210, 0.2);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #f8f9fa;
    font-size: 0.95em;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc107;
    font-size: 1.1em;
    pointer-events: none;
    transition: all 0.3s ease;
}

.textarea-wrapper .input-icon {
    top: 25px;
    transform: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 10px;
    border: 1px solid rgba(138, 99, 210, 0.3);
    background: rgba(45, 27, 78, 0.3);
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.submit-button, .reset-button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-button {
    background: linear-gradient(135deg, #3f51b5, #7986cb);
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.reset-button {
    background: rgba(45, 27, 78, 0.3);
    color: #f8f9fa;
    border: 1px solid rgba(138, 99, 210, 0.3);
}

/* Footer Styles */
footer.glass-footer {
    background: linear-gradient(to bottom, rgba(13, 43, 69, 0.9), rgba(0, 0, 0, 0.9));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    color: #ffffff;
    padding: 30px 0 20px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(138, 99, 210, 0.3);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #7986cb, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(58, 124, 165, 0.3);
}

.footer-tagline {
    color: #f8f9fa;
    font-size: 1.1em;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-nav {
    flex: 1;
    min-width: 200px;
}

.footer-nav h3, .footer-connect h3 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-connect {
    flex: 1;
    min-width: 200px;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}
