/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Brand Colors - Earthy, Natural Tones */
    --primary-color: #8B4513;
    /* Saddle Brown */
    --secondary-color: #A0522D;
    /* Sienna */
    --accent-color: #D2691E;
    /* Chocolate */

    /* Gradient Colors */
    --gradient-start: #8B4513;
    --gradient-end: #A0522D;

    /* Text Colors */
    --text-color: #5D4037;
    /* Brown Grey */
    --text-light: #795548;
    /* Brown */
    --text-white: #FFFFFF;

    /* Background Colors */
    --bg-light: #F5F5F5;
    /* Light Grey */
    --bg-white: #FFFFFF;
    --bg-cream: #FFF8E1;
    /* Warm Cream */

    /* Accent Colors */
    --accent-green: #2E7D32;
    /* Forest Green */
    --accent-purple: #6A1B9A;
    /* Deep Purple */
    --accent-cream: #FFECB3;
    /* Warm Yellow */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(139, 69, 19, 0.1);
    --shadow-md: 0 4px 8px rgba(139, 69, 19, 0.15);
    --shadow-lg: 0 8px 16px rgba(139, 69, 19, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

/* Navigation */
.navbar {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    padding: var(--spacing-sm) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg,
            rgba(139, 69, 19, 0.6),
            rgba(160, 82, 45, 0.6),
            rgba(42, 125, 50, 0.6));
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #FFF8E1, #FFECB3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-bottom: var(--spacing-md);
}

.card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

/* Grid Layouts */
.products-grid,
.values-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

/* Sections */
section {
    margin: var(--spacing-xl) 0;
}

section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
}

/* Contact Information Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.info-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.info-content {
    flex-grow: 1;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.info-content p {
    margin: 0;
    color: var(--text-light);
}

.info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color);
}

/* Contact Form Improvements */
.contact-form {
    max-width: 600px;
    margin: var(--spacing-xl) auto;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2rem;
}

/* Form Messages */
.form-messages {
    margin: 1rem 0;
}

