/* ===================================
   CONTACT PAGE COMPACT STYLES
   =================================== */

/* Hero Banner Section */
.contact-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.35) saturate(1.1);
}

.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(18, 18, 17, 0.85) 0%, 
        rgba(26, 26, 25, 0.75) 50%,
        rgba(249, 183, 0, 0.15) 100%);
    z-index: 1;
}

.contact-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.contact-banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.contact-banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

/* Quick Contact Cards */
.contact-cards-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 3;
    margin-bottom: 4rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card-glass {
    position: relative;
    background: rgba(18, 18, 17, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(249, 183, 0, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
}

.contact-card-glass:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 183, 0, 0.6);
    box-shadow: 0 15px 40px rgba(249, 183, 0, 0.25);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(249, 183, 0, 0.2), rgba(249, 183, 0, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9b700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-card-glass:hover .contact-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(249, 183, 0, 0.3), rgba(249, 183, 0, 0.15));
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.contact-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 2rem 0 4rem;
}

.contact-form-wrapper {
    background: rgba(18, 18, 17, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(249, 183, 0, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}

.form-input-wrapper {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f9b700;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-icon-textarea {
    top: 1.1rem;
    transform: none;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(249, 183, 0, 0.2);
    border-radius: 12px;
    padding: 0.9rem 1rem 0.9rem 3rem;
    font-size: 0.95rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input::placeholder {
    color: rgba(224, 224, 224, 0.35);
}

.form-input:focus {
    outline: none;
    border-color: #f9b700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(249, 183, 0, 0.1);
}

.form-input:focus ~ .form-icon {
    color: #ffc933;
    transform: translateY(-50%) scale(1.05);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23f9b700' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    padding-right: 3rem;
}

.form-select option {
    background: #1a1a19;
    color: #e0e0e0;
    padding: 0.8rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 0.9rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.form-submit-btn {
    background: linear-gradient(135deg, #f9b700 0%, #e0a800 100%);
    border: none;
    border-radius: 12px;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #121211;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-submit-btn:hover::before {
    width: 350px;
    height: 350px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 183, 0, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-banner {
        height: 45vh;
        min-height: 350px;
    }

    .contact-banner-title {
        font-size: 2.2rem;
    }

    .contact-banner-subtitle {
        font-size: 1rem;
    }

    .contact-cards-section {
        margin-top: -50px;
        margin-bottom: 3rem;
    }

    .contact-cards-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form-title {
        font-size: 1.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        min-height: 300px;
    }

    .contact-banner-title {
        font-size: 1.8rem;
    }

    .contact-banner-subtitle {
        font-size: 0.95rem;
    }

    .contact-card-glass {
        padding: 1.2rem;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }

    .form-input {
        padding: 0.85rem 0.9rem 0.85rem 2.8rem;
        font-size: 0.9rem;
    }

    .form-submit-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}
