#preloader{animation:hidePreloader 0.5s ease 2s forwards}@keyframes hidePreloader{to{opacity:0;visibility:hidden;pointer-events:none}}

/* === PROFESSIONAL PROCEDURE PAGE STYLES === */

/* Golden Stats Strip */
.proc-stats {
    background: linear-gradient(135deg, #9B8A5E, #B5A078);
    padding: 0;
    margin: 0;
}
.proc-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
}
.proc-stat-item {
    padding: 1.4rem 0.5rem;
    position: relative;
}
.proc-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.3);
}
.proc-stat-item i {
    display: block;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.4rem;
}
.proc-stat-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.proc-stat-value {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Two-Column Layout */
.proc-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* Main Content Column */
.proc-main h2 {
    color: #3D3530;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.proc-main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C4B590, #9B8A5E);
    border-radius: 2px;
}
.proc-main h3 {
    color: #9B8A5E;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin: 2.5rem 0 1rem;
}
.proc-main p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
}
.proc-main .procedure-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}
.proc-main .procedure-list li {
    padding: 0.85rem 0 0.85rem 2rem;
    position: relative;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #f0ebe0;
    transition: background 0.2s;
}
.proc-main .procedure-list li:hover {
    background: #FEFCF9;
}
.proc-main .procedure-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C4B590;
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}
.proc-main .procedure-list li strong {
    color: #3D3530;
}

/* Sticky Sidebar */
.proc-sidebar {
    position: sticky;
    top: 100px;
}
.proc-booking-card {
    background: linear-gradient(145deg, #3D3530, #4A4038);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    color: #fff;
    box-shadow: 0 10px 40px rgba(61, 53, 48,0.25);
}
.proc-booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #F7F3EA;
}
.proc-booking-card .card-subtitle {
    color: #C4B590;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}
.proc-booking-card .card-divider {
    border: none;
    border-top: 1px solid rgba(196, 181, 144,0.2);
    margin: 1.2rem 0;
}
.proc-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}
.proc-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(196, 181, 144,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4B590;
    font-size: 1rem;
    flex-shrink: 0;
}
.proc-contact-info .label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.proc-contact-info a,
.proc-contact-info span {
    color: #F7F3EA;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    display: block;
}
.proc-contact-info a:hover { color: #C4B590; }
.proc-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.proc-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
    color: #fff;
}
.proc-btn-consult {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #C4B590, #9B8A5E);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin-top: 0.8rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.proc-btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 181, 144,0.35);
    color: #fff;
}

/* Before/After Section */
.proc-ba-section { margin: 2.5rem 0; }
.proc-ba-section h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #C4B590, #9B8A5E);
    border-radius: 2px;
    margin-top: 0.5rem;
}

/* CTA Inline Card */
.proc-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #FEFCF9 0%, #F7F3EA 100%);
    border: 1px solid rgba(196, 181, 144,0.3);
    border-left: 4px solid #C4B590;
    border-radius: 12px;
    margin: 2.5rem 0;
}
.proc-cta-text {
    flex: 1;
}
.proc-cta h2 {
    color: #3D3530;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}
.proc-cta h2::after { display: none; }
.proc-cta p { color: #9B8A5E; margin-bottom: 0; font-size: 0.95rem; }
.proc-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #C4B590, #9B8A5E);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}
.proc-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 181, 144,0.35);
    color: #fff;
}

/* Why Choose Us Cards */
.proc-features {
    margin: 2.5rem 0;
    padding: 3rem 0;
    border-top: 1px solid #f0ebe0;
}
.proc-features h2 { text-align: center; margin-bottom: 2rem; }
.proc-features h2::after { left: 50%; transform: translateX(-50%); }
.proc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.proc-feature-card {
    background: #FEFCF9;
    border: 1px solid #f0ebe0;
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.proc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C4B590, #9B8A5E);
    opacity: 0;
    transition: opacity 0.3s;
}
.proc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(155, 138, 94,0.12);
    border-color: #C4B590;
}
.proc-feature-card:hover::before { opacity: 1; }
.proc-feature-card i {
    font-size: 1.8rem;
    color: #C4B590;
    margin-bottom: 1rem;
    display: block;
}
.proc-feature-card h4 {
    color: #3D3530;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.proc-feature-card p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Related Procedures */
.proc-related { margin: 2rem 0; padding-top: 2rem; border-top: 1px solid #f0ebe0; }
.proc-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.proc-related-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid #f0ebe0;
    position: relative;
    overflow: hidden;
}
.proc-related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C4B590, #9B8A5E);
    opacity: 0;
    transition: opacity 0.3s;
}
.proc-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(155, 138, 94,0.12);
    border-color: #C4B590;
}
.proc-related-card:hover::before { opacity: 1; }
.proc-related-card h4 {
    color: #3D3530;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}
.proc-related-card p { color: #777; font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.8rem; }
.proc-related-card a {
    color: #9B8A5E;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.proc-related-card a:hover { color: #C4B590; }


/* FAQ Accordion */
.proc-faq { margin: 2.5rem 0; padding-top: 2rem; border-top: 1px solid #f0ebe0; }
.proc-faq h2 { margin-bottom: 1.5rem; }
.faq-item {
    border: 1px solid #f0ebe0;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: rgba(196, 181, 144,0.4); }
.faq-item.active { border-color: #C4B590; box-shadow: 0 2px 12px rgba(196, 181, 144,0.1); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    background: #FEFCF9;
    transition: background 0.3s;
}
.faq-question:hover { background: #FDFBF7; }
.faq-question h4 {
    color: #3D3530;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C4B590, #9B8A5E);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.5; fill: none; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Benefits Grid */
.proc-benefits { margin: 2.5rem 0; }
.proc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.proc-benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: #FEFCF9;
    border: 1px solid #f0ebe0;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.proc-benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155, 138, 94,0.08);
    border-color: rgba(196, 181, 144,0.3);
}
.proc-benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(196, 181, 144,0.15), rgba(155, 138, 94,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.proc-benefit-icon i {
    color: #C4B590;
    font-size: 1.1rem;
}
.proc-benefit-text h4 {
    color: #3D3530;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin: 0 0 0.3rem;
}
.proc-benefit-text p {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* Candidates Section */
.proc-candidates { margin: 2.5rem 0; }

/* Recovery Section */
.proc-recovery { margin: 2.5rem 0; }

@media (max-width: 768px) {
    .proc-benefits-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .proc-layout { grid-template-columns: 1fr 300px; gap: 2rem; padding: 2.5rem 1.5rem; }
    .proc-stats-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
    .proc-layout { grid-template-columns: 1fr; padding: 2rem 1.2rem; }
    .proc-sidebar { position: static; }
    .proc-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .proc-stat-item:nth-child(3)::after { display: none; }
    .proc-features-grid { grid-template-columns: 1fr; }
    .proc-cta { flex-direction: column; text-align: center; gap: 1.2rem; }
    .proc-main h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .proc-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .proc-stat-item:nth-child(2)::after { display: none; }
    .proc-stat-item:nth-child(4)::after { display: none; }
    .proc-layout { padding: 1.5rem 1rem; }
    .proc-booking-card { padding: 1.8rem 1.4rem; }
}
