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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4 {
    font-family: 'Cardo', serif;
    font-weight: 700;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg {
    height: 2.5rem;
    width: auto;
    transition: filter 0.3s ease;
    margin-right: 0.5rem;
}

.logo h2 {
    color: #333333;
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo a:hover h2 {
    color: #666666;
}

.logo a:hover .logo-svg {
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4B6043;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7EA371;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7EA371;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown .nav-link i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4B6043;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #4B6043;
    border-left-color: #4B6043;
    padding-left: 2rem;
}

.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 1.2rem;
}

.nav-icons i {
    color: #4B6043;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-icons i:hover {
    color: #7EA371;
}

.cart-icon-wrapper {
    position: relative;
    text-decoration: none;
    color: #4B6043;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon-wrapper:hover {
    color: #7EA371;
    transform: translateY(-2px);
}

.user-icon {
    text-decoration: none;
    color: #4B6043;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.user-icon:hover {
    color: #7EA371;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F36F23;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    min-width: 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4B6043;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

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

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

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75, 96, 67, 0.8), rgba(126, 163, 113, 0.6));
}

.slide-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 100%;
    color: white;
}

.slide-text {
    animation: slideInLeft 1s ease-out;
}

.slide.active .slide-text {
    animation: slideInLeft 1s ease-out;
}

.slide-subtitle {
    display: inline-block;
    background: rgba(255, 184, 0, 0.9);
    color: #0B3D2C;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.slide-title .highlight {
    background: linear-gradient(135deg, #FFB800, #FFC947);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 90%;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

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

.feature-item i {
    color: #FFB800;
    font-size: 1.1rem;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn.btn-primary {
    background: #FFB800;
    color: #0B3D2C;
}

.btn.btn-primary:hover {
    background: #FFC947;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
}

.btn.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Slide Image Section */
.slide-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: slideInRight 1s ease-out;
}

.slide.active .slide-image {
    animation: slideInRight 1s ease-out;
}

.slide.active .circular-images {
    animation: fadeInScale 1.2s ease-out;
}

.circular-images {
    position: relative;
    width: 500px;
    height: 500px;
}

.circle-img {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.circle-img:hover {
    transform: scale(1.1);
    z-index: 10;
}

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

.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float1 6s ease-in-out infinite;
}

.circle-2 {
    bottom: 60px;
    left: 0;
    animation: float2 6s ease-in-out infinite;
}

.circle-3 {
    bottom: 60px;
    right: 0;
    animation: float3 6s ease-in-out infinite;
}

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

.dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%23FFB800" opacity="0.6"/></svg>') repeat;
    opacity: 0.5;
}

.dots-1 {
    top: 10%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite;
}

.dots-2 {
    bottom: 20%;
    left: 5%;
    animation: pulse 4s ease-in-out infinite reverse;
}

.leaf-decoration {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 3rem;
    opacity: 0.7;
    animation: rotate 8s linear infinite;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #FFB800;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.nav-arrow:hover {
    background: rgba(255, 184, 0, 0.8);
    border-color: #FFB800;
    color: #0B3D2C;
    transform: translateY(-2px);
}

/* Social Links */
.hero-social {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-social .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-social .social-links a:hover {
    background: #FFB800;
    border-color: #FFB800;
    color: #0B3D2C;
    transform: translateY(-2px);
}

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

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

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

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefits-list i {
    color: #0B3D2C;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8fffe;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0B3D2C, #146B5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0B3D2C;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Shop Section */
.shop {
    padding: 5rem 0;
    background: white;
}

.shop h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.3rem;
    color: #0B3D2C;
    padding: 1rem 1.5rem 0.5rem;
}

.product-card .price {
    font-size: 1.5rem;
    color: #F36F23;
    font-weight: 700;
    padding: 0 1.5rem;
}

.add-to-cart {
    background: #0B3D2C;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #0a332a;
}

/* Experience Section */
.experience {
    padding: 5rem 0;
    background: #0B3D2C;
    color: white;
}

.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

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

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #F36F23, #ff8c42);
    border-radius: 10px;
    transition: width 2s ease;
}

.percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F36F23;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: #f8fffe;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #0B3D2C;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: white;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #0B3D2C;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #F36F23;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e55a1a;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8fffe;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B3D2C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fffe;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 3rem;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background: #f8fffe;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #0B3D2C;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.carousel-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #0B3D2C;
}

