/* Let's Get In Touch Page Styles */

:root {
    --primary-contact: #00d2ff;
    --primary-glow: rgba(0, 210, 255, 0.4);
    --bg-dark-contact: #050505;
    --card-bg-contact: rgba(255, 255, 255, 0.03);
    --border-contact: rgba(255, 255, 255, 0.1);
    --text-dim: #a0a0a0;
    --glass-contact: rgba(255, 255, 255, 0.01);
}

.contact-page {
    background-color: var(--bg-dark-contact);
}

.contact-main {
    padding: 120px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary-contact);
    filter: blur(180px);
    opacity: 0.15;
    border-radius: 50%;
    animation: floatBlob 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -150px;
    left: -150px;
}

.blob-2 {
    bottom: -150px;
    right: -150px;
    background: #8a2be2;
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 450px;
    height: 450px;
    background: #0077ff;
    opacity: 0.1;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.small-container {
    max-width: 650px !important;
    margin: 0 auto;
}

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

.contact-header h1 {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-header h1 .italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--primary-contact);
}

.contact-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Card */
.form-card {
    background: var(--glass-contact);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-contact);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.progress-fill {
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-contact), #8a2be2);
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Steps */
.step {
    display: none;
}

.step.active {
    display: block;
}

.step-header {
    margin-bottom: 2.5rem;
}

.step-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.step-header p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.options-grid.scrollable-small {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 12px;
}

.options-grid.scrollable-small::-webkit-scrollbar {
    width: 4px;
}

.options-grid.scrollable-small::-webkit-scrollbar-thumb {
    background: var(--border-contact);
    border-radius: 10px;
}

.option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-contact);
    border-radius: 20px;
    padding: 1.8rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    color: white;
    position: relative;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-contact);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.option-card.active {
    border-color: var(--primary-contact);
    background: rgba(0, 210, 255, 0.08);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.15);
}

.option-card.active::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: var(--primary-contact);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-contact);
}

.option-card.small {
    padding: 1.2rem 1.8rem;
    flex-direction: row;
    align-items: center;
}

.icon-circle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card .label {
    font-size: 1.15rem;
    font-weight: 600;
}

.option-card .desc {
    font-size: 0.95rem;
    color: var(--text-dim);
}

/* Buttons */
.full-width {
    width: 100%;
}

.back-link {
    display: block;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1rem;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    transition: color 0.3s;
}

.back-link:hover {
    color: white;
}

/* Contact Form Internal */
.contact-form-internal {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-contact);
    border-radius: 12px;
    padding: 1.2rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-contact);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.05);
}

/* Success */
.success-content {
    text-align: center;
    padding: 2rem 0;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #050505;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.success-icon-circle i {
    width: 40px;
    height: 40px;
}

.success-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.success-content p {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-main {
        padding: 80px 0 40px;
    }

    .form-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .contact-header {
        margin-bottom: 1.5rem;
    }

    .contact-header p {
        font-size: 0.95rem;
    }

    .step-header {
        margin-bottom: 1.5rem;
    }

    .step-header h2 {
        font-size: 1.3rem;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .option-card {
        padding: 1.2rem;
    }

    .options-grid {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .option-card .label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 60px 0 30px;
    }

    .form-card {
        padding: 1.2rem;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .step-header h2 {
        font-size: 1.2rem;
    }

    .back-link {
        margin-top: 1.5rem;
    }
}