/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 48, 34, 0.7), rgba(27, 48, 34, 0.4));
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--cream);
    max-width: 600px;
    padding: 0 40px;
    animation: fadeInUp 1s ease;
}

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

.slide-content h2 {
    font-size: 48px;
    color: var(--cream);
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(197, 160, 89, 0.8);
    color: var(--forest-green);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--deep-gold);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(249, 247, 242, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--deep-gold);
}

/* ===== DISCOVER SECTION ===== */
.discover-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.discover-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.discover-card.reverse {
    direction: rtl;
}

.discover-card.reverse .discover-content {
    direction: ltr;
}

.discover-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.discover-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

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

.discover-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.discover-content p {
    margin-bottom: 20px;
}

.discover-content ul {
    margin: 20px 0;
}

.discover-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.discover-content li i {
    color: var(--deep-gold);
    margin-right: 10px;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-img {
    height: 250px;
    overflow: hidden;
}

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

.highlight-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.highlight-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.highlight-content p {
    font-size: 15px;
    color: var(--light-green);
    margin-bottom: 20px;
    line-height: 1.6;
}

.highlight-points {
    list-style: none;
    margin-bottom: 25px;
}

.highlight-points li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--forest-green);
}

.highlight-points li i {
    color: var(--deep-gold);
    font-size: 12px;
}

.learn-more-link {
    margin-top: auto;
    color: var(--deep-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.learn-more-link:hover {
    gap: 12px;
}

@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== OUR SOLUTIONS SECTION ===== */
.solutions-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.section-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    color: var(--deep-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: white;
    border-radius: 12px;
    padding: 35px;
    display: flex;
    gap: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 48, 34, 0.12);
}

.solution-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--forest-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon i {
    font-size: 28px;
    color: white;
}

.solution-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.solution-content p {
    font-size: 15px;
    color: var(--light-green);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-link {
    color: var(--deep-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.solution-link:hover {
    gap: 12px;
    color: var(--forest-green);
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .solution-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .solution-link {
        justify-content: center;
    }
}

/* ===== WHY US SECTION ===== */
.why-us-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.why-us-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(27, 48, 34, 0.1);
}

.why-us-icon {
    font-size: 50px;
    color: var(--deep-gold);
    margin-bottom: 25px;
    display: inline-block;
}

.why-us-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.why-us-card p {
    font-size: 15px;
    color: var(--light-green);
    line-height: 1.7;
}

/* ===== FEATURED PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(27, 48, 34, 0.15);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    height: 50px;
    overflow: hidden;
}

.product-price {
    color: var(--deep-gold);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--deep-gold);
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: var(--forest-green);
    color: var(--cream);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--light-green);
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(27, 48, 34, 0.8), transparent);
    color: var(--cream);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--cream);
    font-size: 18px;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    margin-right: 20px;
}

.faq-toggle {
    color: var(--deep-gold);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--light-green);
}

.faq-answer a {
    color: var(--deep-gold);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ===== PAYMENT SECTION ===== */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-method {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--cream);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.payment-method:hover {
    transform: translateY(-10px);
}

.payment-method i {
    font-size: 48px;
    color: var(--deep-gold);
    margin-bottom: 20px;
}

.payment-method h4 {
    margin-bottom: 10px;
}

.payment-method p {
    font-size: 14px;
    color: var(--light-green);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--forest-green);
    color: var(--cream);
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.security-badge i {
    font-size: 32px;
    color: var(--deep-gold);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .discover-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .discover-card.reverse {
        direction: ltr;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 500px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .security-badge {
        flex-direction: column;
        text-align: center;
    }
}



.key-word{
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: var(--light-green);
}

.key-word span{
    color: var(--deep-gold);
    font-weight: 600;
}