/*
Theme Name: The Bridge Recovery Center
Theme URI: https://thebridgerecovery.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A premium WordPress theme for addiction treatment centers
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bridge-recovery
Tags: health, medical, rehabilitation
*/


* { font-family: 'Inter', sans-serif; }
.font-serif { font-family: 'Playfair Display', serif; }


.gradient-overlay {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(45, 80, 120, 0.85) 50%, rgba(26, 54, 93, 0.9) 100%);
}


.gold-gradient {
    background: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #C9A962 100%);
}


.text-gold { color: #C9A962; }
.bg-gold { background-color: #C9A962; }
.border-gold { border-color: #C9A962; }
.bg-navy { background-color: #1A365D; }
.text-navy { color: #1A365D; }


.btn-gold {
    background: linear-gradient(135deg, #C9A962 0%, #B8963F 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}


.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 98, 0.6);
}


.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


.floating {
    animation: float 6s ease-in-out infinite;
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


.pulse-ring {
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}


@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}


.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #C9A962 0%, #B8963F 100%);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}


@media (min-width: 768px) {
    .sticky-call { display: none; }
}


.hero-bg {
    background: linear-gradient(135deg, #0F2942 0%, #1A365D 50%, #234E7A 100%);
}


.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}


.faq-item {
    border-left: 4px solid #C9A962;
}


.form-input:focus {
    border-color: #C9A962;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}


.shine {
    position: relative;
    overflow: hidden;
}


.shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: rotate(30deg);
    animation: shine 4s infinite;
}


@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}


/* ==================== */
/* FAQ Section Styles */
/* ==================== */

.faq-section {
    padding: 64px 0;
    background-color: #f9fafb;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 96px 0;
    }
}

.faq-container {
/* 	max-width:1250px; */
    margin: 0 auto;
    padding: 0 16px;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-subtitle {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 14px;
}

.faq-title {
    font-family: 'Georgia', serif;
    font-size: 30px;
    color: #1e3a5f;
    margin-top: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 48px;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.faq-item.active {
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #6b7280;
    line-height: 1.7;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #e5e7eb;
}