/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1F1835;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #FDE7B3;
}

a {
    color: #FDE7B3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    justify-content: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(0deg, rgba(206, 0, 12, 1) 0%, rgba(144, 0, 6, 1) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(206, 0, 12, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 0, 12, 0.4);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(0deg, rgba(84, 70, 161, 1) 0%, rgba(63, 53, 120, 1) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(84, 70, 161, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84, 70, 161, 0.4);
    color: #fff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Header */
.header {
    background: linear-gradient(0deg, rgba(32, 24, 53, 1) 0%, rgba(74, 52, 91, 1) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #FDE7B3;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FDE7B3;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-size: 2.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(0deg, rgba(32, 24, 53, 1) 0%, rgba(74, 52, 91, 1) 100%);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FDE7B3;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #FDE7B3;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 0.9rem;
    color: #FDE7B3;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
}

@media (max-width: 1520px) {
    .nav {
        display: none;
        width: 100%;
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(0deg, rgba(32, 24, 53, 1) 0%, rgba(74, 52, 91, 1) 100%);
        padding: 1rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -8px);
    } 
}

@media (max-width: 768px) {

    .reviews-grid {
        flex-direction: column;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-wrap: wrap;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-actions .btn {
        width: 100%;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .btn {
        padding: 12px 20px;
        min-height: 44px;
    }
    
    .btn-large {
        padding: 14px 24px;
        min-height: 48px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

picture {
    display: block;
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: #ffffff;
}

td {
    color: #FDE7B3;
}

/* User Reviews */
.user-reviews {
    padding: 60px 0;
    background: linear-gradient(135deg, #2A1F4A 0%, #1F1835 100%);
}

.reviews-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.reviews-image {
    order: 1;
}

.reviews-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reviews-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    order: 2;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-style: italic;
    color: #FDE7B3;
    font-size: 1.1rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.author-info span {
    color: #FDE7B3;
    font-size: 0.9rem;
}

/* Related Offers */
.related-offers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.related-offers-text {
    order: 1;
}

.related-offers-image {
    order: 2;
}

.related-offers-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.why-choose-text {
    order: 1;
}

.why-choose-image {
    order: 2;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.features-text {
    order: 1;
}

.features-image {
    order: 2;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Slider Section */
.slider-section {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: scale(1.1) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #FF6B6B !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }

    .swiper-pagination-bullets-dynamic {
        display: none !important; 
    }
    
    .slider-content {
        padding: 15px 25px;
        margin: 0 20px;
    }
    
    .slider-content h2 {
        font-size: 1.5rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }

    .payment-methods {
        justify-content: center;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
    }
    
    .reviews-content,
    .related-offers-content,
    .why-choose-content,
    .features-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reviews-image,
    .related-offers-image,
    .why-choose-image,
    .features-image {
        order: 1;
    }
    
    .reviews-grid,
    .related-offers-text,
    .why-choose-text,
    .features-text {
        order: 2;
    }
}

@media (max-width: 480px) {
    
    .slider-content {
        padding: 10px 20px;
        margin: 0 15px;
    }
    
    .slider-content h2 {
        font-size: 1.2rem;
    }
}
