/* ============================================
   INDEX.HTML - CUSTOM STYLES (PART 1)
   ============================================ */

:root {
    --primary-green: #5DB85F;
    --dark-green: #3A9B3D;
    --light-green: #8FD892;
    --accent-green: #6FC972;
    --gold: #C8964F;
    --brown-gold: #B8863F;
    --brown: #573A32;
    --cream: #FAFAFA;
    --text-dark: #2D7A30;
    --text-light: #424242;
    --text-brown: #5D4037;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

::selection {
    background-color: var(--gold);
    color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(135deg, rgba(93, 184, 95, 0.5) 0%, rgba(58, 155, 61, 0.45) 100%),
        url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(143, 216, 146, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    padding: 25px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 80px 0 0 0;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: rgb(252, 252, 252);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    color: rgb(255, 255, 255);
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   SCROLLABLE CONTENT
   ============================================ */

.scrollable-content {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    background: white;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

#our-products {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

#our-products h2 {
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 50%, var(--dark-green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineText 3s linear infinite;
}

@keyframes shineText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

#our-products h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    border-radius: 2px;
    animation: expandLine 2s ease-in-out infinite;
}

@keyframes expandLine {

    0%,
    100% {
        width: 120px;
        opacity: 1;
    }

    50% {
        width: 180px;
        opacity: 0.7;
    }
}

/* ============================================
   CAROUSEL WRAPPER - FIX ARROW POSITIONING
   ============================================ */

.overlap-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 50px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlap-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 5px 0 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    position: relative;
    scroll-snap-type: x mandatory;
}

.overlap-carousel-track::-webkit-scrollbar {
    display: none;
}

/* ============================================
   PRODUCT CARDS - ORIGINAL SIZE
   ============================================ */

.overlap-card {
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 1;
    transform: scale(1);
    animation: slideInCard 0.6s ease-out backwards;
    scroll-snap-align: center;
}

.overlap-card:nth-child(1) {
    animation-delay: 0.1s;
}

.overlap-card:nth-child(2) {
    animation-delay: 0.2s;
}

.overlap-card:nth-child(3) {
    animation-delay: 0.3s;
}

.overlap-card:nth-child(4) {
    animation-delay: 0.4s;
}

.overlap-card:nth-child(5) {
    animation-delay: 0.5s;
}

.overlap-card:nth-child(6) {
    animation-delay: 0.6s;
}

.overlap-card:nth-child(7) {
    animation-delay: 0.7s;
}

.overlap-card:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.overlap-card:hover {
    transform: scale(1.08) translateY(-15px);
    z-index: 10;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    height: 320px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
    flex-shrink: 0;
}

.overlap-card:hover .product-card img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1);
}

.card-img-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: background 0.4s ease;
    min-height: 60px;
}

.overlap-card:hover .card-img-overlay {
    background: linear-gradient(to top,
            rgba(93, 184, 95, 0.9) 0%,
            rgba(93, 184, 95, 0.6) 40%,
            transparent 100%);
}

.card-img-overlay h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.overlap-card:hover .card-img-overlay h5 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transform: translateY(-5px);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #d4d4d4;
    color: var(--primary-green);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
    font-size: 1.3rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.carousel-nav-btn::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    transition: all 0.45s ease-in-out;
    z-index: -1;
}

.carousel-nav-btn:hover::after {
    right: -4px;
    bottom: -4px;
}

.carousel-nav-btn:hover {
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 5px 18px rgba(93, 184, 95, 0.4);
}

.carousel-nav-btn i {
    position: relative;
    z-index: 1;
}

.carousel-nav-btn.prev {
    left: 20px;
}

.carousel-nav-btn.next {
    right: 20px;
}

.overlap-card.center {
    transform: scale(1.08);
}

.overlap-card.center .product-card {
    box-shadow: 0 25px 70px rgba(93, 184, 95, 0.4);
}

.overlap-card::after {
    content: '✨ Best Seller';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(93, 184, 95, 0.4);
    z-index: 5;
}

