/* ===== EZMUSCLE PREMIUM PAGE STYLES ===== */
/* High-quality flow, animations, mobile-first responsive design */

:root {
    --premium-dark: #1a1a2e;
    --premium-accent: #0f3460;
    --premium-gold: #d4af37;
    --premium-light: #f8f9fa;
    --premium-text: #333;
    --premium-muted: #666;
    --premium-radius: 12px;
    --premium-gap: 20px;
    --premium-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HERO SECTION ===== */
.premium-hero {
    background: linear-gradient(135deg, var(--premium-accent) 0%, var(--premium-dark) 100%);
    color: white;
    padding: clamp(40px, 8vw, 80px) 20px;
    text-align: center;
    animation: fadeInDown 0.6s ease-out;
}

.premium-hero h1 {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.premium-hero p {
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.premium-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.premium-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--premium-transition);
}

.premium-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ===== MAIN CONTENT ===== */
.premium-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.premium-main {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .premium-main {
        padding: 30px 0;
    }
}

/* ===== SECTION STYLING ===== */
.premium-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 768px) {
    .premium-section {
        margin-bottom: 40px;
    }
}

.premium-section-title {
    color: var(--premium-dark);
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--premium-accent);
    font-weight: 900;
    letter-spacing: -0.3px;
}

.premium-intro {
    font-size: clamp(15px, 1.2vw, 16px);
    color: var(--premium-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

/* ===== GRID LAYOUTS ===== */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--premium-gap);
    margin: 30px 0;
}

@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.premium-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ===== CARD STYLES ===== */
.premium-card {
    background: var(--premium-light);
    border-left: 5px solid var(--premium-gold);
    padding: 25px;
    border-radius: var(--premium-radius);
    transition: var(--premium-transition);
    animation: fadeInUp 0.6s ease-out;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.premium-card h4 {
    color: var(--premium-accent);
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.premium-card p {
    font-size: 15px;
    color: var(--premium-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== STAT CARDS ===== */
.premium-stat-card {
    background: linear-gradient(135deg, var(--premium-accent) 0%, var(--premium-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: var(--premium-radius);
    text-align: center;
    transition: var(--premium-transition);
    animation: scaleIn 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(15, 52, 96, 0.2);
}

.premium-stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(15, 52, 96, 0.3);
}

.premium-stat-number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 900;
    color: var(--premium-gold);
    margin-bottom: 12px;
    line-height: 1;
}

.premium-stat-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 600;
}

/* ===== LIST STYLES ===== */
.premium-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.premium-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    color: var(--premium-text);
    line-height: 1.6;
    transition: var(--premium-transition);
}

.premium-list li:last-child {
    border-bottom: none;
}

.premium-list li:hover {
    color: var(--premium-accent);
    padding-left: 40px;
}

.premium-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* ===== FEATURE SECTION ===== */
.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--premium-gap);
    margin: 30px 0;
}

@media (max-width: 768px) {
    .premium-features {
        grid-template-columns: 1fr;
    }
}

.premium-feature {
    padding: 20px;
    background: white;
    border-radius: var(--premium-radius);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--premium-transition);
    animation: fadeInUp 0.6s ease-out;
}

.premium-feature:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.premium-feature h3 {
    color: var(--premium-accent);
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.premium-feature p {
    color: var(--premium-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ===== LOCATION GRID ===== */
.premium-location-card {
    background: var(--premium-light);
    padding: 25px;
    border-radius: var(--premium-radius);
    border-left: 5px solid var(--premium-gold);
    transition: var(--premium-transition);
    animation: fadeInUp 0.6s ease-out;
}

.premium-location-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.premium-location-card h4 {
    color: var(--premium-accent);
    font-size: 18px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.premium-location-card p {
    font-size: 14px;
    color: var(--premium-muted);
    margin: 8px 0;
    line-height: 1.5;
}

/* ===== COMPARISON SECTION ===== */
.premium-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--premium-gap);
    margin: 30px 0;
}

@media (max-width: 768px) {
    .premium-comparison {
        grid-template-columns: 1fr;
    }
}

.premium-comparison-item {
    background: var(--premium-light);
    padding: 25px;
    border-radius: var(--premium-radius);
    border-left: 4px solid var(--premium-gold);
    transition: var(--premium-transition);
}

.premium-comparison-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.premium-comparison-item strong {
    display: block;
    color: var(--premium-accent);
    margin-bottom: 8px;
    font-size: 16px;
}

.premium-comparison-item p {
    font-size: 14px;
    color: var(--premium-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== HIGHLIGHT BOX ===== */
.premium-highlight {
    background: linear-gradient(135deg, var(--premium-gold) 0%, #c9a227 100%);
    color: var(--premium-dark);
    padding: 30px;
    border-radius: var(--premium-radius);
    margin: 30px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    animation: scaleIn 0.6s ease-out;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

/* ===== CONTACT SECTION ===== */
.premium-contact {
    background: var(--premium-light);
    padding: 30px;
    border-radius: var(--premium-radius);
    border-left: 5px solid var(--premium-gold);
    animation: fadeInUp 0.6s ease-out;
}

.premium-contact h3 {
    color: var(--premium-accent);
    margin-bottom: 15px;
    font-size: 18px;
}

.premium-contact-item {
    margin-bottom: 12px;
    font-size: 15px;
}

.premium-contact a {
    color: var(--premium-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--premium-transition);
}

.premium-contact a:hover {
    color: var(--premium-gold);
    text-decoration: underline;
}

/* ===== FOOTER SECTION ===== */
.premium-footer {
    background: var(--premium-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 50px;
}

.premium-footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.premium-footer p:last-child {
    opacity: 0.7;
    font-size: 12px;
    margin-top: 20px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
    .premium-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 640px) {
    .premium-hero {
        padding: 30px 15px;
    }

    .premium-main {
        padding: 20px 0;
    }

    .premium-section {
        margin-bottom: 30px;
    }

    .premium-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .premium-container {
        padding: 0 15px;
    }

    .premium-list li {
        padding: 10px 0 10px 30px;
        font-size: 14px;
    }

    .premium-stat-card {
        padding: 20px;
    }

    .premium-badges {
        gap: 8px;
    }

    .premium-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== SMOOTH TRANSITIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.premium-card:focus-within,
.premium-feature:focus-within,
.premium-contact a:focus {
    outline: 2px solid var(--premium-gold);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .premium-card,
    .premium-stat-card,
    .premium-feature {
        break-inside: avoid;
    }
}
