/* ============================================
   ELITE PREMIUM STYLES - UNIQUE DESIGN
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background: #0a0e27;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* CSS Variables */
:root {
    --elite-primary: #ff6b35;
    --elite-primary-dark: #e55a2b;
    --elite-secondary: #4ecdc4;
    --elite-accent: #ffe66d;
    --elite-dark: #0a0e27;
    --elite-darker: #050811;
    --elite-card: rgba(255, 255, 255, 0.05);
    --elite-card-hover: rgba(255, 255, 255, 0.1);
    --elite-text: #ffffff;
    --elite-text-muted: #b8bcc8;
    --elite-border: rgba(255, 255, 255, 0.1);
    --elite-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --elite-shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* Animated Background */
.elite-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    overflow: hidden;
}

.elite-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--elite-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: elite-float 20s infinite ease-in-out;
    box-shadow: 0 0 20px var(--elite-primary);
}

.elite-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.elite-particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.elite-particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.elite-particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.elite-particle:nth-child(5) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.elite-particle:nth-child(6) {
    left: 60%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.elite-particle:nth-child(7) {
    left: 80%;
    animation-delay: 5s;
    animation-duration: 19s;
}

.elite-particle:nth-child(8) {
    left: 40%;
    animation-delay: 7s;
    animation-duration: 21s;
}

@keyframes elite-float {
    0%, 100% {
        transform: translateY(100vh) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(50px) scale(1.5);
        opacity: 1;
    }
}

/* Container */
.elite-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.elite-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--elite-border);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.elite-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.elite-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.elite-logo-link:hover {
    transform: scale(1.05);
}

.elite-logo-img {
    height: 45px;
    width: auto;
}

.elite-nav {
    display: flex;
}

.elite-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.elite-nav-link {
    color: var(--elite-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.elite-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--elite-primary);
    transition: width 0.3s ease;
}

.elite-nav-link:hover::after,
.elite-nav-link.elite-active::after {
    width: 100%;
}

.elite-nav-link:hover,
.elite-nav-link.elite-active {
    color: var(--elite-primary);
}

.elite-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.elite-burger-line {
    width: 25px;
    height: 3px;
    background: var(--elite-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.elite-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.elite-close-line {
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--elite-text);
    border-radius: 3px;
}

.elite-close-line:first-child {
    transform: rotate(45deg);
}

.elite-close-line:last-child {
    transform: rotate(-45deg);
}

/* Hero Section */
.elite-hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.elite-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.elite-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--elite-text);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    animation: elite-fadeInUp 1s ease;
}

.elite-hero-subtitle {
    font-size: 22px;
    color: var(--elite-accent);
    font-weight: 600;
    margin-bottom: 30px;
    animation: elite-fadeInUp 1s ease 0.2s both;
}

.elite-hero-text {
    font-size: 18px;
    color: var(--elite-text-muted);
    line-height: 1.8;
    animation: elite-fadeInUp 1s ease 0.4s both;
}

@keyframes elite-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Title */
.elite-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--elite-text);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.elite-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--elite-primary), var(--elite-secondary));
    border-radius: 2px;
}

/* Brands Section */
.elite-brands {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.elite-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.elite-brand-card {
    background: var(--elite-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--elite-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

@keyframes elite-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
        transform: scale(1.02);
    }
}

.elite-brand-card:first-child {
    animation: elite-pulse 2s ease-in-out infinite;
}

.elite-brand-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.elite-brand-card:hover::before {
    opacity: 1;
}

.elite-brand-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--elite-card-hover);
    border-color: var(--elite-primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.elite-brand-image-wrapper {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elite-brand-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.elite-brand-image-link:hover {
    transform: scale(1.1);
}

.elite-brand-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.elite-brand-card:hover .elite-brand-img {
    filter: brightness(1) invert(1) drop-shadow(0 0 10px var(--elite-primary));
    transform: scale(1.1);
}

.elite-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--elite-text);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.elite-brand-bonus {
    font-size: 14px;
    color: var(--elite-text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.elite-brand-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--elite-primary), var(--elite-primary-dark));
    color: var(--elite-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.elite-brand-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--elite-secondary), var(--elite-primary));
    transition: left 0.3s ease;
    z-index: -1;
}

.elite-brand-btn:hover::before {
    left: 0;
}

.elite-brand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Why Us Section */
.elite-why {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.elite-why-content {
    max-width: 900px;
    margin: 0 auto;
}

.elite-why-text {
    font-size: 17px;
    color: var(--elite-text-muted);
    line-height: 1.9;
    margin-bottom: 30px;
}

.elite-why-list {
    list-style: none;
    margin: 40px 0;
}

.elite-why-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--elite-card);
    border: 1px solid var(--elite-border);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.elite-why-item:hover {
    background: var(--elite-card-hover);
    border-color: var(--elite-primary);
    transform: translateX(10px);
}

.elite-why-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--elite-primary), var(--elite-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elite-text);
    font-weight: 700;
    font-size: 20px;
}

.elite-why-item-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--elite-text);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.elite-why-item-text {
    font-size: 15px;
    color: var(--elite-text-muted);
    line-height: 1.7;
}

