/* home-premium.css */
body.entry-body {
    background-color: #050505 !important;
    background-image: none !important;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

body.entry-body::before,
body.entry-body::after {
    display: none !important;
}

/* Header */
.premium-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.premium-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-logo {
    height: 110px;
    width: auto;
}

.premium-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #FFD700;
    letter-spacing: 2px;
    font-weight: 600;
}

.premium-menu-btn {
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* Hero Section */
.home-premium-hero {
    padding: 10px 0px 10px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.home-premium-hero .container {
    padding-left: 10px;
    padding-right: 10px;
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 8px;
}

.text-gold {
    color: #FFD700;
}

.premium-divider {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 0 auto 8px;
}

.premium-subtitle {
    font-size: 0.8rem;
    color: #cccccc;
    margin: 0 0 6px;
    line-height: 1.2;
}

.premium-rating {
    color: #FFD700;
    font-size: 0.75rem;
    margin-bottom: 2px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.premium-authority {
    font-size: 0.7rem;
    color: #aaaaaa;
    margin: 0 0 14px;
}
.premium-authority strong {
    color: #FFD700;
    font-weight: 700;
}

/* Cards Wrapper */
.premium-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

/* Cards */
.p-card {
    position: relative;
    display: block;
    border-radius: 10px;
    padding: 12px 12px;
    text-align: left;
    text-decoration: none;
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.p-card:hover {
    transform: translateY(-2px);
}

.p-card-bg {
    position: absolute;
    top: 0;
    right: -20px;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    mask-image: linear-gradient(to right, transparent, black 80%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 80%);
    mix-blend-mode: screen;
}

.p-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,15,15,1) 50%, rgba(15,15,15,0.4) 100%);
}

.p-card-content {
    position: relative;
    z-index: 2;
    width: 70%;
}

.p-badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 0.55rem;
    font-weight: 700;
    border-radius: 99px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.p-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.1;
    margin: 0 0 6px;
    color: #ffffff;
}

.p-card-desc {
    display: none;
}

.p-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 6px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.p-arrow {
    margin-left: 2px;
    font-size: 0.9em;
}

/* Gold Theme */
.card-gold {
    border-color: rgba(255, 215, 0, 0.4);
}
.card-gold:hover {
    border-color: #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}
.card-gold .p-card-title {
    color: #FFD700;
}
.card-gold .p-badge {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.card-gold .p-card-hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, transparent);
    width: 24px;
    margin: 0 0 8px 0;
}
.card-gold .p-btn {
    background: #FFD700;
    color: #111;
}

/* Blue Theme */
.card-blue {
    border-color: rgba(59, 130, 246, 0.4);
}
.card-blue:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}
.card-blue .text-blue {
    color: #4da3ff;
}
.card-blue .p-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #4da3ff;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.card-blue .p-btn {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: #ffffff;
}

/* Footer Features */
.premium-features-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: left;
    flex: 1;
}

.pf-icon {
    font-size: 0.8rem;
}

.gold-icon {
    color: #FFD700;
}

.pf-text {
    display: flex;
    flex-direction: column;
}

.pf-text strong {
    font-size: 0.55rem;
    font-weight: 600;
    color: #eeeeee;
    line-height: 1.1;
}

.pf-text span {
    font-size: 0.5rem;
    color: #888888;
    line-height: 1.1;
}

/* Legal Footer (Overriding default styles) */
.entry-legal-footer {
    background-color: #030303 !important;
    padding: 24px 16px !important;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.entry-legal-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.entry-legal-footer strong {
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.entry-legal-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    width: 100%;
}

.entry-legal-footer nav a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.entry-legal-footer nav a:hover {
    color: #FFD700;
}

.entry-legal-footer p {
    color: #666666;
    font-size: 0.65rem;
    margin: 0;
}

/* Mobile Adjustments for Footer to be horizontal */
@media (min-width: 400px) {
    .premium-features-footer {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .pf-item {
        flex: 1 1 30%;
        min-width: 120px;
    }
}

/* Utility Classes */
.desktop-only, .desktop-only-flex {
    display: none !important;
}

/* Feature Grid for Cards */
.p-card-features {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    margin-top: 10px;
}

.p-cf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    flex: 1;
}

.p-cf-icon {
    font-size: 0.85rem;
    color: #FFD700;
}

.card-blue .p-cf-icon {
    color: #4da3ff;
}

.p-cf-item span {
    font-size: 0.55rem;
    color: #cccccc;
    line-height: 1.1;
}

.premium-desktop-nav, .premium-contact-btn {
    display: none;
}

/* Desktop Adaptation */
@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
    .desktop-only {
        display: block !important;
    }
    .desktop-only-flex {
        display: flex !important;
    }
    span.desktop-only {
        display: inline !important;
    }

    /* Header */
    .premium-topbar {
        justify-content: space-between;
        align-items: center;
    }
    .premium-desktop-nav {
        display: flex;
        gap: 32px;
    }
    .premium-desktop-nav a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    .premium-desktop-nav a:hover {
        color: #FFD700;
    }
    .premium-contact-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        border: 1px solid rgba(255, 215, 0, 0.5);
        border-radius: 99px;
        color: #FFD700;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .premium-contact-btn:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: #FFD700;
    }

    /* Hero Text */
    .home-premium-hero {
        max-width: 900px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .premium-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    .premium-subtitle {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
    .premium-authority {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .premium-rating {
        font-size: 1rem;
    }

    /* Cards Desktop */
    .premium-cards-wrapper {
        flex-direction: row;
        gap: 24px;
        margin-bottom: 40px;
    }
    .p-card {
        flex: 1;
        padding: 32px;
    }
    .p-card-title {
        font-size: 2rem;
    }
    .p-card-desc {
        display: block;
        font-size: 0.95rem;
        line-height: 1.4;
        color: #bbbbbb;
        margin-bottom: 24px;
    }
    .p-card-features {
        gap: 8px;
        margin-bottom: 24px;
        padding-top: 16px;
        margin-top: 16px;
    }
    .p-cf-item {
        gap: 6px;
    }
    .p-cf-icon {
        font-size: 1.2rem;
    }
    .p-cf-item span {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    .p-btn.full-width {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Footer Features */
    .premium-features-footer {
        padding-top: 32px;
        flex-wrap: nowrap;
        gap: 20px;
    }
    .pf-item {
        justify-content: center;
        flex: 1;
        min-width: auto;
    }
    .pf-text strong {
        font-size: 0.85rem;
    }
    .pf-text span {
        font-size: 0.75rem;
    }
}
