/*=================================
  Premium Hero Section Styles
=================================*/
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1E3A5F 0%, #2d5080 50%, #C17A4A 100%);
    overflow: hidden;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 95, 0.8), rgba(193, 122, 74, 0.6));
    z-index: 2;
}

.hero-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    position: relative;
}

.badge-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: radial-gradient(circle, rgba(193, 122, 74, 0.3), transparent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #ffd4b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animated-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 40px auto;
}

.search-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 122, 74, 0.2);
    border-radius: 12px;
    margin: 0 12px;
}

.search-icon-wrapper i {
    color: white;
    font-size: 20px;
}

.search-field {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    padding: 12px;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.gradient-btn {
    background: linear-gradient(135deg, #C17A4A 0%, #a05f35 100%);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(193, 122, 74, 0.4);
}

.hero-quick-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.hero-quick-stats .stat-item {
    text-align: center;
}

.hero-quick-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFA500;
    margin-bottom: 5px;
}

.hero-quick-stats .stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.hero-quick-stats .stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.premium-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.premium-filter {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-filter:hover {
    background: rgba(193, 122, 74, 0.3);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/*=================================
  Archive Hero - Parallax Design
=================================*/
.premium-archive-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85), rgba(193, 122, 74, 0.75));
    z-index: 2;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1E3A5F 0%, #C17A4A 100%);
}

.archive-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(193, 122, 74, 0.15) 0%, transparent 50%);
}

.hero-content-container {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumbs a {
    color: white;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 0.7;
}

.breadcrumbs .separator {
    opacity: 0.6;
}

.breadcrumbs .current {
    font-weight: 600;
}

.hero-main-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.archive-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.archive-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 20px;
}

.archive-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.archive-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.stat-box i {
    font-size: 2rem;
    color: #FFA500;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #FFA500;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-separator path {
    fill: #f5f7fa;
}

/*=================================
  Bento Grid Features Section
=================================*/
.features-bento-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf3 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(193, 122, 74, 0.1), rgba(193, 122, 74, 0.05));
    border: 1px solid rgba(193, 122, 74, 0.2);
    border-radius: 30px;
    color: #C17A4A;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.bento-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(193, 122, 74, 0.15);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 4;
    grid-row: span 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 122, 74, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 28px;
    transition: all 0.4s ease;
}

.feature-card-1 .card-icon {
    background: linear-gradient(135deg, #FFE8D6, #FFD4B3);
    color: #C17A4A;
}

.feature-card-2 .card-icon {
    background: linear-gradient(135deg, #D6E8FF, #B3D9FF);
    color: #1E3A5F;
}

.feature-card-3 .card-icon {
    background: linear-gradient(135deg, #D6FFE8, #B3FFD4);
    color: #25D366;
}

.feature-card-4 .card-icon {
    background: linear-gradient(135deg, #FFD6E8, #FFB3D4);
    color: #e74c3c;
}

.feature-card-5 .card-icon {
    background: linear-gradient(135deg, #FFE8D6, #FFC299);
    color: #f39c12;
}

.feature-card-6 .card-icon {
    background: linear-gradient(135deg, #E8D6FF, #D4B3FF);
    color: #9b59b6;
}

.bento-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.bento-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 10px;
}

.bento-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 122, 74, 0.1), transparent);
}

.card-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    height: 100%;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-mini {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.mini-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: #C17A4A;
}

.mini-stat .label {
    font-size: 13px;
    color: #666;
}

.card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa, #e8edf3);
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(193, 122, 74, 0.3);
}

/*=================================
  Pricing Section
=================================*/
.pricing-section {
    background: linear-gradient(to bottom, white 0%, #f5f7fa 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(193, 122, 74, 0.15);
    border-color: rgba(193, 122, 74, 0.3);
}

.pricing-card.popular {
    border-color: #C17A4A;
    background: linear-gradient(135deg, #FFFBF8 0%, white 100%);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C17A4A, #a05f35);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(193, 122, 74, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 36px;
    transition: all 0.4s ease;
}

.glass-card .plan-icon {
    background: linear-gradient(135deg, rgba(193, 122, 74, 0.1), rgba(193, 122, 74, 0.05));
    color: #C17A4A;
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1) rotate(-5deg);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 10px;
}

.plan-subtitle {
    color: #666;
    font-size: 14px;
}

.card-price {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: #C17A4A;
    margin-bottom: 8px;
}

.price-tag .amount {
    font-size: 3rem;
}

.price-tag .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.price-note {
    font-size: 13px;
    color: #999;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #666;
}

.features-list li i {
    color: #25D366;
    font-size: 18px;
    margin-top: 2px;
}

.btn-plan {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #C17A4A;
    color: #C17A4A;
}

.btn-outline:hover {
    background: #C17A4A;
    color: white;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 15px;
}

.trust-item i {
    font-size: 24px;
    color: #25D366;
}

/*=================================
  Responsive Design
=================================*/
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large,
    .bento-medium,
    .bento-wide {
        grid-column: span 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .hero-quick-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .premium-hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .archive-title {
        font-size: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .card-split {
        grid-template-columns: 1fr;
    }

    .archive-stats {
        flex-direction: column;
        gap: 15px;
    }
}