/* ===== COMMON PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.page-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--dark-text);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--dark-text);
}

/* Section Common */
.section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--dark-text);
    font-family: var(--heading-font);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    text-align: center;
}

/* Card Styles */
.card-common {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, background-color 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .card-common {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-common:hover {
    transform: translateY(-5px);
}

/* ===== HOME PAGE STYLES ===== */
.home-hero-img {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.home-hero-icon {
    font-size: 10rem;
    color: var(--primary-color);
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
}

.cta-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--dark-text);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-profile-img {
    width: 250px;
    height: 250px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.about-profile-icon {
    font-size: 8rem;
    color: white;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .info-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
}

[data-theme="dark"] .info-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    padding: 0.5rem;
    background: var(--primary-color);
    color: var(--dark-text);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* ===== SERVICES PAGE STYLES ===== */
.service-card {
    text-align: center;
    position: relative;
}

.service-card.premium {
    border: 2px solid var(--primary-color);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .service-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
}

.period {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.package-card {
    text-align: center;
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .package-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-sessions {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-features li i {
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.package-features li i.bi-check {
    color: #28a745;
}

.package-features li i.bi-x {
    color: #dc3545;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    color: var(--dark-text);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.faq-question i {
    color: var(--primary-color);
}

.booking-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .booking-form {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== BLOG PAGE STYLES ===== */
.blog-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, background-color 0.3s ease;
    background-color: var(--card-bg);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-sidebar {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .blog-sidebar {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-title {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .recent-post {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .category-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--primary-color);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.8rem;
    }

    .home-hero-img {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }

    .home-hero-icon {
        font-size: 8rem;
    }

    .about-profile-img {
        width: 200px;
        height: 200px;
    }

    .about-profile-icon {
        font-size: 6rem;
    }

    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-date {
        width: 50px;
        font-size: 0.8rem;
    }

    .booking-form {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }

    .home-hero-img {
        width: 200px;
        height: 200px;
    }

    .home-hero-icon {
        font-size: 6rem;
    }

    .about-profile-img {
        width: 150px;
        height: 150px;
    }

    .about-profile-icon {
        font-size: 4rem;
    }

    .service-card,
    .package-card {
        padding: 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
    }
}