/* ========================================
   HOMEPAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(45, 45, 45, 0.8) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background-image: url('../images/hero/usd.jpeg');
}

.hero-slide:nth-child(2) {
    background-image: url('../images/hero/eurob.jpeg');
}

.hero-slide:nth-child(3) {
    background-image: url('../images/hero/bp.jpeg');
}

.hero-slide:nth-child(4) {
    background-image: url('../images/hero/cad.jpeg');
}

.hero-slide:nth-child(5) {
    background-image: url('../images/hero/usd.jpeg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(45, 45, 45, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: #000;
}

.btn-hero-secondary {
    background: transparent;
    color: #d4af37;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #f4d03f;
    border-color: #f4d03f;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, #f0f0f0 0%, #f8f8f8 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.trust-item {
    padding: 1rem;
}

.trust-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.trust-item h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.8) 0%, rgba(240, 240, 240, 0.8) 100%), url('../images/hero/services.jpeg');
    background-size: cover;
    background-position: center;
}

.section-title {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #333;
    font-size: 1.1rem;
}

.category-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.category-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.category-card h4 {
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.category-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #f4d03f;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d8d8d8 0%, rgba(212, 175, 55, 0.1) 25%, #e0e0e0 50%, rgba(244, 208, 63, 0.08) 75%, #d8d8d8 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.feature-box h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* How It Works */
.how-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d0d0d0 0%, rgba(212, 175, 55, 0.12) 25%, #d8d8d8 50%, rgba(244, 208, 63, 0.09) 75%, #d0d0d0 100%);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.step-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: #666;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    position: relative;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.disclaimer-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 2.5rem;
}

.disclaimer-icon {
    font-size: 4rem;
    color: #d4af37;
}

.disclaimer-title {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1rem;
}

.disclaimer-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d8d8d8 0%, rgba(212, 175, 55, 0.15) 25%, #e0e0e0 50%, rgba(244, 208, 63, 0.12) 75%, #d8d8d8 100%);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-title {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-cta-secondary {
    background: transparent;
    color: #d4af37;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #f4d03f;
}

/* Testimonials Section */
.testimonials-section {
    padding: 2rem 0;
    background: #f8f8f8;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-quote {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info h5 {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary, .btn-hero-secondary,
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #f5f5f5 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-card {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.prop-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 4rem;
    color: #d4af37;
}

.product-name {
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-usage {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-price {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.qty-btn {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #d4af37;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.qty-input {
    width: 50px;
    height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #e0e0e0;
    border-radius: 5px;
}

.btn-add-cart {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 0.7rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(40, 167, 69, 0.95);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #dc3545;
    color: #fff;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 5px;
}

/* Product Cards Images */
.product-image {
    width: 100%;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.product-placeholder i {
    font-size: 4rem;
    color: #d4af37;
}
/* Sections with background image and gradient */
.testimonials-section,
.disclaimer-section,
.trust-bar {
    background: linear-gradient(135deg, rgba(26, 61, 46, 0.6) 0%, rgba(45, 90, 71, 0.5) 100%), 
                url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1920&h=1080&fit=crop') center/cover;
    position: relative;
    color: #e0e0e0;
}

.testimonials-section::before,
.disclaimer-section::before,
.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 61, 46, 0.5) 0%, rgba(45, 90, 71, 0.4) 100%);
    z-index: 1;
}

.testimonials-section > .container,
.disclaimer-section > .container,
.trust-bar > .container {
    position: relative;
    z-index: 2;
}
/* Text readability improvements for sections with background */
.trust-bar h5,
.trust-bar p,
.testimonials-section .section-subtitle,
.testimonials-section p,
.disclaimer-section h3,
.disclaimer-section p {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.testimonials-section .section-title {
    color: #d4af37 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.trust-bar .trust-icon {
    color: #f4d03f !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
/* Testimonial cards text in black */
.testimonial-card p,
.testimonial-card h5,
.testimonial-card span {
    color: #333333 !important;
    text-shadow: none !important;
}


