/* Ultra Modern Imperial Market Styles */

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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --light-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border-color: #334155;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 300px;
}

.loader-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.loader-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo img {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.menu-section {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.2);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: transparent;
    position: relative;
    z-index: 1001;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

/* Ensure navbar buttons are consistent across all pages */
.navbar .btn-primary {
    background: var(--gradient-1) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--shadow-glow) !important;
    width: auto !important;
    font-size: inherit !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-text {
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 400px;
    height: 400px;
}

.card-3d {
    position: absolute;
    width: 300px;
    height: 180px;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

.card-visa {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-mastercard {
    top: 150px;
    left: 100px;
    animation-delay: 2s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(10deg); }
}

.card-face {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card-face::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-30%, -30%) rotate(180deg); }
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
}

.card-number {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
}

.card-holder {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-expiry {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
}

.security-badges {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.security-badge {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--success-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 25px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.service-icon {
margin-bottom: 2rem;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--success-color);
    justify-content: center;
    text-align: center;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Products Showcase */
.products-showcase {
    background: var(--dark-bg);
}

.product-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.product-item.hidden {
    display: none;
}

.product-card-3d {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card-3d:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.product-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.product-icon.visa {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.product-icon.mastercard {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.product-icon.western {
    background: rgba(250, 204, 21, 0.2);
    color: #facc15;
}

.product-icon.moneygram {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
}

.product-icon.cashapp {
    background: rgba(34, 197, 94, 0.2) !important;
    color: #22c55e !important;
}

.product-icon.cloned {
    background: rgba(248, 249, 250, 0.8) !important;
    color: #6b7280 !important;
}

.product-icon.wise {
    background: rgba(109, 30, 212, 0.2) !important;
    color: #6D1ED4 !important;
}

.product-icon.skrill {
    background: rgba(134, 33, 101, 0.2) !important;
    color: #862165 !important;
}

.product-icon.revolut {
    background: rgba(127, 132, 246, 0.2) !important;
    color: #7F84F6 !important;
}

.product-icon.giftcards {
    background: rgba(251, 146, 60, 0.2) !important;
    color: #fb923c !important;
}

.faq-search input:focus {
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.product-badge {
    background: var(--gradient-1);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.product-badge.discount {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product-badge.elite {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    border: 1px solid #64748b;
}

.product-badge.popular {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-badge.hot {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.product-body {
    padding: 1.5rem;
}

.product-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.spec {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-weight: 600;
    color: var(--text-primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    justify-content: center;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.price-discount {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.product-footer .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Security Section */
.security {
    position: relative;
    overflow: hidden;
}

.security-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--dark-bg) 100%);
    opacity: 0.5;
}

.security-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.security-features {
    margin-bottom: 3rem;
}

.security-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.warning-notice {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    margin-top: 2rem;
}

.warning-icon {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.warning-text h4 {
    color: var(--danger-color);
    margin-bottom: 0.5rem;
}

.warning-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-shield {
    position: relative;
    width: 300px;
    height: 300px;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: shieldRotate 10s linear infinite;
}

@keyframes shieldRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.shield-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Trust Section */
.trust {
    background: var(--light-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.trust-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.footer-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hidden Products */
.hidden-product {
    display: none !important;
}

.visible-product {
    display: block !important;
}

.see-more-container {
    text-align: center;
    margin-top: 2rem;
}

#seeMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Mobile Responsive Styles - Consolidated */
@media (max-width: 768px) {
    /* Navigation - TOGGLE BUTTON PRIORITY */
    .navbar-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        z-index: 9999 !important;
        padding: 12px !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        border: 2px solid rgba(99, 102, 241, 0.5) !important;
        background: rgba(99, 102, 241, 0.2) !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-width: 50px !important;
        min-height: 50px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .navbar-toggle:hover {
        background-color: rgba(99, 102, 241, 0.3) !important;
        border-color: rgba(99, 102, 241, 0.7) !important;
        transform: scale(1.05) !important;
    }
    
    .navbar-toggle span {
        width: 25px !important;
        height: 3px !important;
        background: var(--text-primary) !important;
        border-radius: 2px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        transform-origin: center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-menu {
        position: fixed;
        left: 0;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transform: translateX(-100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 2rem 1rem;
        flex-direction: column !important;
        display: flex !important;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
        left: 0;
    }
    
    /* Icon wrapper */
    .icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .menu-section {
        margin-bottom: 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        justify-content: center;
        align-items: center;
    }
    
    /* Center the first menu section if it has 4 items (Home, Services, Products, Security) */
    .menu-section:first-child {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-section:first-child .nav-link:nth-child(4) {
        grid-column: 2;
        justify-self: center;
    }
    
    .menu-section:last-child {
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .menu-section:last-child .btn-primary {
        background: var(--gradient-1) !important;
        color: white !important;
        border: none !important;
        padding: 12px 24px !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        transition: all 0.3s ease !important;
        box-shadow: var(--shadow-glow) !important;
        width: auto !important;
        justify-content: center;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 0.8rem 0.5rem;
        color: var(--text-secondary);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-weight: 500;
        text-align: center;
        border: 1px solid transparent;
        font-size: 0.85rem;
        justify-self: center;
        align-self: center;
    }
    
    .nav-link:hover {
        background: rgba(99, 102, 241, 0.1);
        color: var(--text-primary);
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    .nav-link.active {
        background: var(--gradient-1) !important;
        color: white !important;
        border-color: transparent !important;
    }
    
    .navbar-brand {
        text-align: center !important;
        height: 50px !important;
    }
    
    .navbar-brand img {
        height: 50px !important;
    }
    
    .brand-text {
        display: none;
    }
    
/* Footer Mobile Responsive Styles */
    .footer {
        padding: 3rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .link-group {
        margin-bottom: 1rem;
    }
    
    .link-group h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .link-group a {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .brand-text {
        display: block;
        margin-top: 0.5rem;
        font-size: 1.2rem;
    }
    
    /* Proofs CTA Section Mobile Styles */
    .cta-content {
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .cta-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
    
    /* Proofs Trust Section Mobile Styles */
    .trust-content {
        text-align: center;
    }
    
    .trust-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .trust-header .section-badge {
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .trust-header .section-title {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .trust-header .section-subtitle {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Proofs Trust Section Desktop Styles */
.proofs .trust-content {
    text-align: center !important;
}

.proofs .trust-header {
    text-align: center !important;
    margin-bottom: 3rem;
}

.proofs .trust-header .section-badge {
    display: inline-block !important;
    margin: 0 auto 1rem auto !important;
    text-align: center !important;
}

/* FairTrade & MagicTrade Hover Light Effect - All Screen Sizes */
.security-feature-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    transition: all 0.3s ease;
}

.security-feature-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.05);
}

/* Footer Brand Centering - Desktop View */
.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-brand .brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand .brand-logo img {
    margin: 0 auto;
}

.footer-brand p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

/* Checkout Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #0f0f23);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px 15px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

/* Center only form labels, not the inputs */
.modal-body .form-group label {
    text-align: center;
    display: block;
    margin-bottom: 8px;
}

/* Center payment method label */
.modal-body .form-group > label:first-child {
    text-align: center;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Shipping methods styling */
.shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.05);
}

.shipping-option input[type="radio"] {
    margin-right: 10px;
}

.shipping-label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Center form action buttons */
.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Total Price Section */
.total-price-section {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.total-price-section h3 {
    margin: 0 0 15px 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.total-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Payment Modal Styles - Ensure no conflicts */
#paymentModal {
    display: none;
    position: fixed;
    z-index: 10000; /* Higher z-index than checkout modal */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

#paymentModal .modal-content {
    background-color: var(--bg-primary);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

#paymentModal .modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px 15px 0 0;
    position: relative;
}

#paymentModal .modal-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

#paymentModal .close-modal {
    position: absolute;
    right: 30px;
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#paymentModal .close-modal:hover {
    color: var(--accent);
    background: rgba(99, 102, 241, 0.1);
}

#paymentModal .modal-body {
    padding: 30px;
}

.payment-info {
    text-align: center;
}

.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(99, 102, 241, 0.2);
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-details {
    animation: fadeIn 0.5s ease-in;
}

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

.payment-amount {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.payment-amount h3 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.amount-display {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.crypto-symbol {
    font-size: 1.5rem;
    opacity: 0.8;
}

.fiat-amount {
    font-size: 1rem;
    opacity: 0.7;
}

.payment-address {
    margin-bottom: 20px;
}

.payment-address h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.address-container {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.address-display {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.copy-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #4f46e5;
}

.payment-qr {
    margin-bottom: 20px;
}

.qr-placeholder {
    background: rgba(99, 102, 241, 0.05);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: var(--text-secondary);
}

.qr-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.qr-placeholder p {
    margin: 5px 0;
    font-weight: 600;
}

.qr-placeholder small {
    opacity: 0.7;
}

.payment-instructions {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.payment-instructions h4 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
    text-align: center;
}

.payment-instructions ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-secondary);
    text-align: center;
    list-style-position: inside;
}

.payment-instructions li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-align: center;
    list-style: none;
}

.payment-instructions li::before {
    content: "•";
    color: #6366f1;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.close-modal {
    position: absolute;
    right: 30px;
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.close-modal:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.modal-body {
    padding: 30px;
}

#checkoutForm .form-group {
    margin-bottom: 25px;
}

#checkoutForm label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

#checkoutForm input[type="text"],
#checkoutForm input[type="email"],
#checkoutForm textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#checkoutForm input:focus,
#checkoutForm textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

#checkoutForm textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-label img {
    display: block;
    flex-shrink: 0;
    align-self: center;
    margin: 0;
}

.payment-label:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.payment-label span {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

/* Mobile Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 10% auto;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Center Revolut Service Card */
.services-grid .service-card:last-child {
    grid-column: 2;
    justify-self: center;
}

/* Responsive adjustments for centered Revolut card */
@media (max-width: 992px) {
    .services-grid .service-card:last-child {
        grid-column: 1;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .services-grid .service-card:last-child {
        grid-column: 1;
        justify-self: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .navbar-toggle {
        padding: 10px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .navbar-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .navbar-container {
        padding: 0 1rem;
        height: 70px;
    }

    .navbar-brand img {
        height: 40px !important;
    }
    
    /* Security Feature Icons Mobile Centering - FairTrade & MagicTrade Only */
    .security-features .security-feature {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .security-features .security-feature .feature-icon {
        margin: 0 auto 1rem auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .security-features .security-feature .feature-content {
        text-align: center;
    }

    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 120px 0 40px 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .floating-cards {
        width: 220px;
        height: 220px;
    }
    
    .card-3d {
        width: 180px;
        height: 110px;
        transform: scale(0.7);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
    
    .footer-social {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .product-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .faq-search {
        max-width: 90%;
    }
    
    .search-container {
        padding: 15px 20px;
    }
    
    .faq-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-filter {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .navbar-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        transform: none;
        box-shadow: none;
        max-height: none;
        overflow-y: visible;
    }
    
    .navbar-toggle {
        display: none;
    }
    
    .menu-section {
        display: flex;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Improved Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-filter {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .product-card-3d {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .product-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .product-header h3 {
        font-size: 1.1rem;
    }
    
    .product-body {
        padding: 1rem;
    }
    
    .product-body h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-body p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .product-specs {
        flex-direction: column;
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .product-price {
        text-align: center;
        margin: 1rem 0;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .price-original {
        font-size: 1rem;
    }
    
    .product-footer {
        padding: 1rem;
        text-align: center;
    }
    
    .btn-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Responsive Typography */
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .service-features span {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    /* Hero Section Mobile Optimizations */
    .hero {
        padding: 70px 0 60px 0;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        align-items: center;
        min-height: auto;
        position: relative;
    }
    
    .hero-text {
        order: 2;
        padding: 0 1rem;
        margin-top: 60px;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 1rem;
        margin-top: 80px;
    }
    
    .hero-badge {
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        margin-bottom: 0;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }
    
    .floating-cards {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .card-3d {
        width: 220px;
        height: 130px;
        transform: scale(0.8);
    }
    
    .card-visa {
        top: 30px;
        left: 30px;
    }
    
    .card-mastercard {
        top: 100px;
        left: 60px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .security-badge {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-particles {
        opacity: 0.3;
    }
    
    .hero-gradient {
        background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.1) 0%, 
            rgba(139, 92, 246, 0.05) 50%, 
            rgba(236, 72, 153, 0.1) 100%);
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .floating-cards {
        width: 300px;
        height: 300px;
    }
    
    .card-3d {
        width: 250px;
        height: 150px;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .security-features {
        margin-bottom: 2rem;
    }
    
    .security-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
    
    .security-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .security-shield {
        width: 200px;
        height: 200px;
    }
    
    .shield-core {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .warning-notice {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .warning-icon {
        margin-bottom: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }
    
    .trust-item {
        padding: 1.5rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 0.8rem;
    }
    
    .trust-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .trust-item p {
        font-size: 0.85rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus States */
.btn-primary:focus,
.btn-secondary:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
