.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

.glow-orb-1 {
    top: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background: var(--cyan-glow);
}

.glow-orb-2 {
    top: 160px;
    right: 80px;
    width: 320px;
    height: 320px;
    background: var(--purple-glow);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.main-content {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.top-header {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
}
.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    text-align: center;
    background: linear-gradient(to right, var(--cyan-primary), var(--cyan-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-hero {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cyan-primary);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.contact-icon i {
    color: var(--cyan-primary);
    font-size: 1.5rem;
}

.contact-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-content p {
    color: #d1d5db;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-content small {
    color: #9ca3af;
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d1d5db;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.875rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--cyan-primary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-control::placeholder {
    color: #6b7280;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, var(--cyan-primary), #2563eb);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.btn-submit:hover {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.social-link:hover {
    background: var(--cyan-primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.map-container {
    background: rgba(6, 182, 212, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #9ca3af;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--cyan-primary);
    margin-bottom: 1rem;
}

.hours-grid {
    display: grid;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.day-name {
    font-weight: 600;
    color: white;
}

.hours-time {
    color: #9ca3af;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.1);
}

.faq-answer {
    padding: 0 1rem 1rem 1rem;
    color: #d1d5db;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .map-placeholder {
        height: 400px;
    }
}
@media(max-width: 768px){
    .main-content {
        margin-top: 3rem;
    }
}