/* ============================================
   GUZALIC - Services Page Specific Styles
============================================ */

/* Service Detail Container */
.service-detail-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.service-detail-container.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    position: relative;
}

.service-detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
}

.service-detail-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-accent);
    border-radius: 20px;
    z-index: -1;
}

.service-detail-container.reverse .service-detail-image::before {
    left: auto;
    right: -20px;
}

.service-detail-content {
    flex: 1;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--light-silver);
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Treatment Grid */
.service-treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.treatment-card {
    background: var(--secondary-black);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.treatment-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--gold-accent);
    transition: var(--transition-smooth);
}

.treatment-card:hover .treatment-icon {
    background: var(--gold-accent);
    color: var(--primary-black);
}

.treatment-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.treatment-card p {
    color: var(--dark-silver);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.treatment-price {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .service-detail-container,
    .service-detail-container.reverse {
        flex-direction: column;
    }
    
    .service-detail-image {
        flex: 1;
        width: 100%;
    }
    
    .service-detail-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-card {
        padding: 25px;
    }
}

/* Page Hero */
.page-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(26,26,26,0.8) 100%);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero-content .section-subtitle {
    display: inline-block;
    margin-bottom: 15px;
}

.page-hero-content h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--light-silver);
    max-width: 600px;
    margin: 0 auto 25px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark-silver);
}

.breadcrumb a {
    color: var(--gold-accent);
    text-decoration: none;
}

/* Price Table */
.price-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.price-table-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.price-column {
    background: var(--secondary-black);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-column h4 {
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: var(--light-silver);
}

.price-item span:last-child {
    color: var(--gold-accent);
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--secondary-black);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.service-card h3 {
    color: var(--gold-accent);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card .price {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Why Choose Section */
.why-choose {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-item i {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--dark-silver);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .price-table-two-col {
        grid-template-columns: 1fr;
    }
}
