/* Service Page Styles */

/* Service Hero Section */
.service-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 50%, #9E8600 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 3px solid #9E8600;
    border-bottom: 3px solid #9E8600;
    box-shadow: 0 4px 20px rgba(158, 134, 0, 0.3);
}

.service-hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.service-hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 
        3px 3px 0px #B8860B,
        6px 6px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.service-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFF8DC;
    font-weight: 300;
    margin: 0;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(2px);
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1000px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(158, 134, 0, 0.2),
        0 0 0 1px rgba(158, 134, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 30px 60px rgba(158, 134, 0, 0.3),
        0 0 0 2px rgba(158, 134, 0, 0.2),
        inset 0 0 50px rgba(255, 215, 0, 0.1);
}

.service-card.featured {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.08) translateY(-10px) rotateX(3deg);
}

/* Service Card Header */
.service-card-header {
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 50%, #9E8600 100%);
    padding: 2.5rem;
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
}

.service-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover .service-card-header::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card-header::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 100%);
    border-radius: 0 0 60% 60%;
    z-index: 1;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: pulse 2s infinite;
}

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

.service-badge::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #FFA500;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.service-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.service-price::before {
    content: '$';
    margin-right: 0.2rem;
}

/* Service Card Body */
.service-card-body {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 100%);
}

.service-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 100%);
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.service-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    display: block;
}

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

/* Featured service image adjustments */
.service-image-featured {
    height: 280px;
}

.service-img-featured {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
    display: block;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    text-align: center;
    font-weight: 500;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(158, 134, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(158, 134, 0, 0.25);
}

.service-card.featured {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Card Header */
.service-card-header {
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 100%);
    padding: 2rem;
    position: relative;
    text-align: center;
    color: white;
}

.service-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, #9E8600 0%, #B8860B 100%);
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.service-badge::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #FFA500;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.service-price::before {
    content: '$';
    font-size: 1.5rem;
    vertical-align: top;
}

/* Service Card Body */
.service-card-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Full Package Section */
.full-package-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(158, 134, 0, 0.1) 0%, rgba(184, 160, 0, 0.15) 50%, rgba(158, 134, 0, 0.1) 100%);
    backdrop-filter: blur(1px);
}

.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.package-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #9E8600;
    border: 2px solid rgba(158, 134, 0, 0.2);
    transition: all 0.3s ease;
}

.package-item:hover {
    background: #9E8600;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 134, 0, 0.3);
}

/* Event Section */
.event-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(2px);
    border-top: 3px solid #9E8600;
}

.event-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.event-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(158, 134, 0, 0.2);
    border: 2px solid rgba(158, 134, 0, 0.1);
}

.event-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-image:hover {
    transform: scale(1.02);
}

/* Price List Section */
.price-list-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.98) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(2px);
    border-top: 3px solid #9E8600;
}

.price-list-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.price-list-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(158, 134, 0, 0.2);
    border: 2px solid rgba(158, 134, 0, 0.1);
}

.price-list-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-list-image:hover {
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card.featured {
        grid-column: 1;
        transform: scale(1);
    }
    
    .service-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .service-name {
        font-size: 1.6rem;
    }
    
    .service-price {
        font-size: 2.5rem;
    }
    
    .service-card-header {
        padding: 2rem;
    }
    
    .service-card-body {
        padding: 2rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-price {
        font-size: 2rem;
    }
    
    .service-card-header {
        padding: 1.5rem;
    }
    
    .service-card-body {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .package-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-list-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .event-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        height: 40vh;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .service-price {
        font-size: 1.8rem;
    }
    
    .package-list {
        grid-template-columns: 1fr;
    }
    
    .price-list-container {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .event-container {
        padding: 1rem;
        margin: 0 1rem;
    }
}
