body { font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 100px; }

.hero-bg-image {
    background-image: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.glass-panel {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-details[open] summary svg {
    transform: rotate(180deg);
}

.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-section[open] > summary svg {
    transform: rotate(180deg);
}

.faq-section > summary::-webkit-details-marker {
    display: none;
}

.faq-section[open] > summary ~ * {
    animation: slideDown 0.3s ease-out;
}

.faq-details[open] summary ~ * {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.thankyou-page-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8fafc;
}

.thankyou-card {
    max-width: 640px;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    padding: 3rem;
}
