:root {
    --primary-green: #1a4d2e;
    /* Deeper, richer green */
    --primary-dark: #0f301b;
    --wood-accent: #c69c6d;
    /* More refined gold/wood tone */
    --wood-dark: #8b5a2b;
    --gold-gradient: linear-gradient(135deg, #8f6a40 0%, #7d5c36 100%);
    --green-gradient: linear-gradient(135deg, #1d7541 0%, #176333 100%);
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-card: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --text-main: #1a1a1a;
    --text-light: #555555;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    background-image: radial-gradient(circle at 10% 20%, rgba(222, 184, 135, 0.05) 0%, rgba(255, 255, 255, 0) 90%);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    /* Pillow shape for modern look */
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--green-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(26, 77, 46, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 77, 46, 0.3);
}

.btn-secondary {
    background: var(--gold-gradient);
    color: #fff;
    box-shadow: 0 10px 20px rgba(198, 156, 109, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(198, 156, 109, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--wood-accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Glassmorphism Header */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--wood-accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wood-accent);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--primary-green);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-green);
}

/* Parallax Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 30, 15, 0.7), rgba(10, 30, 15, 0.5)), url('assets/images/PHOTO-2026-02-08-15-13-13.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--wood-accent);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* About Us - Modern Split */
.about {
    background-color: var(--white);
    overflow: hidden;
}

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

.about-text h3 {
    color: var(--primary-green);
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--wood-accent);
    border-radius: 20px;
    z-index: 0;
}

/* 3D Glass Cards - Products */
.products {
    background-color: #f0f2f5;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c69c6d' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

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

.product-card {
    background: var(--glass-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

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

.product-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 1.4rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Why Choose Us - Modern Cards */
.features {
    text-align: center;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(46, 125, 50, 0.1);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-green);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon-box {
    background: var(--primary-green);
    color: var(--white);
    transform: rotateY(180deg);
}

/* Gallery - Masonry feel */
.gallery {
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    position: relative;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Overlay on gallery hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

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

/* Contact - Floating Card */
.contact {
    background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 0;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.contact-info {
    background: var(--green-gradient);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-item i {
    color: var(--wood-accent);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-wrapper {
    padding: 60px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    background: #fcfcfc;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Footer - Dark & Elegant */
footer {
    background-color: #0c1c11;
    /* Very dark green */
    color: #e0e0e0;
    padding: 80px 0 30px;
    position: relative;
}

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

.footer-col h4 {
    color: var(--wood-accent);
    margin-bottom: 25px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--wood-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

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

    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-in-out;
        pointer-events: none;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

/* Share Section */
.share-section {
    background-color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.share-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.share-link-box {
    display: flex;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 30px;
    align-items: center;
}

.share-link-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    color: var(--text-light);
    outline: none;
    background: transparent;
}

.share-copy-btn {
    background: #eee;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.share-copy-btn:hover {
    background: #e0e0e0;
}

.qr-box {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    display: inline-block;
    border-radius: 15px;
    border: 2px solid var(--wood-accent);
}

.share-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-action-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.share-btn-native {
    background: var(--white);
    color: var(--text-main);
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.share-btn-native:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.share-btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.share-btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* Bottom Navigation (Mobile) */
.bottom-nav {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    gap: 5px;
    transition: var(--transition);
}

.nav-item i {
    font-size: 1.4rem;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-item.active,
.nav-item:hover {
    color: var(--primary-green);
}

.nav-item.active i,
.nav-item:hover i {
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Hide floating elements on mobile to avoid overlap */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }

    .whatsapp-float {
        bottom: 80px;
        /* Adjust for nav bar */
        right: 20px;
    }

    footer {
        padding-bottom: 90px;
    }
}

/* Digital Business Card */
.digital-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-hover);
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.digital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gold-gradient);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-logo {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 15px;
    padding: 10px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--wood-accent);
}

.card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-info h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.card-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.save-contact-btn {
    width: 100%;
    margin-bottom: 30px;
    padding: 16px;
    font-size: 1rem;
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 77, 46, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(26, 77, 46, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 77, 46, 0);
    }
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    gap: 8px;
    transition: var(--transition);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.action-item:hover .action-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 77, 46, 0.2);
}

.action-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

.card-footer {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.card-footer .qr-box {
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
    box-shadow: none;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 5px;
}

.card-footer p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Brand Scroller */
.brands-section {
    padding: 40px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-section::before,
.brands-section::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
}

.brands-section::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.brands-section::before {
    left: 0;
    top: 0;
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 18);
    gap: 30px;
}

.brand-card {
    height: 80px;
    width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: default;

    /* 3D Effect */
    transform-style: preserve-3d;
    perspective: 1000px;
}

.brand-card:hover {
    transform: translateY(-5px) scale(1.05) rotateX(5deg);
    box-shadow: 0 10px 25px rgba(26, 77, 46, 0.15);
    border-color: var(--wood-accent);
}

.brand-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0;
    text-align: center;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, var(--text-main), var(--text-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-card span {
    font-size: 0.7rem;
    color: var(--wood-dark);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 9));
    }
}


/* Feedback Section */
.feedback-section {
    background-color: var(--white);
    padding: 60px 0;
}

.feedback-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

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

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #ffc107;
    /* Star Yellow */
}

/* Brands Section */
.brands {
    padding: 60px 0;
    background: #f8f9fa;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.brand-item {
    background: #fff;
    padding: 30px 50px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.brand-item h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-item span {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}