/* ===================================
          L.M. DISTRIBUTORS CSS
   ================================= */

/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables for consistent theming */
:root {
    --primary-color: #4CAF50;
    --primary-light: #80c883;
    --primary-dark: #3a8a3e;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 15px;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #f1c40f);
}

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

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===================================
   HERO SECTION - NEXT LEVEL DESIGN
   ================================= */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Background Image - Fixed Position */
.hero-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.5s ease;
}

/* Hero Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: heroContentFadeIn 1.5s ease-out;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #e8f5e8);
    background-clip: text;
    -webkit-background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); }
}

.hero-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: subtitleSlideIn 2s ease-out 0.5s both;
}

@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 0.95;
        transform: translateX(0);
    }
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsSlideUp 2.5s ease-out 1s both;
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Button Hover Effects */
.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f1c40f, var(--secondary-color));
}

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

/* Button Ripple Effect */
.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

/* ===================================
   SCROLL INDICATOR - BOTTOM CENTER
   ================================= */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    animation: scrollIndicatorFloat 3s ease-in-out infinite;
}

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

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    margin: 0 auto 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    50% { opacity: 0.5; top: 20px; }
    100% { opacity: 0; top: 32px; }
}

.scroll-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

/* ===================================
   SECTIONS STYLING
   ================================= */

section {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 80px 0;
}

/* Info Section */
.info {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 100px 0;
}

.info h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.infoP {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.05);
}

.card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ===================================
   FEATURED PRODUCTS SECTION - ENHANCED
   ================================= */

.featured-products {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Enhanced background pattern */
.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

.featured-products > * {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e8f5e8);
    background-clip: text;
    -webkit-background-clip: text;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #f1c40f);
    border-radius: 20px;
    animation: slideInFromCenter 1.5s ease-out 0.5s both;
}

.section-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Enhanced Product Carousel Styling */
.product-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.product-item {
    padding: 0 25px;
    transform-origin: center;
}

.product-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-light));
    border-radius: 25px 25px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
    border-color: rgba(243, 156, 18, 0.4);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px 25px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.1) contrast(1.05);
    border-radius: 25px 25px 0 0;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 85, 48, 0.92) 0%,
        rgba(74, 124, 89, 0.85) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(8px);
    border-radius: 25px 25px 0 0;
}

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

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(1deg);
}

.view-product {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.view-product:hover::before {
    left: 100%;
}

.view-product:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.view-product i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.view-product:hover i {
    transform: translateX(8px) rotate(360deg);
}

.product-info {
    padding: 30px 25px;
    text-align: center;
    background: var(--white);
    border-radius: 0 0 25px 25px;
    position: relative;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
}

.product-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h4 {
    color: var(--secondary-color);
}

.product-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding: 8px 16px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    background: rgba(243, 156, 18, 0.2);
    transform: scale(1.05);
}

.product-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffd700;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.product-card:hover .product-rating i {
    transform: scale(1.1);
    animation: starTwinkle 0.6s ease-in-out;
}

/* Enhanced Center slide effect */
.center-slide {
    transform: scale(1.1) !important;
    z-index: 3;
}

.center-slide .product-card {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 90px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn-view-all {
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-view-all:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.4);
}

.btn-view-all i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.btn-view-all:hover i {
    transform: translateX(8px) rotate(45deg);
}

/* Enhanced Slick Carousel Styling */
.product-carousel .slick-dots {
    bottom: -70px;
    display: flex !important;
    justify-content: center;
    gap: 12px;
}

.product-carousel .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.product-carousel .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-carousel .slick-dots li button:before {
    display: none;
}

.product-carousel .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.product-carousel .slick-dots li.slick-active button {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.product-carousel .slick-prev,
.product-carousel .slick-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.product-carousel .slick-prev:hover,
.product-carousel .slick-next:hover {
    background: var(--secondary-color);
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
}

.product-carousel .slick-prev:before,
.product-carousel .slick-next:before {
    font-size: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.product-carousel .slick-prev:hover:before,
.product-carousel .slick-next:hover:before {
    color: var(--white);
    transform: scale(1.1);
}

.product-carousel .slick-prev {
    left: -30px;
}

.product-carousel .slick-next {
    right: -30px;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromCenter {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.3) rotate(180deg); }
}

/* Product Card Loading Animation */
.product-item {
    animation: fadeInUp 0.8s ease-out;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 992px) {
    .product-carousel .slick-prev,
    .product-carousel .slick-next {
        display: none !important;
    }
    
    .center-slide {
        transform: scale(1.03) !important;
    }
    
    .product-card {
        border-radius: 20px;
    }
    
    .product-image,
    .product-image img {
        border-radius: 20px 20px 0 0;
    }
    
    .product-info {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 25px 20px;
    }
    
    .view-all-container {
        margin-top: 50px;
    }
    
    .product-card {
        border-radius: 18px;
    }
    
    .product-image,
    .product-image img {
        border-radius: 18px 18px 0 0;
    }
    
    .product-info {
        border-radius: 0 0 18px 18px;
    }
}

@media (max-width: 480px) {
    .product-card {
        border-radius: 15px;
    }
    
    .product-image,
    .product-image img {
        border-radius: 15px 15px 0 0;
    }
    
    .product-info {
        border-radius: 0 0 15px 15px;
    }
}

/* ===================================
   STAFF SECTION
   ================================= */

.staff {
    background: var(--light-gray);
    padding: 100px 0;
}

.staff .section-header h2 {
    color: var(--primary-color);
}

.staff-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.staff-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.staff-image {
    position: relative;
    margin-bottom: 25px;
}

.staff-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
    transition: var(--transition);
}

.staff-card:hover .staff-image img {
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.social-icons {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.staff-card:hover .social-icons {
    opacity: 1;
    bottom: 5px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.staff-info h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.staff-info p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   ACHIEVEMENTS SECTION
   ================================= */

.achievements {
    position: relative;
    background: var(--dark-gray);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.achievements-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-dark));
    z-index: -1;
}

.achievements-content {
    position: relative;
    z-index: 1;
}

.achievementsP {
    opacity: 0.9;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.achievement-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.achievement-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   TESTIMONIALS SECTION
   ================================= */

.testimonials {
    background: var(--white);
    padding: 100px 0;
}

.testimonials .section-header h2 {
    color: var(--primary-color);
}

.testimonial-carousel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-item {
    padding: 0 20px;
}

.testimonial-content {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   NEWSLETTER SECTION
   ================================= */

.newsletter {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    min-width: 250px;
}

.btn-subscribe {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-subscribe:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* ===================================
   FLOATING PARTICLES ANIMATION
   ================================= */

.floating-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===================================
   SCROLL PROGRESS BAR
   ================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-secondary);
    z-index: 9999;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

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

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .info-cards, .staff-cards {
        grid-template-columns: 1fr;
    }
    
    .achievement-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .achievement-cards {
        grid-template-columns: 1fr;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* ===================================
   SLICK CAROUSEL CUSTOM STYLING
   ================================= */

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--white);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
}

.slick-prev, .slick-next {
    z-index: 1;
    width: 50px;
    height: 50px;
}

.slick-prev:before, .slick-next:before {
    font-size: 30px;
    color: var(--white);
}

/* ===================================
   UTILITY CLASSES
   ================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   LOADING ANIMATION
   ================================= */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}