/* =================================
   LOADING SCREEN ANIMATIONS
   ================================= */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #B8860B 0%, #8B4513 50%, #32CD32 100%);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
    pointer-events: none;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.company-logo-loader {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-animation {
    width: 120px;
    height: auto;
    max-height: 120px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: logoScale 2s ease-in-out infinite alternate;
}

.loading-text {
    color: white;
    margin-bottom: 2rem;
}

.loading-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.5s both;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.spinner-ring {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-out forwards;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 0.5s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 40%;
    animation-delay: 1.5s;
}

/* =================================
   HERO BANNER ANIMATIONS
   ================================= */

.hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide-1 {
    background: linear-gradient(135deg, #B8860B 0%, #8B4513 50%, #32CD32 100%);
}

.hero-slide-2 {
    background: linear-gradient(135deg, #32CD32 0%, #228B22 50%, #90EE90 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #4682B4 0%, #2F4F4F 50%, #87CEEB 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 30%;
    animation-delay: 14s;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.text-gradient {
    background: linear-gradient(45deg, #FFD700, #FFF8DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out 1s both;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.animated-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.animated-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.animated-btn:hover::before {
    left: 100%;
}

.animated-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Product Showcase Animations */
.hero-image-container {
    position: relative;
    height: 600px;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: iconFloat 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 30%;
    right: 10%;
    animation-delay: 1.3s;
}

.floating-icon:nth-child(3) {
    top: 50%;
    left: 10%;
    animation-delay: 2.6s;
}

.products-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: productFloat 6s ease-in-out infinite;
}

.product-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.product-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.product-3 {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

.product-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.product-circle:hover .product-img {
    transform: scale(1.1);
}

/* Brand Showcase */
.brand-logo {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.brand-name {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    display: block;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

.brand-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.2rem;
    color: #FFD700;
}

.brand-showcase {
    position: relative;
    height: 500px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.showcase-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.2);
}

.product-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.brand-showcase .product-item {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: brandProductFloat 8s ease-in-out infinite;
}

.brand-showcase .product-item:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.brand-showcase .product-item:nth-child(2) {
    bottom: 30%;
    right: 20%;
    animation-delay: 2.6s;
}

.brand-showcase .product-item:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: 5.2s;
}

.brand-showcase .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-showcase .product-item:hover .product-img {
    transform: scale(1.1);
}

/* Navigation Customization */
.custom-pagination {
    bottom: 30px !important;
    text-align: center;
}

.custom-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.custom-pagination .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
}

.custom-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.custom-nav-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.custom-nav-btn::after {
    display: none;
}

.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
}

.progress-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFF8DC);
    width: 0%;
    transition: width 0.3s ease;
}

/* =================================
   KEYFRAME ANIMATIONS
   ================================= */

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

@keyframes logoScale {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(255,255,255,0.5); }
    100% { text-shadow: 0 0 30px rgba(255,255,255,0.8); }
}

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

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

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

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-20px) rotate(90deg); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-10px) rotate(180deg); 
        opacity: 0.8; 
    }
    75% { 
        transform: translateY(-30px) rotate(270deg); 
        opacity: 0.9; 
    }
}

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

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

@keyframes slideInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

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

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

@keyframes textShine {
    0% { 
        background-position: -200% center; 
    }
    100% { 
        background-position: 200% center; 
    }
}

@keyframes countUp {
    from { 
        opacity: 0; 
        transform: scale(0.5); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-15px) scale(1.1); 
    }
}

@keyframes productFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-20px) rotate(120deg); 
    }
    66% { 
        transform: translateY(-10px) rotate(240deg); 
    }
}

@keyframes brandProductFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    25% { 
        transform: translateY(-15px) scale(1.05); 
    }
    50% { 
        transform: translateY(-5px) scale(1); 
    }
    75% { 
        transform: translateY(-10px) scale(1.05); 
    }
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 768px) {
    .loading-title {
        font-size: 2rem;
    }
    
    .loading-subtitle {
        font-size: 1rem;
    }
    
    .logo-animation {
        width: 80px;
        height: 80px;
    }
    
    .loading-progress {
        width: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .animated-btn {
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-image-container {
        height: 400px;
        margin-top: 2rem;
    }
    
    .product-circle {
        width: 120px;
        height: 120px;
    }
    
    .product-img {
        width: 90px;
        height: 90px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .brand-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-showcase {
        height: 300px;
        margin-top: 2rem;
    }
    
    .showcase-bg {
        width: 250px;
        height: 250px;
    }
    
    .brand-showcase .product-item {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .brand-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}