/* ===== SERVICES PAGE STYLES ===== */
/* Extracted from style.css - only classes used in services.php */

/* PERFORMANCE: Removed @import statements to eliminate render-blocking */
/* Variables and components are now preloaded in HTML head */

/* ===== PAGE HERO (SERVICES PAGE) ===== */
.page-hero-content h1 {
    color: var(--cosmic-gold);
    background: linear-gradient(90deg, #d4af37, #e6c46b, #f4e08a, #e6c46b, #d4af37);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.golden-text {
    position: relative;
    background: linear-gradient(90deg, #d4af37, #e6c46b, #f4e08a, #e6c46b, #d4af37);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== SERVICES CONTAINER ===== */
.services-container {
    width: 100%;                       /* Full width */
    margin: 0;                         /* No auto centering */
    padding: 4rem 2rem;                /* Standard padding */
}

.services-container > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-container.dark-cosmic {
    background: rgba(11, 20, 38, 0.95);
    padding: 4rem 2rem !important;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.services-intro p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== SINGLE COLUMN SERVICES LAYOUT ===== */
.services-single-column {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-showcase-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 300px;
    transition: all 0.3s ease;
}

.service-showcase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-gold);
}

/* ===== SERVICE LEFT SIDE (IMAGE & BUTTON) ===== */
.service-left {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-gold));
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-image-container {
    margin-bottom: 1.5rem;
}

.service-showcase-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-left .cta-button {
    margin-top: auto;
}

/* ===== SERVICE RIGHT SIDE (CONTENT) ===== */
.service-right {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.service-title {
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.service-price {
    color: var(--cosmic-gold);
    padding: 0;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== SERVICE BENEFITS ===== */
.service-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.service-benefits h4 {
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.service-benefits li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Removed conflicting rule that was hiding the check icons */

.service-benefits li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--cosmic-gold);
    position: absolute;
    left: 0;
    top: 0;
}

.service-benefits i {
    color: var(--cosmic-gold);
    font-size: 0.8rem;
}

.final-cta h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 4vw, 3rem);
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 480px) {
    .services-container.dark-cosmic {
        padding: 2.5rem 1rem !important;
    }
    
    .services-single-column {
        gap: 2rem;
    }
    
    .service-showcase-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-left {
        padding: 1.5rem;
    }
    
    .service-right {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-price {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (min-width: 481px) and (max-width: 768px) {
    .services-container.dark-cosmic {
        padding: 3rem 1.5rem !important;
    }
    
    .service-showcase-card {
        grid-template-columns: 230px 1fr;
        gap: 0;
    }
    
    .service-left {
        padding: 1.5rem;
    }
    
    .service-right {
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
}

/* ===== RESPONSIVE - MOBILE-TABLET OVERLAP ===== */
@media (min-width: 481px) and (max-width: 768px) {
    .service-showcase-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-left {
        padding: 2rem;
        order: 1;
    }
    
    .service-right {
        padding: 2rem;
        order: 2;
    }
    
    .service-image-container {
        margin-bottom: 1.5rem;
    }
}

/* ===== SERVICE META ===== */
@media (max-width: 480px) {
    .service-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== FAQ SECTION (SERVICES PAGE) ===== */
.faq-2-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

.faq-item h3,
.faq-item h4 {
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== FAQ RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-2-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}