/* ========================================
   THULIR ORGANICS - MAIN STYLESHEET
   Premium Corporate Website Design
   ======================================== */

/* ========================================
   1. ROOT VARIABLES & RESET
   ======================================== */

:root {
    /* Primary Colors */
    --primary-color: #2E7D32;
    --secondary-color: #4CAF50;
    --accent-color: #8BC34A;
    --light-accent: #C8E6C9;
    
    /* Neutral Colors */
    --bg-color: #FFFFFF;
    --text-color: #222222;
    --text-light: #666666;
    --text-lighter: #999999;
    --border-color: #E0E0E0;
    --bg-light: #F5F5F5;
    --bg-lighter: #FAFAFA;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-tertiary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

/* ========================================
   3. BUTTONS
   ======================================== */

.btn {
    font-family: var(--font-secondary);
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: 10px 24px;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-hero {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-call-nav {
    border-radius: var(--radius-md);
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* ========================================
   4. NAVIGATION
   ======================================== */

.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.25rem;
    color: var(--primary-color) !important;
}

.brand-text {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all var(--transition-normal);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* ========================================
   5. HERO SECTION
   ======================================== */

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 500px;
    background: transparent;
    padding: 40px 35px;
    border-radius: 8px;
    margin-left: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    display: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: none;
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: none;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s ease-in-out infinite;
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(-45deg);
    margin: 0 auto;
}

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

/* ========================================
   6. SECTIONS
   ======================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Page Header */
.page-header {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 70px;
}

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

.page-header h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   7. CARDS
   ======================================== */

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.new {
    background: #FF6B6B;
}

.product-badge.popular {
    background: #FFB800;
}

.product-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.feature-tag {
    display: inline-block;
    background: var(--light-accent);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Benefit Card */
.benefit-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-top: 4px solid transparent;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-card h5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--text-lighter);
    display: block;
}

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

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

/* ========================================
   8. ABOUT & MISSION CARDS
   ======================================== */

.mission-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-top: 5px solid var(--primary-color);
}

.mission-card.accent {
    border-top-color: var(--accent-color);
}

.mission-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========================================
   9. VALUE & WHY CHOOSE CARDS
   ======================================== */

.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
}

.why-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.why-content h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.why-content p {
    font-size: 0.95rem;
}

/* ========================================
   10. TEAM CARDS
   ======================================== */

.team-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-image {
    flex-shrink: 0;
}

.team-image img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.team-info h5 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.team-contact a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-accent);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.team-contact a:hover {
    background: var(--primary-color);
    color: white;
}

/* ========================================
   11. GALLERY
   ======================================== */

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    opacity: 0;
    transition: opacity var(--transition-normal);
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ========================================
   12. PROCESS CARDS
   ======================================== */

.process-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.process-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.process-icon {
    font-size: 2.5rem;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-card h5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.95rem;
}

/* ========================================
   13. CONTACT SECTION
   ======================================== */

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-info-card h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-control-custom {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-family: var(--font-tertiary);
    transition: all var(--transition-normal);
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-submit-btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
}

.map-container {
    box-shadow: var(--shadow-lg);
}

.connect-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.connect-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.connect-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ========================================
   14. FOOTER
   ======================================== */

.footer-section {
    background: #1a1a1a;
    color: white;
}

.logo-circle-footer {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.social-links a {
    transition: all var(--transition-fast);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-section .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
    color: white;
}

/* ========================================
   15. FLOATING BUTTONS
   ======================================== */

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-decoration: none;
    z-index: 999;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.floating-btn.whatsapp {
    background: #25D366;
    bottom: 100px;
    animation: slideInRight 0.5s ease;
}

.floating-btn.whatsapp:hover {
    background: #20ba5a;
}

.floating-btn.call {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: slideInRight 0.6s ease;
}

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

.scroll-to-top {
    position: fixed;
    bottom: 170px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   16. CTA SECTION
   ======================================== */

.cta-section {
    border-radius: var(--radius-lg);
    margin: 3rem;
}

/* ========================================
   17. ANIMATIONS
   ======================================== */

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   18. LOADING ANIMATION
   ======================================== */

.loading-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-animation.hidden {
    opacity: 0;
    visibility: hidden;
}

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

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

/* ========================================
   19. PRODUCT DETAIL & COMPARISON
   ======================================== */

.product-detail-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.product-detail-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-status {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.product-status.new {
    color: #FF6B6B;
}

.product-status.popular {
    color: #FFB800;
}

.product-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.spec-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.spec-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ========================================
   20. ACCORDION
   ======================================== */

.accordion-button {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    color: var(--primary-color);
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========================================
   21. ABOUT SECTION STYLES
   ======================================== */

.about-preview-section {
    background: white;
}

.about-image-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-item {
    display: flex;
    gap: 1.5rem;
}

.about-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-accent);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-item h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.about-item p {
    font-size: 0.95rem;
}

/* ========================================
   22. STATS SECTION
   ======================================== */

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stat-card {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

/* ========================================
   23. IMAGE OPTIMIZATION
   ======================================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded-lg-custom {
    border-radius: var(--radius-lg);
}

/* ========================================
   24. UTILITIES
   ======================================== */

.opacity-90 {
    opacity: 0.9;
}

.text-muted {
    color: var(--text-lighter) !important;
}

.fw-500 {
    font-weight: 500;
}

.gap-3 {
    gap: 1rem;
}

.g-3 {
    gap: 1rem;
}

/* ========================================
   25. TRANSITIONS & EFFECTS
   ======================================== */

.transition-all {
    transition: all var(--transition-normal);
}

[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Glassmorphism effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
}

/* ========================================
   26. PRINT STYLES
   ======================================== */

@media print {
    .floating-btn,
    .scroll-to-top,
    .navbar-custom {
        display: none;
    }
}
