@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.hero-section {
    background: var(--post-bg-primary-gradient);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

.hero-content {
    position: relative;
    /*z-index: 2;*/
}

.card-hover {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    border-left: 5px solid var(--primary-color);
}

.team-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.advantage-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border-left: 4px solid var(--success-color);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.clinic-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

.specialty-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.2rem;
    font-weight: 500;
}

.quote-section {
    background: var(--post-bg-primary-gradient);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.quote-section::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.3;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 3px solid var(--accent-color);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.light-therapy-section {
    background: var(--post-bg-grey-gradient);
    color: black;
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 20px;
}

.light-card {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.faq-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-header {
    background: var(--secondary-color);
    border: none;
    padding: 1.5rem;
    font-weight: 500;
}

.faq-body {
    background: white;
    padding: 1.5rem;
}

.cta-section {
    background: var(--post-bg-grey-gradient);
    color: black;
    padding: 80px 0;
    border-radius: 30px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}