/* Reviews Section */
.elite-reviews {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.elite-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.elite-review-card {
    background: var(--elite-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--elite-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.elite-review-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: transform 0.4s ease;
}

.elite-review-card:hover::after {
    transform: translate(20%, -20%) scale(1.5);
}

.elite-review-card:hover {
    transform: translateY(-8px);
    background: var(--elite-card-hover);
    border-color: var(--elite-secondary);
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.2);
}

.elite-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.elite-review-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--elite-primary), var(--elite-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elite-text);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.elite-review-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--elite-text);
    font-family: 'Montserrat', sans-serif;
}

.elite-review-text {
    font-size: 15px;
    color: var(--elite-text-muted);
    line-height: 1.8;
    font-style: italic;
}

/* FAQ Section */
.elite-faq {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.elite-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.elite-faq-item {
    background: var(--elite-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--elite-border);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.elite-faq-item:hover {
    background: var(--elite-card-hover);
    border-color: var(--elite-primary);
}

.elite-faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    cursor: pointer;
}

.elite-faq-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--elite-primary), var(--elite-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elite-text);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.elite-faq-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--elite-text);
    font-family: 'Montserrat', sans-serif;
}

.elite-faq-answer {
    padding: 0 25px 25px 85px;
    font-size: 15px;
    color: var(--elite-text-muted);
    line-height: 1.8;
}

/* Footer */
.elite-footer {
    background: rgba(5, 8, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--elite-border);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

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

.elite-footer-section {
    display: flex;
    flex-direction: column;
}

.elite-footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--elite-text);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.elite-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.elite-footer-link {
    color: var(--elite-text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.elite-footer-link:hover {
    color: var(--elite-primary);
    padding-left: 5px;
}

.elite-footer-support {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.elite-support-link {
    display: inline-block;
    transition: transform 0.3s ease;
}


.elite-support-link:hover {
    transform: scale(1.1);
}

.elite-support-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(0.7);
    transition: filter 0.3s ease;
}

@media (max-width:450px) {
    .elite-support-link {
        max-width: 200px;
        width: 100%;
    }

    .elite-support-img {
        height: 35px;
        object-fit: contain;
    }
}

.elite-support-link:hover .elite-support-img {
    filter: brightness(0) invert(1);
}

.elite-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--elite-border);
}

.elite-footer-copyright {
    color: var(--elite-text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.elite-footer-warning {
    color: var(--elite-text-muted);
    font-size: 13px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 991px) {
    .elite-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--elite-border);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 30px 30px;
    }
    
    .elite-nav.elite-active {
        right: 0;
    }
    
    .elite-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .elite-nav-link {
        font-size: 18px;
    }
    
    .elite-burger {
        display: flex;
    }
    
    .elite-close.elite-active {
        display: flex;
    }
    
    .elite-hero-title {
        font-size: 36px;
    }
    
    .elite-hero-subtitle {
        font-size: 18px;
    }
    
    .elite-hero-text {
        font-size: 16px;
    }
    
    .elite-section-title {
        font-size: 32px;
    }
    
    .elite-brands-grid {
        grid-template-columns: 1fr;
    }
    
    .elite-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .elite-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .elite-hero {
        padding: 120px 0 80px;
    }
    
    .elite-hero-title {
        font-size: 28px;
    }
    
    .elite-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .elite-brands,
    .elite-why,
    .elite-reviews,
    .elite-faq {
        padding: 60px 0;
    }
    
    .elite-brand-card,
    .elite-review-card {
        padding: 20px;
    }
    
    .elite-faq-answer {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .elite-container {
        padding: 0 15px;
    }
    
    .elite-hero-title {
        font-size: 24px;
    }
    
    .elite-hero-subtitle {
        font-size: 16px;
    }
    
    .elite-section-title {
        font-size: 24px;
    }
}

/* Policy Pages Styles */
.elite-policy-page {
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.elite-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--elite-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--elite-border);
    border-radius: 20px;
    padding: 50px;
}

.elite-policy-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--elite-text);
    margin-bottom: 20px;
    text-align: center;
}

.elite-policy-intro {
    font-size: 18px;
    color: var(--elite-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.elite-policy-section {
    margin-bottom: 40px;
}

.elite-policy-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--elite-text);
    margin-bottom: 15px;
}

.elite-policy-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--elite-primary);
    margin-top: 25px;
    margin-bottom: 15px;
}

.elite-policy-section p {
    font-size: 16px;
    color: var(--elite-text-muted);
    line-height: 1.9;
    margin-bottom: 15px;
}

.elite-policy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.elite-policy-list li {
    font-size: 16px;
    color: var(--elite-text-muted);
    line-height: 1.9;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.elite-policy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--elite-primary);
    font-weight: bold;
}

.elite-policy-list li strong {
    color: var(--elite-text);
}

@media (max-width: 768px) {
    .elite-policy-content {
        padding: 30px 20px;
    }
    
    .elite-policy-title {
        font-size: 32px;
    }
    
    .elite-policy-heading {
        font-size: 24px;
    }
    
    .elite-policy-subheading {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .elite-animated-bg,
    .elite-header,
    .elite-footer,
    .elite-burger,
    .elite-close {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