.overlap-card.center::after {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.overlap-card.adjacent {
    transform: scale(0.98);
}

/* ============================================
   VIEW ALL PRODUCTS BUTTON - MINIMAL GAP
   ============================================ */

#our-products .text-center.mt-5 {
    margin-top: 20px !important;
}

/* ============================================
   CAROUSEL NAVIGATION BUTTONS - EXACT A.HTML STYLE
   ============================================ */

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-green);
    color: var(--dark-green);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
    font-size: 1.2rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.carousel-nav-btn::after {
    display: none;
}



.carousel-nav-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.carousel-nav-btn i {
    position: relative;
    z-index: 1;
}

.carousel-nav-btn.prev {
    left: 0;
}

.carousel-nav-btn.next {
    right: 0;
}

.overlap-card.center {
    transform: scale(1.08);
}

.overlap-card.center .product-card {
    box-shadow: 0 25px 70px rgba(93, 184, 95, 0.4);
    border-color: var(--primary-green);
}

.overlap-card.center .product-card::before {
    opacity: 1;
}

.overlap-card::after {
    content: '✨ Best Seller';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.6rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(93, 184, 95, 0.4);
    z-index: 5;
}

.overlap-card.center::after {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.overlap-card.adjacent {
    transform: scale(0.98);
}

/* ============================================
   ALL BUTTON STYLES - EXACT A.HTML ANIMATION
   ============================================ */

.btn-hero,
.btn-read-more,
.btn-discover {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    z-index: 1;
    color: #fff;
    border-radius: 4px;
    background: var(--dark-green);
    border: none;
    cursor: pointer;
}

.btn-hero::after,
.btn-read-more::after,
.btn-discover::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 40px;
    height: 40px;
    background: var(--brown);
    border-radius: 50%;
    transition: all 0.45s ease-in-out;
    z-index: -1;
}

.btn-hero:hover::after,
.btn-read-more:hover::after,
.btn-discover:hover::after {
    right: -4px;
    bottom: -4px;
}

.btn-hero:hover,
.btn-read-more:hover,
.btn-discover:hover {
    background: var(--brown);
    color: white;
}

.btn-hero span,
.btn-read-more span,
.btn-discover span {
    position: relative;
    z-index: 1;
}

/* ============================================
   WELCOME SECTION
   ============================================ */

.welcome-section {
    padding: 50px 0;
    background: var(--cream);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70%;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.section-title span {
    color: var(--primary-green);
}

.welcome-img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.welcome-img:hover {
    transform: scale(1.02);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 50px 0;
    background: white;
}

.about-section h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 40px 0;
    background: var(--cream);
}

.features-section .section-title {
    color: var(--text-dark);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    background: rgba(184, 134, 63, 0.1);
    border-radius: 100% 0 0 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.feature-card:hover::before {
    width: 150%;
    height: 150%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.12);
    border-color: var(--light-green);
}

.feature-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.feature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img-wrapper img {
    transform: scale(1.1);
}

.feature-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-badge {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* ============================================
   EVENTS SHOWCASE SECTION
   ============================================ */

.events-showcase {
    padding: 50px 0;
    background: white;
}

.events-showcase .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    text-align: left;
    width: auto;
}

.events-showcase .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 0;
}

.events-showcase .section-title .highlight {
    color: var(--primary-green);
}

.events-showcase .section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px 0 60px;
    line-height: 1.8;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.event-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    background: #f5f5f5;
}

.event-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(46, 125, 50, 0) 0%, rgba(46, 125, 50, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-text {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.event-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.event-text p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 184, 95, 0.3);
}

.event-item:hover img {
    transform: scale(1.15);
}

.event-item:hover .event-overlay {
    opacity: 1;
}

.event-item:hover .event-text {
    transform: translateY(0);
}

.event-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* ---------------------------
         TESTIMONIAL CAROUSEL SLIDER
        ---------------------------- */
.testimonial-section {
    padding: 40px 0 20px 0;
    background: var(--cream);
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.testimonial-badge i {
    color: var(--gold);
    font-size: 18px;
}

.testimonial-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.testimonial-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-large {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 50px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.testimonial-large:hover {
    box-shadow: 0 15px 50px rgba(93, 184, 95, 0.15);
}

.testimonial-large img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    margin-right: 4px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.testimonial-author {
    margin-top: 25px;
}

.testimonial-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.testimonial-role {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-green);
    font-size: 18px;
}

.slider-arrow:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -25px;
}