.form-success,
.form-error {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.form-error {
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #C62828;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: var(--primary-color);
}

.form-group input:focus:invalid,
.form-group textarea:focus:invalid {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input:focus:valid,
.form-group textarea:focus:valid {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.error-message {
    color: #C62828;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* Form Placeholder Styles */
::placeholder {
    color: #81C784;
    opacity: 0.7;
}

/* Submit Button Styles */
.cta-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, #8B4513, #A0522D);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(to right, #A0522D, #D2691E);
}

.cta-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.cta-button .button-text {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.cta-button:disabled .button-text {
    opacity: 0.7;
}

/* Responsive Form Styles */
@media (max-width: 768px) {

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        /* Prevent zoom on mobile */
    }

    .form-success,
    .form-error {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Map Section */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Buttons */
.cta-button {
    background: linear-gradient(to right, #8B4513, #A0522D);
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background: linear-gradient(to right, #8B4513, #A0522D);
    color: var(--text-white);
    padding: var(--spacing-xl) 5% var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 50px;
    margin-bottom: var(--spacing-sm);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
        padding: var(--spacing-sm);
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .card {
        padding: var(--spacing-md);
    }

    section h2 {
        font-size: 2.2rem;
    }

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

    .info-item {
        padding: var(--spacing-sm);
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .card {
        padding: var(--spacing-sm);
    }

    section h2 {
        font-size: 1.8rem;
    }

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

    .info-icon-wrapper {
        width: 40px;
        height: 40px;
    }

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

    .map-container iframe {
        height: 300px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.7s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Features Section */
.features {
    position: relative;
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(139, 69, 19, 0.1)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.features h2 {
    position: relative;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--primary-color);
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 69, 19, 0.1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: var(--text-white);
    font-size: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon-wrapper::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Products Preview */
.products-preview {
    position: relative;
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.products-preview h2 {
    margin-bottom: 3rem;
}

.product-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(139, 69, 19, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
    padding: 0 1.5rem;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Image Styles */
.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}

.cert-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

/* Hero Background Image */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Responsive Image Adjustments */
@media (max-width: 768px) {
    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .product-image {
        height: 180px;
    }

    .team-image {
        height: 200px;
    }

    .cert-image {
        width: 60px;
        height: 60px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .logo img {
        height: 32px;
    }

    .footer-logo img {
        height: 40px;
    }

    .hero {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .product-image {
        height: 160px;
    }

    .team-image {
        height: 180px;
    }

    .cert-image {
        width: 48px;
        height: 48px;
    }

    .info-icon {
        width: 32px;
        height: 32px;
    }

    .logo img {
        height: 28px;
    }

    .footer-logo img {
        height: 32px;
    }

    .hero {
        min-height: 250px;
    }
}

/* Responsive Features Grid */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 3rem 5%;
    }

    .features h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }
}

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

    .features h2 {
        font-size: 1.8rem;
    }
}

/* Mission and Vision Section */
.mission-vision {
    padding: 5rem 5%;
    background: linear-gradient(to bottom, var(--bg-cream), var(--bg-light));
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: var(--text-white);
}

.vision-card {
    background: linear-gradient(135deg, #2E7D32 0%, #6A1B9A 100%);
    color: var(--text-white);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

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

.card-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--text-white);
    transition: transform 0.3s ease;
}

.mission-card:hover .card-icon-wrapper,
.vision-card:hover .card-icon-wrapper {
    transform: scale(1.1);
}

.mission-card h2,
.vision-card h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mission-card p,
.vision-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Responsive Mission Vision */
@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .mission-card,
    .vision-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        padding: 3rem 5%;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.75rem;
    }

    .mission-card p,
    .vision-card p {
        font-size: 1rem;
    }

    .card-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {

    .mission-card,
    .vision-card {
        padding: 2rem;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.5rem;
    }

    .card-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

/* Core Values Section */
.core-values {
    padding: 5rem 5%;
    background: linear-gradient(90deg, #FFF8E1 0%, #F5F5F5 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:nth-child(1)::before {
    background: linear-gradient(to right, #8B4513, #A0522D);
}

.value-card:nth-child(2)::before {
    background: linear-gradient(to right, #A0522D, #D2691E);
}

.value-card:nth-child(3)::before {
    background: linear-gradient(to right, #2E7D32, #6A1B9A);
}

.value-card:nth-child(4)::before {
    background: linear-gradient(to right, #6A1B9A, #8B4513);
}

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

.value-card:hover::before {
    opacity: 1;
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.value-card:nth-child(1) .value-icon-wrapper {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: var(--text-white);
}

.value-card:nth-child(2) .value-icon-wrapper {
    background: linear-gradient(135deg, #A0522D, #D2691E);
    color: var(--text-white);
}

.value-card:nth-child(3) .value-icon-wrapper {
    background: linear-gradient(135deg, #2E7D32, #6A1B9A);
    color: var(--text-white);
}

.value-card:nth-child(4) .value-icon-wrapper {
    background: linear-gradient(135deg, #6A1B9A, #8B4513);
    color: var(--text-white);
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Core Values */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .features h2 {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    height: 60vh;
    background: linear-gradient(120deg, rgba(139, 69, 19, 0.4), rgba(160, 82, 45, 0.4)), url('images/homepage-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.products {
    margin-bottom: 4rem;
}

.products h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
    text-align: center;
}

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

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}


.request-price-btn {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.request-price-btn:hover {
    background: linear-gradient(45deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.certifications {
    margin-bottom: 4rem;
}

.certifications h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
    text-align: center;
}

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

.cert-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.ordering-info {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.ordering-info h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
    text-align: center;
}

.ordering-info ul {
    list-style: none;
    margin-top: 1rem;
}

.ordering-info ul li {
    padding: 0.5rem 0;
    color: #555;
}

.ordering-info ul li:before {
    content: "• ";
    color: #8B4513;
    font-weight: bold;
}

.footer-social {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-social h3 {
    margin-bottom: 1rem;
    color: #eae9e8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
}

.social-link:hover {
    background: #8B4513;
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: #3b5998;
}

.social-link.twitter:hover {
    background: #000000;
}


.social-link.linkedin:hover {
    background: #0077b5;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .features h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

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

    .feature-card h3 {
        font-size: 1.3rem;
    }

}

/* Request Price Button Styles */
.request-price-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.request-price-btn:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.4);
}

.request-price-btn:active {
    transform: translateY(0);
}

/* Social Media Footer Styles */
.footer-social {
    /* Removed margin-top since it's now a separate section */
}

.footer-social h3 {
    color: #ebe9e8;
    margin-bottom: 15px;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-links a:nth-child(1) {
    background: #1877F2;
    /* Facebook Blue */
}

.social-links a:nth-child(2) {
    background: #000000;
    /* X (Twitter) Black */
}

.social-links a:nth-child(3) {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    /* Instagram Gradient */
}

.social-links a:nth-child(4) {
    background: #0A66C2;
    /* LinkedIn Blue */
}

.social-links a:nth-child(5) {
    background: #FF0000;
    /* YouTube Red */
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.social-links a:nth-child(1):hover {
    background: #166FE5;
    /* Darker Facebook Blue */
}

.social-links a:nth-child(2):hover {
    background: #333333;
    /* Darker X Black */
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB);
    /* Darker Instagram */
}

.social-links a:nth-child(4):hover {
    background: #004182;
    /* Darker LinkedIn Blue */
}

.social-links a:nth-child(5):hover {
    background: #CC0000;
    /* Darker YouTube Red */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-window {
        width: 300px;
        height: 450px;
    }

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

/* Price Request Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #8B4513;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

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

.submit-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
}

/* Card styling for context */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    margin: 10px 0;
    color: #333;
    font-size: 1.4em;
}

.card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Modern button styling */
.secondary-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

/* Alternative button styles - uncomment to use */

/* Option 2: Outline style */
/*
.secondary-button {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-button:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
*/

/* Option 3: Minimalist style */
/*
.secondary-button {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
*/

/* Option 4: Modern flat style */
/*
.secondary-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.secondary-button:hover {
    background: #2980b9;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}
*/

/* Responsive design */
@media (max-width: 768px) {
    .secondary-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Modal Styles - Conflict Resolved Version */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    /* Higher than chatbot (1000) */
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
}

.modal.show {
    display: flex !important;
    /* Force flexbox display */
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.modal-content {
    background: #ffffff;
    margin: 0 !important;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 450px;
    min-width: 300px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid #e0e0e0;
    max-height: calc(90vh - 40px);
    /* Account for modal padding */
    overflow-y: auto;
    /* Force center positioning */
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    flex-shrink: 0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.3em;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal form {
    padding: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

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

/* Renamed from .message to .modal-message to avoid conflict with chatbot .message */
.modal-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    display: none;
    font-size: 0.9em;
}

.modal-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.modal-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Updated selector to use new class name */
.modal-message.show {
    display: block;
}

/* Chatbot interaction management when modal is open */
.chatbot-widget {
    transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

/* Hide/dim chatbot when modal is open */
body.modal-open .chatbot-widget {
    pointer-events: none;
    opacity: 0.3;
}

/* Ensure modal appears above everything */
body.modal-open .modal {
    z-index: 2000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal.show {
        padding: 15px;
    }

    .modal-content {
        width: 95%;
        max-width: 400px;
        max-height: calc(95vh - 30px);
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h2 {
        font-size: 1.2em;
    }

    .modal form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .modal.show {
        padding: 10px;
    }

    .modal-content {
        width: 98%;
        max-width: 350px;
        max-height: calc(98vh - 20px);
    }

    .modal-header {
        padding: 12px 15px;
    }

    .modal form {
        padding: 15px;
    }
}

/* Chatbot Styles */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 69, 19, 0.5);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
}

.message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
}

.message.bot {
    background: #e8e8e8;
    align-self: flex-start;
}

.message.user {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

.chatbot-input button {
    margin-left: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
}

/* Basic page styling for demonstration */
body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}