/* Hero Carousel */
        .hero-carousel {
            position: relative;
            overflow: hidden;
            height: auto !important;
            max-height: 500px;
        }

        .hero-slide {
            display: none;
            width: 100%;
            max-height: 500px;
            overflow: hidden;
        }

        .hero-slide.active {
            display: block;
        }

        .hero-slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .hero-slide-noimage {
            background: linear-gradient(135deg, #800000, #5C0000);
            padding: 80px 20px;
            text-align: center;
            color: #FFD700;
        }

        .hero-slide-noimage i {
            font-size: 80px;
            margin-bottom: 15px;
            display: block;
        }

        .hero-slide-noimage span {
            font-size: 18px;
            font-weight: 600;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            color: var(--primary-maroon);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            font-size: 20px;
        }

        .carousel-arrow:hover {
            background: var(--primary-maroon);
            color: var(--accent-gold);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 30px;
        }

        .carousel-next {
            right: 30px;
        }

        .carousel-controls {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 12px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.6);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--accent-gold);
            width: 35px;
            border-radius: 10px;
        }

        /* Service Overview */
        .service-overview {
            padding: 80px 0;
            background: var(--white);
            text-align: center;
        }

        .overview-badge {
            display: inline-block;
            background: var(--light-bg);
            color: var(--primary-maroon);
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 2px solid var(--primary-maroon);
        }

        .service-overview h1 {
            font-size: 48px;
            color: var(--text-dark);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .overview-description {
            font-size: 20px;
            line-height: 1.8;
            color: var(--text-light);
            max-width: 900px;
            margin: 0 auto 50px;
        }

        .overview-features {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .overview-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 30px;
            background: var(--light-bg);
            border-radius: 15px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .overview-feature:hover {
            border-color: var(--primary-maroon);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 24px;
        }

        .feature-text {
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .feature-text strong {
            font-size: 16px;
            color: var(--text-dark);
        }

        .feature-text span {
            font-size: 14px;
            color: var(--text-light);
        }

        .overview-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .overview-btn {
            padding: 16px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid;
        }

        .overview-btn i {
            font-size: 18px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
            border-color: var(--primary-maroon);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(128,0,0,0.3);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-maroon);
            border-color: var(--primary-maroon);
        }

        .btn-secondary:hover {
            background: var(--primary-maroon);
            color: var(--accent-gold);
            transform: translateY(-3px);
        }

        .btn-whatsapp {
            background: var(--success-green);
            color: var(--white);
            border-color: var(--success-green);
        }

        .btn-whatsapp:hover {
            background: #20BA5A;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37,211,102,0.4);
        }

        /* Service Info */
        .service-info {
            padding: 80px 0;
            background: var(--white);
        }

        .info-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
        }

        .info-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .info-content p {
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 16px;
            color: var(--text-dark);
        }

        .info-highlights {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--primary-maroon);
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .highlight-item:last-child {
            margin-bottom: 0;
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 24px;
            flex-shrink: 0;
        }

        .highlight-content h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .highlight-content p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
        }

        /* Packages Section */
        .packages-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .section-title span {
            background: linear-gradient(135deg, var(--primary-maroon), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 60px;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .package-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .package-card.featured {
            border-color: var(--primary-maroon);
            transform: scale(1.05);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .package-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border-color);
        }

        .package-name {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .package-price {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 5px;
        }

        .package-duration {
            font-size: 14px;
            color: var(--text-light);
        }

        .package-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .package-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .package-feature i {
            color: var(--primary-maroon);
            margin-top: 4px;
        }

        .package-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .package-card.featured {
            border-color: var(--primary-maroon);
            transform: scale(1.05);
        }

        .package-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border-color);
        }

        .package-name {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .package-price {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 5px;
        }

        .package-duration {
            font-size: 14px;
            color: var(--text-light);
        }

        .package-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .package-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .package-feature i {
            color: var(--primary-maroon);
            margin-top: 4px;
        }

        .package-actions {
            display: flex;
            gap: 10px;
        }

        .package-btn {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-call {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
        }

        .btn-call:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(128,0,0,0.3);
        }

        .btn-whatsapp-pkg {
            background: var(--success-green);
            color: var(--white);
        }

        .btn-whatsapp-pkg:hover {
            background: #20BA5A;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(37,211,102,0.4);
        }

        /* What's Included */
        .whats-included {
            padding: 80px 0;
            background: var(--white);
        }

        .included-content {
            max-width: 900px;
            margin: 0 auto;
            background: var(--light-bg);
            padding: 50px;
            border-radius: 20px;
            border-left: 5px solid var(--primary-maroon);
        }

        .included-content p {
            font-size: 17px;
            line-height: 1.9;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .included-content p:last-child {
            margin-bottom: 0;
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '→';
            position: absolute;
            right: -30px;
            top: 40px;
            font-size: 30px;
            color: var(--accent-gold);
            font-weight: 700;
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            margin: 0 auto 20px;
            border: 4px solid var(--accent-gold);
        }

        .process-step h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .process-step p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--white);
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light-bg);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .faq-question {
            padding: 25px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(128, 0, 0, 0.05);
        }

        .faq-question i {
            color: var(--primary-maroon);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 25px 25px;
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .carousel-arrow {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .carousel-prev {
                left: 10px;
            }

            .carousel-next {
                right: 10px;
            }

            .carousel-controls {
                bottom: 10px;
                gap: 8px;
            }

            .carousel-dot {
                width: 10px;
                height: 10px;
            }

            .carousel-dot.active {
                width: 28px;
            }

            .hero-slide-noimage {
                padding: 60px 15px;
            }

            .hero-slide-noimage i {
                font-size: 60px;
            }

            .service-overview {
                padding: 20px 15px 30px;
            }

            .service-overview h1 {
                font-size: 28px;
            }

            .overview-description {
                font-size: 16px;
            }

            .overview-features {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
            }

            .overview-feature {
                justify-content: flex-start;
            }

            .overview-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .overview-btn {
                justify-content: center;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .packages-grid,
            .process-steps {
                grid-template-columns: 1fr;
            }

            .package-card.featured {
                transform: scale(1);
            }

            .package-card.featured:hover {
                transform: translateY(-10px);
            }

            .package-actions {
                flex-direction: column;
            }

            .included-content {
                padding: 30px 20px;
            }

            .process-step::after {
                display: none;
            }

            .section-title {
                font-size: 32px;
            }
        }