/* ===================================
   Global Styles
   =================================== */
:root {
    --primary-color: #d4a745;
    --secondary-color: #2c3e50;
    --dark-bg: #1a2332;
    --darker-bg: #0f1419;
    --light-text: #ffffff;
    --muted-text: #b0b8c4;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --card-bg: #ffffff;
    --border-color: #e1e4e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Fixed Social Icons
   =================================== */
.fixed-social-icons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-bar a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color);
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    background-color: var(--dark-bg) !important;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 11px;
    color: var(--muted-text);
    letter-spacing: 3px;
    margin-top: -5px;
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 600;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: var(--light-text);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231a2332" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 167, 69, 0.2);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: var(--muted-text);
    line-height: 1.8;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c89833 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 167, 69, 0.4);
    background: linear-gradient(135deg, #c89833 0%, var(--primary-color) 100%);
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

/* Trust Badges */
.trust-badges {
    margin-top: 60px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.trust-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-card h6 {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* ===================================
   Trusted Tools Section
   =================================== */
.trusted-tools-section {
    background-color: #ffffff;
}

.trusted-tools-section h3 {
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 150px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    border: 2px solid #e0e0e0;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.3;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.step-icon i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ===================================
   Why Choose Us - Comparison Table
   =================================== */
.why-choose-section {
    background-color: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    color: white;
}

.comparison-table th {
    padding: 20px;
    font-weight: 600;
    text-align: center;
    border: none;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.comparison-table i {
    font-size: 24px;
}

/* ===================================
   Trusted Orders Section
   =================================== */
.trusted-orders-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.order-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.order-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
}

.pricing-section .section-title {
    color: white;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c89833 100%);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price .old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #999;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 18px;
}

.pricing-footer {
    padding: 0 30px 30px;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    font-weight: 700;
    border-radius: 50px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stat-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* ===================================
   Featured Section
   =================================== */
.featured-section {
    background-color: #ffffff;
}

.featured-logo {
    height: 80px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #666;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.featured-logo:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* ===================================
   Blog Section
   =================================== */
.blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background-color: #ffffff;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 20px;
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    color: #666;
    line-height: 1.8;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stars i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    flex-shrink: 0;
}

.testimonial-author h6 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author small {
    color: #999;
}

/* ===================================
   Final CTA Section
   =================================== */
.final-cta-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
}

.cta-box {
    text-align: center;
    padding: 60px 20px;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 800;
}

.cta-box p {
    font-size: 18px;
    color: var(--muted-text);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.guarantee-badge i {
    font-size: 24px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--dark-bg);
    color: var(--muted-text);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: 2px;
}

.footer-logo .logo-subtext {
    font-size: 10px;
    color: var(--muted-text);
    letter-spacing: 3px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--light-text);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact span {
    color: var(--muted-text);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-link {
    color: var(--muted-text);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .fixed-social-icons {
        left: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        margin-bottom: 5px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .fixed-social-icons {
        flex-direction: row;
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
    }
}

/* ===================================
   Smooth Scrolling
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   Loading Animation
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}