/* SUMSHAN COFFEE - Dynamic CSS inspired by Arvora */

/* Root Variables - Sumshan Logo Colors */
:root {
    --primary-green: #00B050;
    --accent-green: #00A040;
    --light-green: #20C060;
    --bg-light: #f8faf9;
    --bg-dark: #0f1419;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #ffffff;
    --border-light: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #00B050 0%, #00A040 100%);
    --gradient-text: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    color: #FFD700;
}

/* Utility Classes */
.mb-6 { margin-bottom: 4rem !important; }
.mb-7 { margin-bottom: 5rem !important; }
.mt-6 { margin-top: 4rem !important; }
.py-6 { padding: 4rem 0 !important; }
.py-7 { padding: 5rem 0 !important; }

/* Navigation Styles - Arvora Design */
.navbar {
    background: transparent !important;
    padding: 20px 0;
    border: none;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar .container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    max-width: 800px;
    width: auto;
}

.navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Logo Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 50px;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-left: 12px;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand:hover .navbar-brand-text {
    color: var(--primary-green);
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
    flex: 1;
    justify-content: center;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    margin: 0 15px;
    padding: 10px 0 !important;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    background: none;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* CTA Button */
.navbar-cta {
    margin-left: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--primary-green);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--accent-green);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 176, 80, 0.4);
}

.btn-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: rotate(90deg);
}

/* Mobile Navbar Styles */
.navbar-toggler {
    border: none;
    padding: 0;
    background: none;
    position: relative;
    width: 30px;
    height: 30px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background: none;
    position: relative;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar .container {
        border-radius: 30px;
        padding: 12px 20px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        margin-top: 15px;
        padding: 25px 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
    }
    
    .navbar-nav .nav-link::after {
        left: 0;
        transform: none;
    }
    
    .navbar-cta {
        margin: 20px 0 0 0;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .navbar-brand {
        margin-right: 20px;
    }
}

/* Hero Section */
.hero-section {
    color: var(--text-light);
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}



.hero-buttons .btn {
    padding: 18px 36px;
    font-weight: 600;
    border-radius: 50px;
    margin: 0.75rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    color: var(--text-light);
}

.btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    margin: 0 auto 1rem;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 20% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    /* Fix scroll indicator centering on mobile */
    .hero-scroll-indicator {
        position: absolute !important;
        bottom: 2rem !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
        transform: none !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Ensure hero section allows proper positioning */
    .hero-section {
        position: relative !important;
    }
}

/* Ensure video covers the section properly */
.hero-section {
    min-height: 100vh;
}

/* Preload video optimization */
.hero-video-background {
    pointer-events: none;
    user-select: none;
}



/* Section Styles */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: rgba(26, 77, 58, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #ffffff;
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 4rem;
    border-radius: 0;
    box-shadow: none;
    min-height: auto;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coffee-animation {
    color: var(--text-light);
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

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

.about-content h3 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.feature-card {
    background: var(--text-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

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

/* Beautiful Region Cards */
.region-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: var(--text-light);
    height: 100%;
}

.region-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 176, 80, 0.15);
}

.region-card-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.region-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.region-card-content {
    padding: 1.5rem 1rem;
}

.region-card-content h5 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.region-card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.feature-card h5 {
    color: var(--text-dark);
    margin: 1rem 0;
    font-weight: 600;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.region-card {
    border: 2px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
}

.region-card:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(0, 176, 80, 0.05), rgba(32, 192, 96, 0.05));
}

.region-card .feature-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
}

.region-card h5 {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Story Highlights */
.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.highlight-item i {
    font-size: 1.25rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.highlight-item span {
    font-weight: 500;
}

/* Story Stats */
.story-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Image Styling */
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-large);
}

/* Products Section */
.products-section {
    background: var(--text-light);
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding-top: 4rem;
    border-radius: 0;
    box-shadow: none;
}

.product-card {
    border-radius: 25px;
    height: 350px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.product-image-full {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.product-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 176, 80, 0.9), rgba(0, 160, 64, 0.95));
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

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

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

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 77, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-green);
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: var(--primary-green);
    color: var(--text-light);
    transform: scale(1.1);
}

.product-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-card:hover .product-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

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

.product-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 2rem;
}

.product-overlay .product-content h4 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.product-overlay .product-content .product-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Space Grotesk', sans-serif;
}

.unit {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

.product-variants {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.variant {
    background: rgba(0, 176, 80, 0.1);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 176, 80, 0.2);
    transition: all 0.3s ease;
}

.variant:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-1px);
}

.product-overlay .variant {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-overlay .variant:hover {
    background: white;
    color: var(--primary-green);
}

.product-overlay .price {
    color: white;
    font-weight: 700;
}

.product-overlay .unit {
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 100%);
    position: relative;
    z-index: 4;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

.blog-card {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.blog-card[role="button"] {
    cursor: pointer;
}

.blog-card[role="button"]:hover h3,
.blog-card[role="button"]:hover h4 {
    color: var(--primary-green);
}

.blog-card.featured {
    height: 100%;
    min-height: 600px;
}

.blog-card.compact {
    height: auto;
    min-height: 140px;
}

.blog-image {
    height: 65%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-main-image {
    transform: scale(1.05);
}

.blog-category {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-content {
    padding: 1.5rem;
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card.compact .blog-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.blog-content h3 {
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.blog-content h4 {
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-gray);
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.875rem;
}

.blog-date {
    color: var(--text-gray);
}

.blog-read-time {
    color: var(--primary-green);
    font-weight: 500;
}

/* FAQs Section */
.faqs-section {
    background: var(--text-light);
    position: relative;
    z-index: 5;
}

.accordion {
    --bs-accordion-border-radius: 15px;
    --bs-accordion-border-color: var(--border-light);
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.accordion-button {
    background: var(--text-light);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    border-radius: 15px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--text-light);
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid rgba(0, 176, 80, 0.1);
}

.accordion-collapse {
    border-radius: 0 0 15px 15px;
}

/* Contact Section */
#contact {
    background: var(--primary-green);
    position: relative;
    z-index: 6;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: var(--text-light);
    width: 20px;
    margin-right: 1rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    text-decoration: none;
}

.social-link:hover {
    background: var(--text-light);
    color: var(--primary-green);
}

.contact-form .form-control {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 12px 15px;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--accent-green);
    box-shadow: none;
}

/* Footer */
footer {
    background: #000 !important;
    padding: 2rem 0;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem !important;
    }
    
    .product-content,
    .service-card {
        padding: 1.5rem;
    }
}

/* Custom Bootstrap overrides */
.bg-light {
    background-color: var(--light-gray) !important;
}

.text-primary {
    color: var(--primary-green) !important;
}

/* Footer Quick Links Hover Effects */
footer .list-unstyled li a {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    padding-bottom: 2px;
}

footer .list-unstyled li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

footer .list-unstyled li a:hover {
    color: var(--primary-green) !important;
}

footer .list-unstyled li a:hover::after {
    width: 100%;
}