/* ===== SEO WEB DEVELOPMENT SPECIFIC STYLES ===== */

/* Packages Section */
.package-card {
    background: var(--navwhite);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
    max-width: 38rem;
}

.package-card.featured {
    border-top: 4px solid var(--gold);
}

.package-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.price-tag {
    margin-bottom: 15px;
}

.price-tag .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.price-tag .period {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.package-subtitle {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.package-body {
    padding: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--black);
    text-align: left;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--gold);
    font-size: 1rem;
}

.package-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pkg-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.pkg-btn.primary {
    background: var(--black);
    color: var(--navwhite);
}

.pkg-btn.primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.pkg-btn.outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.pkg-btn.outline:hover {
    background: var(--black);
    color: var(--navwhite);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: block;
    text-decoration: none;
    color: var(--navwhite);
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(226, 184, 116, 0.5);
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.pricing-card .price .period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.pricing-card .desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    min-height: 40px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tier-features li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.tier-features li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 5px;
}

.highlight-tier {
    border-color: var(--gold);
    background: rgba(226, 184, 116, 0.05);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enterprise Box */
.enterprise-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 60rem;
    margin: 0 auto;
}

.enterprise-header {
    text-align: center;
    margin-bottom: 40px;
}

.enterprise-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.enterprise-header p {
    font-size: 1.1rem;
    color: #555;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ent-item {
    display: block;
    text-decoration: none;
    background: var(--navwhite);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    color: var(--black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ent-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ent-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.ent-item h4 {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.ent-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.enterprise-cta {
    text-align: center;
}

/* Specific Utilities */
.proof-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.min-cta-icon {
    font-size: 0.75rem;
}

/* Top Toast Popup - Dynamic Island Style */
.top-toast-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -20px) scale(0.9);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(226, 184, 116, 0.2);
    padding: 6px 8px 6px 20px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    max-width: calc(100vw - 40px);
}

.top-toast-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navwhite);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.toast-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-content:hover {
    color: var(--gold);
}

.toast-content:hover .toast-logo {
    transform: scale(1.15) rotate(-5deg);
}

.toast-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    margin-left: auto;
}

.toast-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.faq-filter {
    position: relative;
    min-width: 150px;
}

.faq-filter select {
    appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--navwhite);
    padding: 8px 30px 8px 15px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    width: 100%;
    cursor: pointer;
    outline: none;
}

.faq-filter select:focus {
    border-color: rgba(226, 184, 116, 0.5);
}

.faq-filter select option {
    background: var(--black);
    color: var(--navwhite);
}

.faq-filter .select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    text-align: left;
    gap: 20px;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer-inner {
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: left;
}

.faq-answer-link-p {
    margin-top: 10px;
}

.faq-answer-link {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer-link:hover {
    color: var(--navwhite);
}

.faq-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.faq-email {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 8px 4px 12px;
    max-width: 100%;
}

.faq-email a {
    color: var(--navwhite);
    text-decoration: none;
    font-family: monospace;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.faq-email button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.faq-email button:hover {
    color: var(--gold);
}

/* Hide faq items that are filtered out */
.faq-item[style*="display: none"] {
    border-bottom: none !important;
}

@media screen and (max-width: 768px) {
    .enterprise-box {
        padding: 25px 15px;
    }

    .price-tag .amount {
        font-size: 2.5rem;
    }

    .top-toast-popup {
        top: 20px;
        width: max-content;
        padding: 8px 10px 8px 24px;
        gap: 15px;
    }

    .toast-content {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .toast-logo {
        height: 26px;
    }

    .toast-close {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .faq-filter {
        width: 100%;
    }

    .faq-container {
        padding: 20px;
    }

    .faq-footer {
        flex-direction: column;
        text-align: center;
    }

    .faq-email {
        width: 100%;
        justify-content: space-between;
    }
}