/* AI Podcast Packages Section */
.dark-pricing {
    background-color: #0f172a;
    padding: 3rem 2rem 4rem;
    color: #fff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.dark-pricing .section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dark-pricing .section-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.dark-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dark-pricing-card {
    background-color: #1e2436;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #2d3748;
    display: flex;
    flex-direction: column;
}

.dark-pricing-card.featured {
    border: 1px solid #6366f1;
    transform: scale(1.02);
    z-index: 1;
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dark-pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.icon-purple {
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
}

.icon-yellow {
    background: rgba(234, 179, 8, 0.1);
    color: #facc15;
}

.dark-pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dark-pricing-subtitle {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.dark-pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.dark-pricing-price span {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.dark-pricing-total {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.total-blue {
    color: #60a5fa;
}

.total-pink {
    color: #f472b6;
}

.total-yellow {
    color: #facc15;
}

.dark-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.dark-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.dark-pricing-features li i {
    font-size: 0.9rem;
}

.check-blue {
    color: #60a5fa;
}

.check-purple {
    color: #c084fc;
}

.check-yellow {
    color: #facc15;
}

.dark-btn {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.dark-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dark-btn-gradient {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #ffffff;
    border: none;
}

.dark-btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .dark-pricing-card.featured {
        transform: scale(1);
    }
}

/* Long-Term Branding Plans Section */
.border-cyan {
    border: 2px solid #00d8ff;
    background-color: #1a2235;
    border-radius: 12px;
}

.title-cyan {
    color: #00d8ff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.text-cyan {
    color: #00d8ff;
    width: 24px;
    text-align: center;
}

.border-silver {
    border: 2px solid #e2e8f0;
    background-color: #1a2235;
    border-radius: 12px;
}

.title-silver {
    color: #e2e8f0;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.text-silver {
    color: #e2e8f0;
    width: 24px;
    text-align: center;
}

.border-pink {
    border: 2px solid #f472b6;
    background-color: #1a2235;
    border-radius: 12px;
}

.title-pink {
    color: #f472b6;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.text-pink {
    color: #f472b6;
    width: 24px;
    text-align: center;
}

.badge-white {
    background-color: #ffffff;
    color: #111526;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
}

.divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: auto 0 1rem 0;
    width: 100%;
    padding-top: 1rem;
}

.payable-text {
    color: #fff;
    font-size: 0.85rem;
}

.text-white {
    color: #ffffff !important;
    font-size: 2.2rem !important;
}

.text-white span {
    font-size: 1.2rem !important;
}

.long-term-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.long-term-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Info Cards Section */
.info-cards-section {
    background-color: #fff;
    padding: 3rem 2rem 3rem 2rem;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.info-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background-color: #171d2b;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.info-card-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.info-card-header i {
    font-size: 1.6rem;
    color: #60a5fa;
}

/* Numbered List Styles */
.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.numbered-circle {
    background-color: #6366f1;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.numbered-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    color: #ffffff;
}

.numbered-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.5;
}

/* Check List Styles */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-circle {
    background-color: #ffffff;
    color: #0b1121;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.check-item span {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

@media (max-width: 992px) {
    .info-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Who Should Take This Service Section */
.who-should {
    background-color: #2f333e;
    padding: 5rem 2rem;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.who-should-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.who-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.who-left p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 95%;
}

.who-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.who-btn-outline:hover {
    background: #ffffff;
    color: #0b1121;
}

.who-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.who-card {
    background-color: #171e2e;
    border-radius: 8px;
    padding: 1.5rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    min-height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.who-card:hover {
    transform: translateY(-5px);
    background-color: #1f273b;
}

.who-icon {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.who-card span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    color: #e2e8f0;
}

@media (max-width: 992px) {
    .who-should-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .who-left {
        text-align: center;
    }

    .who-left p {
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 576px) {
    .who-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Header Book Tickets Button */
.btn-book-header {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #ffba00;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    white-space: nowrap;
    margin-left: 20px;
}

.btn-book-header:hover {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    color: #ffffff;
}

@media (max-width: 768px) {
    .btn-book-header {
        padding: 8px 18px;
        font-size: 12px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 0 10px;
    }

    .header-container {
        gap: 5px;
    }

    .logo-icon img {
        height: 50px;
        margin-left: -20px;
        /* Shifts logo further left */
    }

    .btn-book-header {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
        /* font-family: serif; */
        font-family: serif;
        font-weight: 800;
        box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
    }
}

/* Elite Section - Screenshot Matched Design */
.elite-section {
    background-color: #e7e1e1;
    padding: 60px 0;
}

.elite-section .container {
    max-width: 1200px;
}

.elite-section .about-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.elite-section .about-image {
    display: flex;
    justify-content: center;
}

.elite-section .about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow like the screenshot */
    width: 100%;
    max-width: 550px;
}

.elite-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    margin-bottom: 25px;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.elite-section .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    /* Gray text as seen in screenshot */
    margin-bottom: 1.2rem;
    font-weight: 400;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.elite-section .btn-book-header {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #ffba00;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    white-space: nowrap;
    margin-left: 20px;
}

.elite-section .btn-book-header:hover {
    transform: scale(1.02) !important;
    background: #ff6a00 !important;
    box-shadow: 0 6px 25px rgba(255, 124, 0, 0.35) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .elite-section .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .elite-heading {
        text-align: center;
        font-size: 2.2rem;
    }

    .elite-section .about-text p {
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .elite-section .btn-book-header {
        justify-content: center;
    }
}