/* Contact page — glassmorphism layout aligned to index theme */

.contact-page {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.contact-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.page-title {
    font-size: clamp(44px, 6.8vw, 90px);
    font-weight: 300;
    letter-spacing: -1.5px;
    color: #fff;
}

.page-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
    margin: 0 auto;
}

.hero-chips {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 0.4px;
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(340px, 1fr) minmax(420px, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
                radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.12), transparent 36%);
    pointer-events: none;
    z-index: 0;
}

.glass-card > * { position: relative; z-index: 1; }

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-header p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-pill {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.contact-method i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(138, 67, 229, 0.45), rgba(168, 85, 247, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
}

.contact-method a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.contact-method small {
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

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

.form-label {
    font-size: 14px;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.8);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: all 0.25s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(168, 85, 247, 0.7);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.18);
}

.form-select option {
    background: #2a0d47;
    color: #fff;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.price-display {
    margin-top: 8px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(138, 67, 229, 0.28), rgba(168, 85, 247, 0.32));
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
}

.price-display.show {
    transform: translateY(0);
    opacity: 1;
}

.price-text { color: rgba(255, 255, 255, 0.8); font-size: 15px; }
.price-amount { font-size: 34px; font-weight: 700; color: #fff; }
.price-period { color: rgba(255, 255, 255, 0.7); font-size: 14px; }

.send-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, rgba(138, 67, 229, 0.5), rgba(168, 85, 247, 0.55));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(138, 67, 229, 0.32);
}

.send-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(138, 67, 229, 0.4);
}

.send-button:active { transform: translateY(0); }

.form-footnote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
}

@media (max-width: 980px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-page { padding-bottom: 40px; }
}

@media (max-width: 640px) {
    .glass-card { padding: 24px; }
    .page-title { font-size: clamp(36px, 9vw, 64px); }
    .contact-page { padding: 10px 0 32px; }
}
