/* ===========================================
   GeoEco Farms - Landing Page Styles
   Modern, Animated & Responsive Design
   =========================================== */

/* ============ CSS Variables ============ */
:root {
    --primary-color: #1a5d1a;
    --primary-dark: #0d3d0d;
    --primary-light: #2e8b2e;
    --secondary-color: #ffc107;
    --secondary-dark: #e6a800;
    --accent-color: #ff6b35;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --dark-color: #0d2818;
    --light-color: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gradient-primary: linear-gradient(135deg, #1a5d1a 0%, #2e8b2e 100%);
    --gradient-gold: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    --gradient-dark: linear-gradient(135deg, #0d2818 0%, #1a4d2e 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(26, 93, 26, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ============ Base Styles ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
    max-width: 100vw;
}

/* Prevent horizontal overflow on all elements */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

.container, .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

::selection {
    background: var(--primary-color);
    color: #fff;
}

/* ============ Preloader ============ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: var(--transition-slow);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    max-width: 300px;
}

.loader-logo {
    width: 180px;
    max-width: 80vw;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

@media (min-width: 576px) {
    .loader-logo {
        width: 220px;
    }
}

@media (min-width: 768px) {
    .loader-logo {
        width: 250px;
    }
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@media (min-width: 768px) {
    .loader-spinner {
        width: 50px;
        height: 50px;
    }
}

.loader p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .loader p {
        font-size: 14px;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ============ Floating Social Icons ============ */
.floating-socials {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
}

.social-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 55px;
    background: var(--dark-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.social-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.social-btn:hover {
    transform: scale(1.15) translateX(5px);
}

.social-btn.whatsapp { background: #25D366; }
.social-btn.telegram { background: #0088cc; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #FF0000; }

@media (max-width: 768px) {
    .floating-socials {
        display: none !important;
    }
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .social-btn::before {
        display: none;
    }
}

/* ============ Navigation ============ */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(26, 93, 26, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    transition: var(--transition);
    height: 40px;
}

.brand-text {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 10px 14px;
    margin: 0 2px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-buttons .btn {
    border-radius: 25px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-buttons .btn-warning {
    background: var(--gradient-gold);
    border: none;
    color: var(--dark-color);
}

.nav-buttons .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.5);
}

.nav-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.nav-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-toggler:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 35px;
        max-width: 160px;
    }
    
    .brand-text {
        font-size: 18px;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        padding: 80px 20px 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .navbar-nav .nav-link {
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 10px;
        color: #fff;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .nav-buttons {
        flex-direction: column;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        gap: 12px;
    }
    
    .nav-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        justify-content: center;
    }
    
    .nav-buttons .text-light {
        display: block !important;
        text-align: center;
        padding: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        width: 100%;
    }
    
    /* Mobile Menu Overlay */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1;
    }
    
    .navbar-collapse.show::before {
        opacity: 1;
        visibility: visible;
    }
    
    /* Close Button for Mobile Menu */
    .navbar-collapse .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .navbar-collapse .close-menu:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
}

/* ============ Hero Section ============ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
}

.heroSwiper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.heroSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.9) 0%, rgba(13, 61, 13, 0.8) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.slide-content h1 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.slide-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 160px;
}

.hero-buttons .btn-warning {
    background: var(--gradient-gold);
    border: none;
    color: var(--dark-color);
}

.hero-buttons .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-buttons .btn-outline-light:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 6px;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    z-index: 10;
}

.stat-box {
    text-align: center;
    padding: 12px 8px;
}

.stat-box i {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.stat-box h3 {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.stat-box p {
    color: var(--gray-600);
    margin: 0;
    font-size: clamp(0.65rem, 1.5vw, 0.9rem);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        width: 100%;
    }
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 260px;
        min-width: unset;
    }
    .hero-buttons .btn i {
        font-size: 0.85rem;
    }
    .stat-box h3 {
        font-size: 1.2rem;
    }
    .hero-stats {
        padding: 15px 0;
    }
    .stat-box {
        padding: 8px 4px;
    }
    .stat-box i {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 1.3rem;
    }
    .slide-content p {
        font-size: 0.85rem;
    }
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .stat-box h3 {
        font-size: 1rem;
    }
    .stat-box p {
        font-size: 0.7rem;
    }
    .stat-box i {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .slide-content h1 {
        font-size: 1.15rem;
    }
    .slide-content p {
        font-size: 0.8rem;
    }
    .stat-box h3 {
        font-size: 0.9rem;
    }
    .stat-box p {
        font-size: 0.6rem;
    }
    .stat-box {
        padding: 6px 2px;
    }
}

/* ============ Section Styles ============ */
.section-subtitle {
    display: inline-block;
    background: rgba(26, 93, 26, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ About Section ============ */
.about-section {
    background: var(--light-color);
}

.about-images {
    position: relative;
}

.about-images .img-main {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-images .img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid #fff;
    animation: float 3s ease-in-out infinite;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--gradient-gold);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite reverse;
}

.experience-badge h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
}

.experience-badge p {
    font-size: 0.8rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.about-features {
    margin-top: 30px;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-features .feature-item h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.about-features .feature-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .about-images .img-float {
        width: 150px;
        right: 10px;
        bottom: -20px;
    }
    .experience-badge {
        left: 10px;
        padding: 15px 20px;
    }
}

/* ============ Packages Section ============ */
.packages-section {
    background: #fff;
}

.package-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.package-card.popular {
    border-color: var(--secondary-color);
    transform: scale(1.02);
}

.package-card.popular::before {
    background: var(--gradient-gold);
}

.package-card.premium::before {
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
}

.package-card.elite::before {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-badge.popular {
    background: var(--gradient-gold);
    color: var(--dark-color);
}

.package-badge.premium {
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
}

.package-badge.elite {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-icon .package-svg {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.package-card:hover .package-svg {
    transform: scale(1.1);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.package-price {
    margin-bottom: 15px;
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: super;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.package-return {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.package-return .return-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.package-return .return-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.package-return .return-multiplier {
    display: inline-block;
    background: var(--success-color);
    color: #fff;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--success-color);
    margin-right: 8px;
}

.package-features li i.fa-gift {
    color: var(--secondary-color);
}

.btn-package {
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    width: 100%;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 93, 26, 0.3);
    color: #fff;
}

/* ============ How It Works Section ============ */
.how-it-works-section {
    background: var(--gradient-dark);
    color: #fff;
}

.how-it-works-section .section-subtitle {
    background: rgba(255, 193, 7, 0.2);
    color: var(--secondary-color);
}

.how-it-works-section .section-title {
    color: #fff;
}

.how-it-works-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--dark-color);
}

.step-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Pool Explanation */
.pool-explanation {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-top: 50px;
}

.pool-explanation h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.pool-explanation .lead {
    color: rgba(255, 255, 255, 0.8);
}

.pool-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.pool-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
}

.pool-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.pool-members {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.pool-item i {
    color: var(--secondary-color);
}

/* ============ Income Section ============ */
.income-section {
    background: var(--light-color);
}

.income-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.income-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.income-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.1) 0%, rgba(46, 139, 46, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.income-card h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.income-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* ============ Testimonials Section ============ */
.testimonials-section {
    background: #fff;
}

.testimonialSwiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h5 {
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark-color);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.testimonialSwiper .swiper-pagination-bullet {
    background: var(--gray-400);
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* ============ FAQ Section ============ */
.faq-section {
    background: var(--light-color);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark-color);
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px 25px;
    background: #fff;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============ CTA Section ============ */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content .lead {
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-content .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .cta-content .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

/* ============ Contact Section ============ */
.contact-section {
    background: #fff;
}

.contact-card {
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #fff;
}

.contact-card h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.8;
}

/* ============ Footer ============ */
.footer {
    background: var(--gradient-dark);
    color: #fff;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand h4 {
    font-weight: 700;
    margin: 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.app-btn:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.app-btn i {
    font-size: 1.5rem;
}

.app-btn span {
    font-weight: 500;
    font-size: 0.9rem;
}

.payment-methods img {
    height: 25px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ============ Auth Modals ============ */
.auth-modal {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.auth-modal .modal-header {
    padding: 30px 30px 0;
}

.auth-modal .modal-title {
    font-weight: 700;
    color: var(--dark-color);
}

.auth-modal .form-floating > label {
    color: var(--gray-600);
}

.auth-modal .form-control {
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    padding: 15px;
    transition: var(--transition);
}

.auth-modal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.1);
}

.password-toggle {
    text-decoration: none;
    color: var(--gray-500);
    z-index: 10;
    padding-right: 15px;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.auth-modal .btn-success {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
}

.auth-modal .btn-success:hover {
    box-shadow: 0 5px 20px rgba(26, 93, 26, 0.3);
}

.auth-modal .alert-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: none;
    color: var(--success-color);
}

.auth-modal .alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    color: var(--info-color);
}

.auth-modal .alert-danger {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: none;
    color: var(--danger-color);
}

/* Sponsor Verification Styles */
.auth-modal .input-group .form-control {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.auth-modal .input-group .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 12px 20px;
}

.auth-modal .form-control.is-valid {
    border-color: var(--success-color);
    background-image: none;
}

.auth-modal .form-control.is-invalid {
    border-color: var(--danger-color);
    background-image: none;
}

#sponsorInfo .alert {
    border-radius: var(--border-radius);
}

#sponsorInfo .fa-check-circle {
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Sponsor Verified Card (from referral link) */
.sponsor-verified-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 15px;
}

.sponsor-verified-card .sponsor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.sponsor-verified-card .fa-check-circle {
    animation: pulseGreen 2s infinite;
}

/* ============ Utility Classes ============ */
.text-warning {
    color: var(--secondary-color) !important;
}

.btn-success {
    background: var(--gradient-primary);
    border: none;
}

.btn-success:hover {
    background: var(--primary-dark);
}

/* Username Suggestions */
.username-suggestion {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 15px;
    transition: var(--transition);
}

.username-suggestion:hover {
    background: var(--success-color);
    color: white;
    transform: scale(1.05);
}

#usernameStatus {
    font-size: 0.8rem;
}

#usernameSuggestions {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 10px;
}

/* ============ Animations ============ */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ============ Responsive ============ */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.8rem;
    }
    .pool-explanation {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .about-images .img-float {
        width: 120px;
        right: 5px;
        bottom: -15px;
    }
    .experience-badge {
        left: 5px;
        padding: 12px 15px;
    }
    .experience-badge h3 {
        font-size: 1.5rem;
    }
    .package-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .package-card {
        padding: 20px 15px;
    }
    .pool-explanation {
        padding: 20px 15px;
    }
    .pool-flow {
        flex-direction: column;
    }
    .about-images .img-float {
        width: 100px;
        right: 5px;
        bottom: -10px;
    }
    .experience-badge {
        left: 5px;
        top: 15px;
        padding: 10px 12px;
    }
    .experience-badge h3 {
        font-size: 1.3rem;
    }
    .experience-badge p {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 1.3rem;
    }
    .package-card {
        padding: 15px 12px;
    }
    .package-name {
        font-size: 1.2rem;
    }
    .package-price .amount {
        font-size: 2rem;
    }
}
