/* ========================================
   PREMIUM HOMEPAGE COMPLETE STYLES - MOBILE FIRST
   ======================================== */

/* Remove default padding/margin and fix header gap */
body:has(.premium-hero) {
    padding-top: 0 !important;
    margin: 0 !important;
}

body:has(.premium-hero) main {
    padding: 0 !important;
    margin: 0 !important;
}

body:has(.premium-hero) main > .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #f093fb;
    --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%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* Match header height on home (company-hero) with plan page - desktop only */
@media (min-width: 992px) {
    body:has(.company-hero) .navbar {
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }

    body:has(.company-hero) .navbar-brand {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    body:has(.company-hero) .navbar-nav .nav-link {
        padding-top: 0.3rem !important;
        padding-bottom: 0.3rem !important;
        font-size: 0.95rem;
    }
}

/* Base font size for better mobile scaling */
html {
    font-size: 14px;
}

/* Responsive typography */
h1 {
    font-size: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

/* Container adjustments */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   HERO SECTION
   ======================================== */

.premium-hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-1);
    overflow: hidden;
    padding: 80px 0 !important;
    margin: 0 !important;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Company hero: full-screen, full-width hero under the fixed header */
.company-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;                 /* full screen height */
    display: flex;
    align-items: center;               /* vertical center */
    padding: 80px 0;                   /* top/bottom spacing for content */
}

/* When company-hero is present, make the main container full-bleed */
body:has(.company-hero) main.page-content {
    /* no extra gap under header; hero will start just below navbar */
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
}

body:has(.company-hero) main.page-content > .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.company-hero .container {
    max-width: 1140px;                 /* standard Bootstrap container width */
    padding-left: 15px;
    padding-right: 15px;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.premium-hero .container {
    position: relative;
    z-index: 10;
}

/* Force hero text above any overlays */
.premium-hero .hero-content {
    position: relative;
    z-index: 1000;
    isolation: isolate;
    /* debug: make sure it's visible while diagnosing */
    outline: 1px solid rgba(255,0,0,0.4);
    background: rgba(0,0,0,0.15);
}
.premium-hero .hero-content * {
    position: relative;
    z-index: 1001;
}

.hero-content {
    color: white;
    padding: 20px 0;
    text-align: center;
}

.hero-badge {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
}

.floating-card-1 {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card-2 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    animation: float 4s ease-in-out infinite;
}

.earning-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.earning-icon {
    font-size: 2.5rem;
}

.earning-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.earning-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.gradient-1 { background: var(--gradient-1); }
.gradient-2 { background: var(--gradient-2); }
.gradient-3 { background: var(--gradient-3); }
.gradient-4 { background: var(--gradient-4); }

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-description {
    color: #666;
    margin: 0;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.btn-category {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-category:hover {
    background: white;
    color: var(--primary);
}

.category-content {
    padding: 25px;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.category-description {
    color: #666;
    margin: 0;
}

/* Product Cards */
.product-card-premium {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.product-card-premium:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-icon:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary);
}

.product-rating {
    color: #ffa502;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-rating span {
    color: #999;
    margin-left: 5px;
}

.product-price {
    margin-bottom: 15px;
}

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

.price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-add-cart {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ========================================
   OPPORTUNITY SECTION
   ======================================== */

.opportunity-section {
    padding: 80px 0;
}

.opportunity-image {
    position: relative;
}

.opportunity-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    font-size: 2rem;
}

.badge-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.badge-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.opportunity-features {
    margin-top: 30px;
}

.opportunity-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-content-small h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.feature-content-small p {
    color: #666;
    margin: 0;
}

/* ========================================
   PREMIUM STATS SECTION
   ======================================== */

.stats-section-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    width: 100vw;
}

.stats-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 50%, rgba(240, 147, 251, 0.8) 100%);
    z-index: 0;
}

.stats-section-premium .container {
    position: relative;
    z-index: 10;
}

.section-badge-white {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title-white {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
}

.section-description-white {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-card-inner {
    text-align: center;
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    filter: blur(10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: var(--gradient-1);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-premium-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-premium-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

/* ========================================
   UTILITIES
   ======================================== */

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ========================================
   OWNER SECTION
   ======================================== */

.owner-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.owner-image-wrapper {
    position: relative;
}

.owner-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.owner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.owner-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.owner-badge .badge-icon {
    font-size: 2rem;
}

.owner-badge .badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.owner-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.owner-designation {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

.owner-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.owner-achievements {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.achievement-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.achievement-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.achievement-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.owner-quote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 25px;
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    position: relative;
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 15px;
}

.quote-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #444;
    margin: 0;
    padding-left: 40px;
    line-height: 1.8;
}

/* ========================================
   PREMIUM FOOTER
   ======================================== */

.premium-footer {
    background: #1a1a2e;
    color: #e0e0e0;
}

.footer-main {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.text-gradient-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    color: var(--primary);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-newsletter-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    margin-bottom: 25px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 60px 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: white;
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-icon.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-copyright strong {
    color: white;
}

.footer-payment-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    justify-content: flex-end;
    font-size: 1.8rem;
    color: #b0b0b0;
}

.footer-payment-methods i {
    transition: all 0.3s ease;
}

.footer-payment-methods i:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-developer {
    padding: 15px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-developer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shimmer-slide 3s infinite;
}

@keyframes shimmer-slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

.developer-badge-wrapper {
    position: relative;
    display: inline-block;
}

.developer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.developer-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 15px 60px rgba(102, 126, 234, 0.4);
}

.developer-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.developer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0.5;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.badge-icon-left,
.badge-icon-right {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    font-size: 0.85rem;
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    animation: icon-rotate 3s ease-in-out infinite;
}

.badge-icon-right {
    animation-delay: 1.5s;
}

@keyframes icon-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.badge-content {
    text-align: center;
}

.badge-text {
    color: #b0b0b0;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    font-weight: 500;
}

.viper-brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1px;
}

.viper-icon {
    font-size: 0.85rem;
    animation: icon-pulse 1.5s ease-in-out infinite;
}

.viper-icon:first-child {
    animation-delay: 0s;
}

.viper-icon:last-child {
    animation-delay: 0.75s;
}

@keyframes icon-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.3);
        opacity: 1;
    }
}

.viper-brand {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: brand-glow 2s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes brand-glow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

.badge-tagline {
    color: #888;
    font-size: 0.6rem;
    font-style: italic;
    letter-spacing: 0.2px;
    margin-top: 1px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    html {
        font-size: 12px;
    }
    
    .premium-hero {
        padding: 60px 0 !important;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-premium, .btn-premium-outline {
        width: 100%;
        margin: 5px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .stat-item {
        padding: 10px 0;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-premium, .btn-premium-outline {
        margin: 0 5px 10px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Special case for very small devices */
@media (max-width: 360px) {
    html {
        font-size: 11px;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .section-title {
        font-size: 1.3rem !important;
    }
}

/* Adjust navigation for mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #2c3e50;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-top: 10px;
    }
    
    .navbar-nav {
        padding: 10px 0;
    }
    
    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff !important;
        font-weight: 500;
    }
    
    .nav-link:hover {
        color: #4facfe !important;
    }
    
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
}

/* Fix for mobile viewport units */
@supports (-webkit-touch-callout: none) {
    .premium-hero {
        min-height: -webkit-fill-available;
    }
}

/* Prevent horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-premium,
    .btn-premium-outline {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .floating-card-2 {
        bottom: 10px;
        right: 10px;
    }
    
    .earning-card {
        padding: 15px;
    }
    
    .cta-box {
        padding: 40px 25px;
        text-align: center;
    }
}