.slider-next {
    right: -25px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: var(--light-green);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-green);
    width: 32px;
    border-radius: 6px;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

/* FAQ Section */
.faq-section {
    padding: 20px 0 40px 0;
    background: white;
}

.faq-header {
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.faq-badge i {
    font-size: 1.2rem;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-image-wrapper {
    position: sticky;
    top: 100px;
}

.faq-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    height: 500px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--light-green);
    box-shadow: 0 8px 30px rgba(93, 184, 95, 0.15);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 8px 35px rgba(93, 184, 95, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--dark-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 28px 30px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}


/* ============================================
   FLOATING CONTACT BUTTONS - RIGHT SIDE ONLY
   ============================================ */

.floating-contacts {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    animation: slideInLeft 0.6s ease-out backwards;
    overflow: visible;
}

.contact-btn:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-btn:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        transform: translateX(150px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #573A32 0%, #3d2723 100%);
    position: relative;
}

.whatsapp-btn:hover {
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 35px rgba(87, 58, 50, 0.6);
}

.whatsapp-number {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #573A32 0%, #3d2723 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 998;
}

.whatsapp-btn:hover .whatsapp-number {
    opacity: 1;
    transform: translateY(-50%) translateX(-10px);
    pointer-events: auto;
}

.phone-btn {
    background: linear-gradient(135deg, #573A32 0%, #3d2723 100%);
    position: relative;
}

.phone-btn:hover {
    color: white;
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 35px rgba(87, 58, 50, 0.6);
}

.phone-number {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #573A32 0%, #3d2723 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 998;
}

.phone-btn:hover .phone-number {
    opacity: 1;
    transform: translateY(-50%) translateX(-10px);
    pointer-events: auto;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.contact-btn:not(.sliding-out):not(.sliding-in):hover {
    animation: float 2s ease-in-out infinite;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image-wrapper {
        position: relative;
        top: 0;
    }

    .faq-image {
        height: 400px;
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 30px;
        border-radius: 15px;
        max-width: 100%;
        margin: 0 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .welcome-img {
        height: 300px;
        margin-top: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .btn-hero,
    .btn-read-more,
    .btn-discover {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .overlap-carousel-wrapper {
        padding: 15px 20px;
    }

    .overlap-card {
        min-width: 200px;
        max-width: 200px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-large {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px !important;
    }

    .testimonial-large img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 auto;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-stars {
        justify-content: center;
        display: flex;
        margin-bottom: 15px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-image {
        height: 300px;
    }

    .floating-contacts {
        gap: 12px;
        right: 15px;
    }

    .contact-btn {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 0.95rem;
        padding: 12px 20px;
        left: -160px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-hero,
    .btn-read-more,
    .btn-discover {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .overlap-carousel-wrapper {
        padding: 15px 10px;
    }

    .overlap-card {
        min-width: 260px;
        max-width: 260px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .floating-contacts {
        flex-direction: column;
        gap: 10px;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .contact-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .phone-number {
        position: absolute;
        top: 50%;
        left: -150px;
        transform: translateY(-50%);
        font-size: 1rem;
        padding: 12px 18px;
    }

    .phone-btn:hover .phone-number {
        transform: translateY(-50%) translateX(-10px);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-prev {
        left: -10px;
    }

    .slider-next {
        right: -10px;
    }
}

/* Google Translate Styling */
#google_translate_element {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 999;
    background: white;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.translated-ltr {
    margin-top: -40px;
}

.translated-ltr {
    margin-top: -40px;
}

.goog-te-banner-frame {
    display: none;
    margin-top: -20px;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

/* PRELOADER */

#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    margin-bottom: 20px;
    animation: logoZoom 1.5s ease-in-out infinite alternate;
}

.loader-title {
    font-size: 32px;
    font-weight: 800;
    color: #2D7A30;
}

.loader-tagline {
    font-size: 16px;
    color: #666;
}

/* Logo animation */

@keyframes logoZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}