/* Premium Service Page Styles */

/* Base Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem 2rem;
    overflow: hidden;
    background: #111; /* Fallback */
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
    transform: scale(1.05);
    animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    color: var(--bg-color); /* Assuming light text on dark background for hero */
}

.service-hero .subtitle {
    font-family: var(--font-sans);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.service-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-hero p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    opacity: 0.9;
}

.service-btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Premium Buttons */
.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border-radius: 4px;
}

.premium-btn-primary {
    background: var(--accent-color);
    color: var(--bg-color);
    border: 1px solid var(--accent-color);
}

.premium-btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.premium-btn-outline {
    background: transparent;
    color: var(--bg-color);
    border: 1px solid rgba(250, 249, 246, 0.5);
}

.premium-btn-outline:hover {
    border-color: var(--bg-color);
    background: rgba(250, 249, 246, 0.1);
}

/* Glassmorphism Sections & Cards */
.glass-section {
    position: relative;
    padding: 8rem 2rem;
    background: var(--bg-color);
}

.glass-section.dark {
    background: #fdfaf8; /* Slightly different tone */
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .subtitle {
    font-family: var(--font-sans);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-color);
    line-height: 1.2;
    font-weight: 400;
}

/* Social Proof Grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 3rem;
    border: 1px solid rgba(62, 39, 35, 0.08);
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.06);
}

.stars {
    color: var(--accent-color);
    letter-spacing: 4px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.review-author {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* Split Feature Layout */
.split-feature {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-feature.reverse {
    flex-direction: row-reverse;
}

.split-image-container {
    flex: 1;
    position: relative;
}

.split-image-container::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--accent-color);
    z-index: 0;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.split-feature.reverse .split-image-container::after {
    left: 20px;
    right: -20px;
}

.split-image-container:hover::after {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
}

.split-feature.reverse .split-image-container:hover::after {
    left: 10px;
    right: -10px;
}

.split-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.split-content p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(62, 39, 35, 0.8);
    margin-bottom: 1.5rem;
}

/* Step-by-Step Timeline */
.timeline-section {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 4rem 0;
}

.timeline-step {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step.reverse {
    flex-direction: row-reverse;
}

.timeline-img-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 50% 50% 0 0; /* Arch shape */
    aspect-ratio: 3/4;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.timeline-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.timeline-step:hover .timeline-img-wrapper img {
    transform: scale(1.05);
}

.timeline-info {
    flex: 1;
}

.timeline-num {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.timeline-info h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.timeline-info p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(62, 39, 35, 0.8);
}

/* Pricing Grid Premium */
.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-premium {
    background: #fff;
    padding: 4rem 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(62, 39, 35, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.06);
    border-color: var(--accent-color);
}

.pricing-card-premium.highlight {
    background: var(--bg-color);
    border: 2px solid var(--accent-color);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(199, 122, 140, 0.15);
}

.pricing-card-premium.highlight:hover {
    transform: translateY(-25px);
}

.highlight-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 20px;
    font-weight: 500;
}

.pricing-card-premium h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.pricing-card-premium .size {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: block;
}

.pricing-card-premium .price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: rgba(62, 39, 35, 0.8);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(62, 39, 35, 0.05);
}

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

/* Payment Options */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.payment-card {
    background: #fff;
    padding: 3rem;
    border: 1px solid rgba(62, 39, 35, 0.08);
    border-radius: 8px;
    text-align: center;
}

.payment-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.payment-card p {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: rgba(62, 39, 35, 0.8);
}

.info-box {
    background: #fff;
    padding: 4rem;
    border-radius: 0px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.info-box h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.info-box p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(62, 39, 35, 0.8);
    margin-bottom: 1rem;
}

/* Featured Testimonial Banner */
.featured-testimonial {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 8rem 2rem;
    text-align: center;
}

.featured-testimonial .quote {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-style: italic;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    color: var(--bg-color);
}

.featured-testimonial .author {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* Premium Gallery */
.gallery-premium {
    column-count: 3;
    column-gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) { .gallery-premium { column-count: 2; } }
@media (max-width: 576px) { .gallery-premium { column-count: 1; } }

.gallery-item {
    margin-bottom: 1.5rem;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 39, 35, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Premium Accordion */
.accordion-premium {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(62, 39, 35, 0.1);
}

.accordion-item:first-child {
    border-top: 1px solid rgba(62, 39, 35, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2rem 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--accent-color);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--text-color);
    transition: transform 0.4s ease;
}

.accordion-icon::before {
    top: 11px;
    left: 0;
    width: 100%;
    height: 2px;
}

.accordion-icon::after {
    top: 0;
    left: 11px;
    width: 2px;
    height: 100%;
}

.accordion-header.active .accordion-icon::after {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content-inner {
    padding-bottom: 2rem;
    font-family: var(--font-sans);
    line-height: 1.8;
    color: rgba(62, 39, 35, 0.8);
    font-size: 1.05rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .split-feature, .split-feature.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .timeline-step, .timeline-step.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    .timeline-img-wrapper {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }

    .service-hero h1 {
        font-size: 3rem;
    }

    .glass-section {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .pricing-card-premium {
        padding: 3rem 1.5rem;
    }

    .payment-card {
        padding: 2rem 1.5rem;
    }
    
    .info-box {
        padding: 2.5rem 1.5rem;
    }

    .featured-testimonial {
        padding: 4rem 1.5rem;
    }

    .featured-testimonial .quote {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-btn-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .premium-btn {
        width: 100%;
        text-align: center;
    }

    .split-content h2 {
        font-size: 2.2rem;
    }

    .timeline-num {
        font-size: 3rem;
    }

    .timeline-info h3 {
        font-size: 1.6rem;
    }

    .pricing-card-premium h3 {
        font-size: 1.8rem;
    }

    .pricing-card-premium .price {
        font-size: 2rem;
    }
}
