/* ===================================
   SERVICE PAGE STYLES
   =================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background-color: var(--light-color);
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--accent-color);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--accent-color);
}

.breadcrumb-list a {
    color: var(--accent-color);
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li:last-child {
    color: var(--dark-color);
    font-weight: 600;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-color), #3a3836);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 223, 90, 0.1), rgba(252, 223, 90, 0.05));
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

/* Service Packages */
.service-packages {
    padding: 80px 0;
    background-color: var(--cream-bg);
}

.package-card {
    margin-bottom: 60px;
    background-color: var(--cream-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
}

.package-card.premium {
    border: 3px solid var(--gold);
    background: linear-gradient(145deg, #fffef8 0%, #fdfbf3 100%);
}

.package-header {
    background: linear-gradient(135deg, var(--dark-color), #3a3836);
    padding: 40px;
    text-align: center;
    position: relative;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
}

.package-card.premium .package-header {
    background: linear-gradient(135deg, #d4af37, #c5a028);
}

.package-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.featured-badge {
    background-color: var(--dark-color);
    color: var(--primary-color);
    animation: pulse-badge 2s infinite;
}

.premium-badge {
    background-color: var(--cream-bg);
    color: var(--gold);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.package-title {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.package-card.featured .package-title {
    color: var(--dark-color);
}

.package-card.premium .package-title {
    color: var(--white);
}

.package-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-card.featured .package-price {
    color: var(--dark-color);
}

.package-card.premium .package-price {
    color: var(--white);
}

.package-content {
    padding: 40px;
}

/* Package Image Gallery */
.package-image-gallery {
    margin-bottom: 40px;
}

.gallery-main {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-thumbs img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Package Description */
.package-description {
    max-width: 100%;
}

.lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.lead strong {
    color: var(--dark-color);
}

.vip-intro {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid var(--gold);
}

.vip-intro h3 {
    font-size: 20px;
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
}

/* Package Details */
.package-details {
    margin-bottom: 40px;
}

.detail-section {
    margin-bottom: 35px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.vip-section {
    border-left: 5px solid var(--gold);
}

.detail-section h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3 i {
    color: var(--primary-color);
    font-size: 24px;
}

.vip-section h3 {
    font-size: 24px;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    color: var(--accent-color);
}

.detail-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.vip-section ul li::before {
    color: var(--gold);
}

/* VIP Images */
.vip-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.vip-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Package Includes */
.package-includes {
    margin-bottom: 30px;
}

.includes-box {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.includes-box i {
    font-size: 36px;
}

.includes-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Package Note */
.package-note {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.package-note i {
    color: #ff9800;
    font-size: 24px;
    margin-top: 3px;
}

.package-note p {
    margin: 0;
    color: var(--dark-color);
    line-height: 1.7;
}

/* Package CTA */
.package-cta {
    text-align: center;
    padding-top: 20px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--cream-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--dark-color);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--accent-color);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .package-header {
        padding: 30px 20px;
    }

    .package-title {
        font-size: 24px;
    }

    .package-price {
        font-size: 22px;
    }

    .package-content {
        padding: 20px;
    }

    .gallery-main {
        height: 250px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .gallery-thumbs img {
        height: 100px;
    }

    .detail-section {
        padding: 20px;
    }

    .detail-section h3 {
        font-size: 18px;
    }

    .vip-images {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0;
    }

    .page-title {
        font-size: 24px;
    }

    .package-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .package-title {
        font-size: 20px;
    }

    .package-price {
        font-size: 18px;
    }

    .gallery-thumbs {
        grid-template-columns: 1fr;
    }

    .gallery-thumbs img {
        height: 150px;
    }
}

/* ===================================
   SERVICE INTRO SECTION
   =================================== */
.service-intro {
    padding: 80px 0;
    background-color: var(--light-color);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--dark-color);
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Catholic Section Styles */
.catholic-section {
    border-left-color: #8e24aa !important;
}

.catholic-section h3 {
    color: #6a1b9a;
}

.section-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--accent-color);
    margin-bottom: 25px;
    padding: 20px;
    background-color: #fffef8;
    border-radius: 10px;
}

/* Catholic Features */
.catholic-features {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border-radius: 20px;
}

.features-title {
    text-align: center;
    font-size: 28px;
    color: #6a1b9a;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fffef8;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 36, 170, 0.2);
}

.feature-box i {
    font-size: 40px;
    color: #8e24aa;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--accent-color);
    line-height: 1.6;
}

/* Process Timeline */
.process-section {
    padding: 80px 0;
    background-color: var(--cream-bg);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background-color: var(--light-color);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--accent-color);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CADRE SERVICE PAGE STYLES
   =================================== */
.hero-quote {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5, #ffebee);
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-content i {
    font-size: 48px;
    color: #c62828;
    opacity: 0.3;
    margin-bottom: 20px;
}

.quote-content h2 {
    font-size: 32px;
    color: #c62828;
    margin-bottom: 30px;
    font-style: italic;
}

.quote-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Services Included */
.services-included {
    padding: 80px 0;
    background-color: var(--cream-bg);
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.service-detail-card {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: #c62828;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.service-detail-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #c62828;
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    color: var(--accent-color);
}

.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #c62828;
    font-weight: 700;
    font-size: 18px;
}

.card-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.card-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Commitments Section */
.commitments-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.commitment-card {
    background-color: var(--cream-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #c62828;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.commitment-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.commitment-card p {
    color: var(--accent-color);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--cream-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .card-images {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   RITUAL CARDS & PRICE BOX
   =================================== */
.price-box {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 15px;
    text-align: center;
}

.price-box h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.price-box .price {
    font-size: 32px;
    font-weight: 700;
    color: #d32f2f;
}

.rituals-section {
    padding: 80px 0;
    background-color: var(--cream-bg);
}

.rituals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.ritual-card {
    background-color: var(--light-color);
    padding: 30px 25px;
    border-radius: 15px;
    border-left: 5px solid #d32f2f;
    transition: var(--transition);
}

.ritual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ritual-number {
    width: 50px;
    height: 50px;
    background-color: #d32f2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ritual-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.ritual-card p {
    font-size: 15px;
    color: var(--accent-color);
    line-height: 1.6;
    margin: 0;
}

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

/* ===================================
   PRODUCTS PAGE STYLES
   =================================== */
.products-section {
    padding: 80px 0;
    background-color: var(--cream-bg);
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background-color: var(--light-color);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--cream-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.product-info {
    padding: 30px;
}

.product-name {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-desc {
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    padding: 10px 0;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: #8d6e63;
    font-size: 14px;
}

.product-action {
    text-align: center;
}

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

    .product-categories {
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
    }

    .product-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 20px;
    }

    .product-name {
        font-size: 20px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===================================
   NEW SERVICE PAGES STYLES
   =================================== */

/* Service Detail Grid */
.services-detail-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-detail-card {
    background: #fffef8;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-box i {
    font-size: 32px;
    color: #242321;
}

.service-detail-card h3 {
    font-size: 22px;
    color: #242321;
    margin-bottom: 15px;
}

.service-detail-card p {
    color: #4f4f4f;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-list {
    list-style: none;
    padding: 0;
}

.service-detail-list li {
    padding: 10px 0;
    color: #4f4f4f;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-detail-list i {
    color: #fcdf5a;
    margin-top: 4px;
    font-size: 14px;
}

/* Ceremony Section */
.ceremony-section {
    padding: 80px 0;
    background: #fffef8;
}

.ceremony-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.ceremony-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #fcdf5a, #e5c84a);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #242321;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: 20px 0;
}

.timeline-content h3 {
    font-size: 22px;
    color: #242321;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4f4f4f;
    line-height: 1.7;
}

/* Note Section */
.note-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.note-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fffef8;
    border-left: 5px solid #fcdf5a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
}

.note-icon {
    width: 60px;
    height: 60px;
    background: #fcdf5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 28px;
    color: #242321;
}

.note-content h3 {
    font-size: 24px;
    color: #242321;
    margin-bottom: 20px;
}

.note-content ul {
    list-style: none;
    padding: 0;
}

.note-content ul li {
    padding: 12px 0;
    color: #4f4f4f;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.note-content ul li:last-child {
    border-bottom: none;
}

.note-content strong {
    color: #242321;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #fffef8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon-large i {
    font-size: 40px;
    color: #242321;
}

.feature-box h3 {
    font-size: 20px;
    color: #242321;
    margin-bottom: 15px;
}

.feature-box p {
    color: #4f4f4f;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #f9f9f9;
}

/* Pricing Tables */
.pricing-section {
    padding: 80px 0;
    background: #fffef8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #fffef8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #fcdf5a;
}

.pricing-header {
    background: linear-gradient(135deg, #242321, #3a3836);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
}

.pricing-period {
    font-size: 16px;
    opacity: 0.9;
}

.pricing-body {
    padding: 40px 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4f4f4f;
}

.pricing-features i {
    color: #fcdf5a;
    font-size: 16px;
}

.pricing-footer {
    padding: 0 30px 40px;
    text-align: center;
}

/* Banner/Alert Styles */
.promo-banner {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(252, 223, 90, 0.3);
}

.promo-banner h3 {
    font-size: 24px;
    color: #242321;
    margin-bottom: 10px;
}

.promo-banner p {
    color: #242321;
    font-size: 16px;
    margin: 0;
}

/* Blog Styles */
.blog-page {
    padding: 80px 0;
    background: #f9f9f9;
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-main {
    min-width: 0;
}

.blog-search {
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #fcdf5a;
}

.search-btn {
    padding: 15px 30px;
    background: #fcdf5a;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #242321;
    color: #fcdf5a;
}

.blog-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-filter {
    padding: 12px 25px;
    background: #fffef8;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.category-filter:hover,
.category-filter.active {
    background: #fcdf5a;
    border-color: #fcdf5a;
    color: #242321;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #fffef8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 60px;
    color: #242321;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    padding: 5px 15px;
    background: #fcdf5a;
    color: #242321;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 20px;
    color: #242321;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #4f4f4f;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-link {
    color: #fcdf5a;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #242321;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fffef8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    color: #242321;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #fcdf5a;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #fcdf5a;
}

.newsletter-btn {
    padding: 12px 20px;
    background: #fcdf5a;
    color: #242321;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #242321;
    color: #fcdf5a;
}

.popular-post {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-icon {
    width: 50px;
    height: 50px;
    background: #fcdf5a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popular-icon i {
    font-size: 20px;
    color: #242321;
}

.popular-info h4 {
    font-size: 15px;
    color: #242321;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-info .popular-date {
    font-size: 12px;
    color: #999;
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    color: #4f4f4f;
    font-weight: 500;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    color: #fcdf5a;
}

.category-count {
    background: #fcdf5a;
    color: #242321;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.contact-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.widget-contact-btn {
    padding: 15px;
    background: #fcdf5a;
    color: #242321;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.widget-contact-btn:hover {
    background: #242321;
    color: #fcdf5a;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffef8;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
    background: #fcdf5a;
    border-color: #fcdf5a;
    color: #242321;
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-container {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .services-detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

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

    .ceremony-timeline::before {
        left: 20px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .note-box {
        flex-direction: column;
        padding: 30px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {
    .service-detail-card {
        padding: 30px 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .feature-icon-large {
        width: 70px;
        height: 70px;
    }

    .feature-icon-large i {
        font-size: 30px;
    }

    .pricing-header {
        padding: 30px 20px;
    }

    .pricing-price {
        font-size: 28px;
    }
}

/* ===================================
   UNIFIED STYLES FOR ALL SERVICE PAGES
   =================================== */

/* Service Intro Section */
.service-intro {
    padding: 60px 0;
    background-color: var(--cream-bg);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.intro-icon i {
    font-size: 36px;
    color: var(--dark-color);
}

.intro-content h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.intro-content .lead {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.intro-content p {
    font-size: 16px;
    color: var(--accent-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Service Content Section */
.service-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.service-content-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-content h3 {
    color: var(--dark-color);
    font-size: 28px;
    margin-bottom: 25px;
    margin-top: 50px;
}

.service-content h3:first-of-type {
    margin-top: 0;
}

/* Info Box */
.info-box {
    background: #fffef8;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.info-box h4 {
    color: var(--dark-color);
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h4 i {
    color: var(--primary-color);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 8px 0;
    line-height: 2;
    font-size: 16px;
    color: var(--accent-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-box ul li i {
    color: #4caf50;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Promotion Banner */
.promotion-banner {
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    padding: 30px 0;
    margin: 40px 0;
    text-align: center;
}

.promotion-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--dark-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.promotion-banner p {
    font-size: 18px;
    margin-top: 10px;
    color: var(--dark-color);
}

.promotion-banner strong {
    font-weight: 900;
}

.promotion-banner i {
    margin-right: 10px;
}

/* Alert Box */
.alert-box {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid;
}

.alert-box.alert-warning {
    background: #fff3e0;
    border-color: #ff9800;
}

.alert-box.alert-info {
    background: #e3f2fd;
    border-color: #2196f3;
}

.alert-box.alert-success {
    background: #e8f5e9;
    border-color: #4caf50;
}

.alert-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-box.alert-warning h4 {
    color: #e65100;
}

.alert-box.alert-info h4 {
    color: #0d47a1;
}

.alert-box.alert-success h4 {
    color: #2e7d32;
}

.alert-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--accent-color);
}

/* Process Steps */
.process-steps {
    background: #fffef8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed #e0e0e0;
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--accent-color);
}

/* Commitment List */
.commitment-list {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
}

.commitment-list ul {
    list-style: none;
    padding: 0;
}

.commitment-list ul li {
    padding: 10px 0;
    line-height: 2.2;
    font-size: 16px;
    color: var(--accent-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.commitment-list ul li i {
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

/* Location Badge */
.location-badge {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Funeral Homes Grid */
.funeral-homes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.funeral-home-card {
    background: #fffef8;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.funeral-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.funeral-home-card h3 {
    color: var(--dark-color);
    margin: 15px 0;
    font-size: 22px;
}

.funeral-home-card ul {
    list-style: none;
    padding: 0;
}

.funeral-home-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
}

.funeral-home-card ul li:last-child {
    border-bottom: none;
}

.funeral-home-card ul li i {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-content h3 {
        font-size: 24px;
    }

    .promotion-banner h2 {
        font-size: 28px;
    }

    .intro-content h2 {
        font-size: 28px;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .funeral-homes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .promotion-banner h2 {
        font-size: 22px;
    }

    .promotion-banner p {
        font-size: 16px;
    }

    .info-box {
        padding: 20px;
    }

    .alert-box {
        padding: 20px;
    }
}

/* ===================================
   Blog/Knowledge Page Specific Styles
   =================================== */

/* Blog Section Layout */
.blog-section {
    padding: 60px 0;
    background: #fffef8;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
}

.search-form .search-input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px 0 0 50px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-form .search-input:focus {
    outline: none;
    border-color: #fcdf5a;
}

.search-form .search-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-form .search-btn:hover {
    background: linear-gradient(135deg, #242321, #3a3835);
    color: #fcdf5a;
}

/* Category Filter Buttons */
.blog-categories-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-filter-btn {
    padding: 10px 20px;
    background: #fffef8;
    color: #4f4f4f;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter-btn:hover {
    border-color: #fcdf5a;
    color: #242321;
}

.category-filter-btn.active {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
    border-color: #fcdf5a;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: #fffef8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

/* Blog Image Placeholder */
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-placeholder i {
    font-size: 60px;
    color: #242321;
    opacity: 0.3;
}

/* Blog Category Badge */
.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.blog-category-badge.tang-le {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
}

.blog-category-badge.phong-tuc {
    background: linear-gradient(135deg, #4f4f4f, #3a3835);
}

.blog-category-badge.dich-vu {
    background: linear-gradient(135deg, #fcdf5a, #f5e070);
    color: #242321;
}

.blog-category-badge.huong-dan {
    background: linear-gradient(135deg, #242321, #3a3835);
}

/* Blog Content */
.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    color: #242321;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #fcdf5a;
}

.blog-excerpt {
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}

.blog-date i,
.blog-read-time i {
    color: #fcdf5a;
}

.blog-read-more {
    color: #242321;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #fcdf5a;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffef8;
    color: #4f4f4f;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-color: #fcdf5a;
    color: #242321;
}

.pagination-next,
.pagination-prev {
    border-radius: 50%;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #fffef8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    color: #242321;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #fcdf5a;
    font-weight: 700;
}

/* Newsletter Widget */
.newsletter-widget p {
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #fcdf5a;
}

.newsletter-btn {
    padding: 12px 18px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #242321, #3a3835);
    color: #fcdf5a;
}

/* Popular Posts Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popular-post-icon i {
    font-size: 20px;
    color: #242321;
}

.popular-post-content {
    flex: 1;
}

.popular-post-content h4 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.popular-post-content h4 a {
    color: #242321;
    transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
    color: #fcdf5a;
}

.popular-post-date {
    font-size: 12px;
    color: #999;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4f4f4f;
    font-weight: 500;
    transition: all 0.3s ease;
}

.categories-list li a:hover {
    color: #fcdf5a;
}

.category-count {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Contact Widget */
.contact-widget p {
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.widget-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-contact-btn {
    padding: 15px 20px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.widget-contact-btn:hover {
    background: linear-gradient(135deg, #242321, #3a3835);
    color: #fcdf5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.widget-contact-btn i {
    font-size: 16px;
}

/* Responsive Blog Page */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-categories-filter {
        gap: 8px;
    }

    .category-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .search-form .search-input {
        padding: 12px 20px;
        font-size: 14px;
    }

    .search-form .search-btn {
        padding: 12px 25px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-image-placeholder i {
        font-size: 50px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 18px;
    }

    .sidebar-widget {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .blog-categories-filter {
        gap: 6px;
    }

    .category-filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 13px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .widget-title {
        font-size: 18px;
    }
}

/* ===================================
   Blog Modal Popup Styles
   =================================== */

.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.blog-modal.active {
    display: block;
}

.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.blog-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #fffef8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(252, 223, 90, 0.4);
}

.blog-modal-close:hover {
    background: linear-gradient(135deg, #242321, #3a3835);
    transform: rotate(90deg);
}

.blog-modal-close i {
    font-size: 20px;
    color: #242321;
}

.blog-modal-close:hover i {
    color: #fcdf5a;
}

.blog-modal-content {
    height: 90vh;
    overflow-y: auto;
    padding: 50px;
}

/* Custom Scrollbar for Modal */
.blog-modal-content::-webkit-scrollbar {
    width: 8px;
}

.blog-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.blog-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 10px;
}

.blog-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #242321, #3a3835);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #fcdf5a;
}

.modal-category-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.modal-category-badge.tang-le {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
}

.modal-category-badge.phong-tuc {
    background: linear-gradient(135deg, #4f4f4f, #3a3835);
    color: white;
}

.modal-category-badge.dich-vu {
    background: linear-gradient(135deg, #fcdf5a, #f5e070);
    color: #242321;
}

.modal-category-badge.huong-dan {
    background: linear-gradient(135deg, #242321, #3a3835);
    color: white;
}

.modal-title {
    font-size: 36px;
    color: #242321;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.modal-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 14px;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-meta-item i {
    color: #fcdf5a;
    font-size: 16px;
}

/* Modal Featured Image */
.modal-featured-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-featured-image i {
    font-size: 100px;
    color: #242321;
    opacity: 0.2;
}

/* Modal Body Content */
.modal-body {
    color: #4f4f4f;
    font-size: 16px;
    line-height: 1.9;
}

.modal-body h2 {
    font-size: 28px;
    color: #242321;
    margin: 40px 0 20px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.modal-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 3px;
}

.modal-body h3 {
    font-size: 22px;
    color: #242321;
    margin: 30px 0 15px;
    font-weight: 600;
}

.modal-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.modal-body strong {
    color: #242321;
    font-weight: 700;
}

.modal-body ul,
.modal-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.modal-body li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.modal-body ul li {
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.modal-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fcdf5a;
    font-size: 14px;
}

.modal-body blockquote {
    background: #fffef8;
    border-left: 5px solid #fcdf5a;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #4f4f4f;
}

/* Modal Footer */
.modal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.modal-cta {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.modal-cta h3 {
    font-size: 24px;
    color: #242321;
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-cta p {
    color: #242321;
    margin-bottom: 25px;
    font-size: 16px;
}

.modal-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-cta-btn {
    padding: 15px 35px;
    background: #242321;
    color: #fcdf5a;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modal-cta-btn:hover {
    background: #fffef8;
    color: #242321;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .blog-modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .blog-modal-content {
        padding: 30px 25px;
    }

    .modal-title {
        font-size: 26px;
    }

    .modal-featured-image {
        height: 250px;
    }

    .modal-featured-image i {
        font-size: 60px;
    }

    .modal-body h2 {
        font-size: 22px;
    }

    .modal-body h3 {
        font-size: 18px;
    }

    .modal-body {
        font-size: 15px;
    }

    .modal-meta {
        flex-direction: column;
        gap: 10px;
    }

    .modal-cta {
        padding: 30px 20px;
    }

    .modal-cta h3 {
        font-size: 20px;
    }

    .modal-cta-buttons {
        flex-direction: column;
    }

    .modal-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-modal-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    .blog-modal-close i {
        font-size: 18px;
    }

    .blog-modal-content {
        padding: 25px 20px;
        height: 92vh;
    }

    .modal-title {
        font-size: 22px;
    }

    .modal-featured-image {
        height: 200px;
        border-radius: 10px;
    }

    .modal-body h2 {
        font-size: 20px;
        padding-left: 15px;
    }

    .modal-body h2::before {
        width: 4px;
        height: 25px;
    }
}
/* ===================================
   BLOG MODAL CONTENT STYLING
   =================================== */

/* Blog Full Image */
.blog-full-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-full-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Quote */
.blog-quote {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-left: 5px solid #fcdf5a;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.blog-quote i.fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    color: #fcdf5a;
    opacity: 0.3;
}

.blog-quote p {
    font-style: italic;
    color: #242321;
    margin: 0;
    padding-left: 40px;
    font-size: 16px;
    line-height: 1.8;
}

/* Info Box */
.info-box, .highlight-box, .warning-box {
    background: #fff8e1;
    border: 2px solid #fcdf5a;
    border-radius: 10px;
    padding: 20px 25px;
    margin: 25px 0;
}

.info-box h4, .highlight-box h4 {
    color: #242321;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h4 i {
    color: #fcdf5a;
    font-size: 20px;
}

.info-box ul, .highlight-box ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.info-box ul li, .highlight-box ul li {
    padding: 8px 0;
    color: #4f4f4f;
}

/* Timeline Box */
.timeline-box {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.timeline-box h4 {
    color: #242321;
    margin-bottom: 15px;
    font-size: 18px;
}

.timeline-box ol, .timeline-box ul {
    margin: 0;
    padding-left: 25px;
}

.timeline-box li {
    padding: 10px 0;
    color: #242321;
    font-weight: 500;
}

/* Two Columns Layout */
.two-columns, .three-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.column-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.column-item h4 {
    color: #242321;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.column-item h4 i {
    color: #fcdf5a;
}

/* Do/Don't Box */
.do-dont-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.do-box, .dont-box {
    padding: 20px;
    border-radius: 10px;
}

.do-box {
    background: #e8f5e9;
    border: 2px solid #4caf50;
}

.dont-box {
    background: #ffebee;
    border: 2px solid #f44336;
}

.do-box h4 {
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.dont-box h4 {
    color: #c62828;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.do-box ul, .dont-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.do-box li, .dont-box li {
    padding: 8px 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #242321, #3a3835);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0 20px 0;
}

.cta-box h3 {
    color: #fcdf5a;
    margin-bottom: 15px;
}

.cta-box p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #e5c84a, #fcdf5a);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(252, 223, 90, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #fcdf5a;
    color: #fcdf5a;
}

.cta-btn.secondary:hover {
    background: #fcdf5a;
    color: #242321;
}

/* Ritual List (for Tang lễ người Hoa) */
.ritual-list {
    margin: 25px 0;
}

.ritual-item {
    background: #f9f9f9;
    border-left: 4px solid #fcdf5a;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.ritual-item:hover {
    background: #fffef8;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.ritual-item h3 {
    color: #242321;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ritual-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fcdf5a, #e5c84a);
    color: #242321;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
}

.ritual-item p {
    color: #4f4f4f;
    margin: 0;
    padding-left: 55px;
}

/* Price Table */
.price-table {
    margin: 25px 0;
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fffef8;
    border-radius: 10px;
    overflow: hidden;
}

.price-table th {
    background: linear-gradient(135deg, #242321, #3a3835);
    color: #fcdf5a;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: #f9f9f9;
}

.price-highlight {
    color: #fcdf5a;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #242321, #3a3835);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border-color: #ffc107;
}

.warning-box ul li {
    color: #856404;
}

/* Responsive */
@media (max-width: 768px) {
    .two-columns, .three-columns, .do-dont-box {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ritual-item h3 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ritual-item p {
        padding-left: 0;
        margin-top: 10px;
    }
    
    .price-table {
        font-size: 14px;
    }
    
    .price-highlight {
        font-size: 16px;
    }
}

/* ===================================
   BENEFITS SECTION STYLES
   =================================== */

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffef8, #fdfbf3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: #fffef8;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-icon i {
    font-size: 36px;
    color: var(--dark-color);
}

.benefit-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   PRICING SECTION STYLES
   =================================== */

.pricing-section {
    padding: 80px 0;
    background: #fffef8;
}

.pricing-table {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.pricing-notes {
    background: #fff8e1;
    border-left: 5px solid var(--primary-color);
    padding: 25px 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.pricing-notes h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-notes h3::before {
    content: '⚠️';
    font-size: 24px;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-notes ul li {
    padding: 10px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-notes ul li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===================================
   SERVICE DETAILS & CONTENT ROW
   =================================== */

.service-details {
    padding: 80px 0;
    background: #fffef8;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.content-row:last-child {
    margin-bottom: 0;
}

.content-row.reverse {
    direction: rtl;
}

.content-row.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text .check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.content-text .check-list li {
    padding: 15px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.content-text .check-list li:last-child {
    border-bottom: none;
}

.content-text .check-list li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.content-text .check-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   PROCESS SECTION ENHANCEMENTS
   =================================== */

.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffef8, #fdfbf3);
}

.process-step {
    background: #fffef8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(252, 223, 90, 0.4);
}

.step-content h3,
.process-step h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p,
.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   FEATURE ICON BOX
   =================================== */

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-box {
    transform: rotate(360deg) scale(1.1);
}

.feature-icon-box i {
    font-size: 36px;
    color: var(--dark-color);
}

/* ===================================
   RESPONSIVE STYLES FOR NEW COMPONENTS
   =================================== */

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .content-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-row.reverse {
        direction: ltr;
    }

    .benefit-item {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon i {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .benefits-section,
    .pricing-section,
    .service-details,
    .process-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item h3 {
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 14px;
    }

    .content-text h2 {
        font-size: 26px;
    }

    .content-text .check-list li {
        font-size: 14px;
        padding: 12px 0;
    }

    .pricing-notes {
        padding: 20px;
    }

    .pricing-notes h3 {
        font-size: 18px;
    }

    .pricing-notes ul li {
        font-size: 14px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin: 0 auto;
    }

    .step-content h3,
    .process-step h4 {
        font-size: 18px;
    }

    .step-content p,
    .process-step p {
        font-size: 14px;
    }

    .feature-icon-box {
        width: 70px;
        height: 70px;
    }

    .feature-icon-box i {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 25px 15px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 28px;
    }

    .content-text h2 {
        font-size: 22px;
    }

    .content-row {
        gap: 30px;
        margin-bottom: 50px;
    }

    .pricing-notes h3::before {
        font-size: 20px;
    }
}

/* ===================================
   PROMO BANNER STYLES
   =================================== */

.promo-banner,
.promotion-banner {
    padding: 25px 0;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    text-align: center;
    border-top: 3px solid var(--dark-color);
    border-bottom: 3px solid var(--dark-color);
}

.promo-content h2,
.promo-content h3,
.promotion-banner h2 {
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-content i,
.promotion-banner i {
    font-size: 28px;
    color: var(--dark-color);
}

.promotion-banner p {
    margin: 10px 0 0;
    font-size: 16px;
    color: var(--dark-color);
}

.promotion-banner strong {
    color: var(--dark-color);
    font-weight: 700;
    text-decoration: underline;
}

/* ===================================
   SPECIFICATIONS SECTION
   =================================== */

.specifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffef8, #fdfbf3);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spec-card {
    background: #fffef8;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.spec-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    transform: rotate(360deg) scale(1.1);
}

.spec-icon i {
    font-size: 32px;
    color: var(--dark-color);
}

.spec-card h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.spec-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 8px 0;
}

/* ===================================
   MODES SECTION
   =================================== */

.modes-section {
    padding: 80px 0;
    background: #fffef8;
}

.modes-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.mode-item {
    background: linear-gradient(135deg, #fffef8, #fdfbf3);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.mode-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left-width: 8px;
}

.mode-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(252, 223, 90, 0.4);
}

.mode-item h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.mode-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   FEATURES SECTION ENHANCEMENTS
   =================================== */

.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffef8, #fdfbf3);
}

.feature-icon-large {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(252, 223, 90, 0.3);
}

.feature-box:hover .feature-icon-large {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 8px 30px rgba(252, 223, 90, 0.5);
}

.feature-icon-large i {
    font-size: 40px;
    color: var(--dark-color);
}

/* ===================================
   TERMS SECTION
   =================================== */

.terms-section {
    padding: 80px 0;
    background: #fffef8;
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.terms-box {
    background: linear-gradient(135deg, #fffef8, #fdfbf3);
    padding: 35px 30px;
    border-radius: 15px;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.terms-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top-width: 6px;
}

.terms-box h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-box h3 i {
    color: var(--primary-color);
    font-size: 24px;
}

.terms-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-box ul li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
}

.terms-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* ===================================
   PRODUCT SECTION
   =================================== */

.product-section {
    padding: 80px 0;
    background: #fffef8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fffef8;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.product-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #fffef8, #fdfbf3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(252, 223, 90, 0.4);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(360deg) scale(1.1);
}

.product-icon i {
    font-size: 36px;
    color: var(--dark-color);
}

.product-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-card > p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    font-style: italic;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.product-features li {
    padding: 10px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.product-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.product-price .price {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
}

/* ===================================
   RESPONSIVE FOR NEW COMPONENTS
   =================================== */

@media (max-width: 992px) {
    .specs-grid,
    .modes-content,
    .terms-content,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .promo-banner,
    .promotion-banner,
    .specifications-section,
    .modes-section,
    .features-section,
    .terms-section,
    .product-section {
        padding: 60px 0;
    }

    .promo-content h2,
    .promo-content h3,
    .promotion-banner h2 {
        font-size: 18px;
    }

    .promo-content i,
    .promotion-banner i {
        font-size: 22px;
    }

    .specs-grid,
    .modes-content,
    .terms-content,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spec-card,
    .mode-item,
    .terms-box,
    .product-card {
        padding: 25px 20px;
    }

    .spec-icon,
    .product-icon {
        width: 60px;
        height: 60px;
    }

    .spec-icon i,
    .product-icon i {
        font-size: 28px;
    }

    .feature-icon-large {
        width: 75px;
        height: 75px;
    }

    .feature-icon-large i {
        font-size: 36px;
    }

    .mode-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .mode-item h3,
    .spec-card h3,
    .product-card h3 {
        font-size: 16px;
    }

    .terms-box h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .promo-banner,
    .promotion-banner {
        padding: 20px 0;
    }

    .promo-content h2,
    .promo-content h3,
    .promotion-banner h2 {
        font-size: 16px;
        gap: 10px;
    }

    .promotion-banner p {
        font-size: 14px;
    }

    .spec-card,
    .mode-item,
    .terms-box,
    .product-card {
        padding: 20px 15px;
    }

    .featured-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .product-features li {
        font-size: 13px;
    }
}

/* ===================================
   PRICING GRID & CARDS
   =================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fffef8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 40px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.pricing-header {
    background: linear-gradient(135deg, var(--dark-color), #3a3836);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
}

.pricing-header h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card.featured .pricing-header h3 {
    color: var(--dark-color);
}

.pricing-header .price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.pricing-header .price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-card.featured .pricing-header .price .amount {
    color: var(--dark-color);
}

.pricing-header .price .period {
    font-size: 16px;
    color: #ccc;
    font-weight: 400;
}

.pricing-card.featured .pricing-header .price .period {
    color: var(--dark-color);
    opacity: 0.8;
}

.pricing-body {
    padding: 40px 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-features li i.fa-times {
    color: #ccc;
}

.pricing-features .text-muted {
    color: #999;
    text-decoration: line-through;
}

.pricing-card .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

/* ===================================
   INTRO ICON STYLE
   =================================== */

.intro-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #e5c84a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(252, 223, 90, 0.4);
}

.intro-icon i {
    font-size: 48px;
    color: var(--dark-color);
}

.intro-content .lead {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===================================
   RESPONSIVE FOR PRICING
   =================================== */

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-header {
        padding: 30px 25px;
    }

    .pricing-header h3 {
        font-size: 20px;
    }

    .pricing-header .price .amount {
        font-size: 30px;
    }

    .pricing-body {
        padding: 30px 25px;
    }

    .pricing-features li {
        font-size: 14px;
        padding: 10px 0;
    }

    .pricing-badge {
        font-size: 11px;
        padding: 6px 35px;
    }

    .intro-icon {
        width: 80px;
        height: 80px;
    }

    .intro-icon i {
        font-size: 40px;
    }

    .intro-content .lead {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-header {
        padding: 25px 20px;
    }

    .pricing-header h3 {
        font-size: 18px;
    }

    .pricing-header .price .amount {
        font-size: 26px;
    }

    .pricing-header .price .period {
        font-size: 14px;
    }

    .pricing-body {
        padding: 25px 20px;
    }

    .pricing-features li {
        font-size: 13px;
    }

    .intro-icon {
        width: 70px;
        height: 70px;
    }

    .intro-icon i {
        font-size: 36px;
    }

    .intro-content .lead {
        font-size: 15px;
    }
}

/* ===================================
   TAB BUTTONS & CONTENT STYLES
   =================================== */

/* Tab Buttons Container */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Tab Button Styles */
.tab-btn {
    padding: 12px 30px;
    background: #fffef8;
    color: var(--dark-color);
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 223, 90, 0.3);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(252, 223, 90, 0.4);
}

.tab-btn i {
    font-size: 18px;
}

/* Tab Content Styles */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tab Buttons */
@media (max-width: 768px) {
    .tab-buttons {
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tab-btn i {
        font-size: 16px;
    }
}

/* ===================================
   DETAIL IMAGE STYLES
   =================================== */

/* Detail Images in Package Details */
.detail-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 20px auto 30px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Detail Images */
@media (max-width: 768px) {
    .detail-image {
        max-width: 100%;
        margin: 15px auto 20px;
        border-radius: 8px;
    }
}

/* ========================================
   IMAGE MODAL / LIGHTBOX STYLES
   ======================================== */

.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    color: #fcdf5a;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Content Wrapper */
.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 90%;
    padding: 20px;
}

/* Modal Image */
.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Caption */
.modal-caption {
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    max-width: 800px;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Navigation Buttons */
.modal-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 20px 15px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 100001;
}

.image-modal.active .modal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: rgba(252, 223, 90, 0.8);
    color: #242321;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Clickable Images - Add cursor pointer */
.gallery-main img,
.gallery-thumbs img,
.detail-image,
.vip-images img,
.gallery-item img,
.vip-gallery img,
.vip-main-image img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-main img:hover,
.gallery-thumbs img:hover,
.vip-images img:hover,
.gallery-item img:hover,
.vip-gallery img:hover,
.vip-main-image img:hover {
    transform: scale(1.02);
}

/* ========================================
   RESPONSIVE - IMAGE MODAL
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }

    .modal-nav {
        padding: 15px 12px;
        font-size: 20px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .modal-caption {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .modal-content-wrapper {
        max-width: 95%;
        max-height: 85%;
        padding: 10px;
    }

    .modal-image {
        max-height: 70vh;
        border-radius: 6px;
    }

    .modal-nav {
        padding: 12px 10px;
        font-size: 18px;
        border-radius: 6px;
    }

    .modal-prev {
        left: 5px;
    }

    .modal-next {
        right: 5px;
    }

    .modal-caption {
        font-size: 13px;
        padding: 10px 12px;
        margin-top: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .modal-close {
        top: 8px;
        right: 8px;
        font-size: 26px;
        width: 36px;
        height: 36px;
    }

    .modal-nav {
        padding: 10px 8px;
        font-size: 16px;
    }

    .modal-image {
        max-height: 65vh;
    }

    .modal-caption {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .modal-nav {
        padding: 15px 12px;
        background: rgba(255, 255, 255, 0.2);
    }

    .modal-close {
        background: rgba(255, 255, 255, 0.2);
    }
}