/* Instagram Section */
.instagram {
    padding: 5rem 0;
    background: #f8fffe;
}

.instagram h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 3rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay i {
    font-size: 2rem;
    color: white;
}

/* Avatar Placeholder Styles */
.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.avatar-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Testimonials avatar specific sizing */
.testimonial-author .avatar-placeholder {
    width: 50px;
    height: 50px;
    font-size: 14px;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Footer Unified Styles - Sen Hong Garden */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section h5 {
    color: #bdc3c7;
    margin: 1rem 0 0.5rem 0;
    font-size: 0.95rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #27ae60;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

.contact-info p i {
    margin-right: 0.5rem;
    color: #27ae60;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-methods span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #27ae60;
}

/* New Section Enhancements */

/* Hero Section Enhancements */
.hero-content h1 .highlight {
    color: #F36F23;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.floating-leaf {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

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

.leaf-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.leaf-3 {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section Enhancements */
.about-description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-subtitle {
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

.benefit-icon {
    background: linear-gradient(135deg, #0B3D2C, #146B5A);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #0B3D2C;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 61, 44, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Services Section Enhancements */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 61, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h3 {
    color: #0B3D2C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #4B6043;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #F36F23;
}

.services-cta, .shop-cta, .activities-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4B6043 0%, #7EA371 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(75, 96, 67, 0.3);
}

/* Shop Section Enhancements */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4B6043;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.sale {
    background: #F36F23;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-view, .add-to-wishlist {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.quick-view:hover, .add-to-wishlist:hover {
    background: #4B6043;
    color: white;
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: #0B3D2C;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #F36F23;
    font-size: 0.9rem;
}

.rating-count {
    color: #666;
    font-size: 0.8rem;
}

.price-section {
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4B6043;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #4B6043 0%, #7EA371 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(75, 96, 67, 0.3);
}

/* Activities Section */
.activities {
    padding: 5rem 0;
    background: white;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.activity-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.activity-date {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.activity-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F36F23;
}

.activity-date .month {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.activity-content {
    padding: 1.5rem;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.activity-category {
    background: #E8F4F8;
    color: #4B6043;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.activity-duration {
    color: #666;
    font-size: 0.8rem;
}

.activity-content h3 {
    color: #0B3D2C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.activity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.activity-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.activity-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.activity-info i {
    color: #F36F23;
}

.activity-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4B6043;
}

.activity-btn {
    width: 100%;
    background: #F36F23;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
}

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

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: #f8fffe;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.benefit-card .benefit-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4B6043 0%, #7EA371 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: #0B3D2C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefit-features {
    list-style: none;
    text-align: left;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

.benefit-features i {
    color: #7EA371;
    font-size: 0.8rem;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #F36F23;
    margin-bottom: 0.5rem;
    font-family: 'Cardo', serif;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.why-choose-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #4B6043 0%, #7EA371 100%);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(75, 96, 67, 0.3);
}

.cta-btn.secondary {
    background: white;
    color: #4B6043;
    border: 2px solid #4B6043;
}

.cta-btn.secondary:hover {
    background: #4B6043;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    /* Hero Slider Responsive - Tablet */
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-description {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .circular-images {
        width: 400px;
        height: 400px;
    }

    .circle-img {
        width: 140px;
        height: 140px;
    }

    .hero-social {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 2rem 0;
        text-align: center;
    }

    .hero-social .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .nav-container {
        padding: 0 25px;
    }

    .hero-container {
        padding: 0 25px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        background: rgba(250, 249, 246, 0.95);
        margin-left: 1rem;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
        border-left: none;
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        padding-left: 1rem;
        background: rgba(255, 153, 200, 0.1);
    }

    /* Hero Slider Responsive - Mobile */
    .hero-slider {
        height: 70vh;
        margin-top: 70px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
    }

    .slide-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slide-features {
        margin-bottom: 2rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .circular-images {
        width: 300px;
        height: 300px;
        margin: 2rem auto 0;
    }

    .circle-img {
        width: 110px;
        height: 110px;
    }

    .circle-1 {
        top: -10px;
    }

    .circle-2 {
        bottom: 40px;
        left: -10px;
    }

    .circle-3 {
        bottom: 40px;
        right: -10px;
    }

    .slider-nav {
        bottom: 20px;
        gap: 1rem;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-social {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        top: auto;
        transform: none;
    }

    .hero-social .social-links {
        flex-direction: row;
        gap: 0.5rem;
    }

    .hero-social .social-links a {
        width: 40px;
        height: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Hero Slider Responsive - Small Mobile */
    .hero-slider {
        height: 60vh;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .slide-subtitle {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 0.8rem;
    }

    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .feature-item {
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
    }

    .circular-images {
        width: 250px;
        height: 250px;
    }

    .circle-img {
        width: 90px;
        height: 90px;
    }

    .circle-2, .circle-3 {
        bottom: 30px;
    }

    .circle-2 {
        left: -15px;
    }

    .circle-3 {
        right: -15px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .hero-social .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .leaf-decoration {
        font-size: 2rem;
    }
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Video Section */
.video-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.video-overlay {
    position: relative;
    z-index: 2;
}

.video-content {
    max-width: 600px;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    width: 100px;
    height: 100px;
    background: rgba(243, 111, 35, 0.9);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    background: rgba(243, 111, 35, 1);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(243, 111, 35, 0.4);
}

.video-play-btn i {
    margin-left: 5px; /* Adjust play icon position */
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(243, 111, 35, 0.8);
    transform: scale(1.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Video Section Responsive */
@media (max-width: 768px) {
    .video-content h2 {
        font-size: 2rem;
    }

    .video-content p {
        font-size: 1rem;
    }

    .video-play-btn {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .close-modal {
        top: -35px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Best Deal Products Section */
.best-deals {
    padding: 5rem 0;
    background: white;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.deal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #F36F23;
}

.deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #F36F23 0%, #e55a1a 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(243, 111, 35, 0.3);
}

.deal-card .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.deal-card .product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.deal-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.deal-card .quick-view,
.deal-card .add-to-wishlist {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.deal-card .quick-view:hover,
.deal-card .add-to-wishlist:hover {
    background: #F36F23;
    color: white;
    transform: scale(1.1);
}

.deal-card .product-content {
    padding: 2rem;
}

.deal-card .product-content h3 {
    color: #0B3D2C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.deal-card .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.deal-card .stars {
    color: #F36F23;
    font-size: 1rem;
}

.deal-card .rating-count {
    color: #666;
    font-size: 0.85rem;
}

.deal-card .price-section {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deal-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #F36F23;
}

.deal-card .old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.deal-btn {
    width: 100%;
    background: linear-gradient(135deg, #F36F23 0%, #e55a1a 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.deal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(243, 111, 35, 0.4);
    background: linear-gradient(135deg, #e55a1a 0%, #d14d15 100%);
}

.deals-cta {
    text-align: center;
    margin-top: 3rem;
}

.deals-cta .view-all-btn {
    background: linear-gradient(135deg, #0B3D2C 0%, #146B5A 100%);
    color: white;
    padding: 18px 35px;
    font-size: 1.1rem;
}

.deals-cta .view-all-btn:hover {
    background: linear-gradient(135deg, #146B5A 0%, #1a7a64 100%);
    box-shadow: 0 15px 35px rgba(11, 61, 44, 0.3);
}

/* Best Deal Responsive */
@media (max-width: 768px) {
    .deals-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .deal-card .product-content {
        padding: 1.5rem;
    }

    .deal-card .product-content h3 {
        font-size: 1.1rem;
    }

    .deal-price {
        font-size: 1.2rem;
    }

    .deal-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Quote Form Section */
.quote-section {
    padding: 5rem 0;
    background: #f8fffe;
}

.quote-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-content h2 {
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 1rem;
}

.quote-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.quote-benefits {
    margin-bottom: 3rem;
}

.quote-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.quote-benefits .benefit-item i {
    color: #4B6043;
    font-size: 1.2rem;
    width: 20px;
}

.quote-benefits .benefit-item span {
    color: #333;
    font-weight: 500;
}

.contact-info h3 {
    color: #0B3D2C;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-item i {
    color: #F36F23;
    font-size: 1rem;
    width: 20px;
}

.quote-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4B6043;
    background: white;
    box-shadow: 0 0 0 3px rgba(75, 96, 67, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.terms-link,
.privacy-link {
    color: #4B6043;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-link:hover,
.privacy-link:hover {
    color: #F36F23;
}

.quote-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4B6043 0%, #7EA371 100%);
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quote-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(75, 96, 67, 0.3);
    background: linear-gradient(135deg, #5a7052 0%, #8fb382 100%);
}

.quote-submit-btn:active {
    transform: translateY(-1px);
}

/* Quote Form Responsive */
@media (max-width: 1024px) {
    .quote-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quote-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }

    .quote-form-container {
        gap: 2rem;
    }

    .quote-content h2 {
        font-size: 2rem;
    }

    .quote-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-benefits {
        margin-bottom: 2rem;
    }

    .contact-info {
        margin-bottom: 0;
    }
}

/* Additional responsive improvements for small devices */
@media (max-width: 480px) {
    /* Hero Section - Mobile improvements */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    /* Video Section - Mobile improvements */
    .video-section {
        min-height: 50vh;
        padding: 3rem 0;
    }

    .video-content h2 {
        font-size: 1.5rem;
    }

    .video-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.2rem;
    }

    /* Activities Section - Mobile improvements */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .activity-date {
        padding: 8px;
    }

    .activity-date .day {
        font-size: 1rem;
    }

    .activity-content {
        padding: 1rem;
    }

    .activity-content h3 {
        font-size: 1rem;
    }

    /* Best Deals - Mobile improvements */
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .deal-card .product-content {
        padding: 1rem;
    }

    .deal-card .product-content h3 {
        font-size: 1rem;
    }

    .deal-price {
        font-size: 1.1rem;
    }

    .deal-badge {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Why Choose Us - Mobile improvements */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .why-choose-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }

    /* Quote Form - Mobile improvements */
    .quote-content h2 {
        font-size: 1.8rem;
    }

    .quote-subtitle {
        font-size: 1rem;
    }

    .quote-benefits .benefit-item {
        padding: 0.3rem 0;
    }

    .quote-benefits .benefit-item span {
        font-size: 0.9rem;
    }

    .contact-item {
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    .checkbox-label {
        font-size: 0.8rem;
        gap: 0.8rem;
    }

    .quote-submit-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }

    /* General section spacing for mobile */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Product and service cards spacing */
    .service-content,
    .product-content,
    .activity-content,
    .benefit-card {
        padding: 1rem;
    }

    /* Adjust service image height for mobile */
    .service-image {
        height: 200px;
    }

    /* Button improvements for mobile */
    .view-all-btn,
    .cta-button,
    .add-to-cart-btn,
    .activity-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Modal improvements for mobile */
    .modal-content {
        width: 98%;
        margin: 10px auto;
    }

    .close-modal {
        top: -30px;
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
    }

    /* Floating elements positioning for mobile */
    .floating-leaf {
        display: none; /* Hide decorative elements on small screens for performance */
    }

    /* Container and spacing adjustments */
    section {
        padding: 3rem 0;
    }

    .about, .services, .shop, .activities, .why-choose-us,
    .best-deals, .quote-section, .video-section {
        padding: 3rem 0;
    }
}

/* Tablet-specific improvements */
@media (max-width: 768px) and (min-width: 481px) {
    /* Optimize for tablet portrait */
    .deals-grid,
    .activities-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-choose-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .video-content h2 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Large tablet / small desktop */
@media (max-width: 1024px) and (min-width: 769px) {
    .deals-grid,
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quote-form-container {
        gap: 3rem;
    }
}

/* Performance optimization for smaller screens */
@media (max-width: 768px) {
    /* Reduce animations on smaller screens */
    .floating-leaf,
    .image-overlay,
    .service-overlay {
        animation: none;
        transition: none;
    }

    /* Simplify hover effects for better mobile performance */
    .deal-card:hover,
    .activity-card:hover,
    .benefit-card:hover,
    .service-card:hover,
    .product-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Hide action buttons on mobile for cleaner interface */
    .product-actions {
        display: none;
    }

    /* Footer responsive styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-methods {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Print styles for the new sections */
@media print {
    .video-section,
    .floating-leaf,
    .product-actions,
    .quote-form {
        display: none;
    }

    .best-deals,
    .activities,
    .why-choose-us {
        page-break-inside: avoid;
    }

    .deal-card,
    .activity-card,
    .benefit-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}