/* --- STANDARD PREMIUM SERVICE PAGE CSS --- */

:root {
    --text-dark: #222222;
    --text-light: #555555;
    --brand-teal: #128c8e;
    --brand-orange: #f75d31;
    --bg-cream: #FDF9F1;
}

body.premium-service {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
}

.premium-nav {
    padding: 20px 40px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-nav h2 {
    color: var(--brand-teal);
    margin: 0;
    font-size: 1.5rem;
}

.premium-nav a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
}

.premium-hero {
    display: flex;
    align-items: center;
    background-color: white;
    max-width: 1100px;
    margin: 60px auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.premium-hero-img {
    flex: 1;
    max-width: 50%;
}

.premium-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-hero-content {
    flex: 1;
    padding: 60px;
}

.premium-hero-content span {
    text-transform: uppercase;
    color: var(--brand-orange);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.premium-hero-content h1 {
    font-size: 3rem;
    color: var(--brand-teal);
    margin: 10px 0 20px 0;
    line-height: 1.1;
}

.premium-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.premium-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--brand-teal);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.premium-btn:hover {
    background-color: #0d6e6f;
}

/* Responsive */
@media(max-width: 900px) {
    .premium-hero {
        flex-direction: column;
        margin: 20px;
    }
    .premium-hero-img {
        max-width: 100%;
    }
    .premium-hero-content {
        padding: 40px 20px;
    }
    .premium-hero-content h1 {
        font-size: 2.2rem;
    }
}
