:root {
    --primary-yellow: #FFCC00;
    --primary-green: #0B220B;
    /* Deep Forest Green */
    --mild-green: #7BB31B;
    /* Brand Leaf Green */
    --secondary-green: #4CAF50;
    --dark-bg: #0F1419;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-light: #F9F9F9;
    --text-muted: #A0A0A0;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

.align-center {
    align-items: center;
}

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

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--mild-green) 100%);
    color: var(--white);
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, #1A3C1A 0%, var(--mild-green) 100%);
    color: var(--white);
    border: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(123, 179, 27, 0.3);
}

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

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

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Header */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.2rem;
    font-family: 'Inter', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero_dates_nuts_1775707939417.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 20, 25, 0.9) 0%, rgba(15, 20, 25, 0.4) 50%, transparent 100%);
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}



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

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

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

.form-group select option {
    background-color: #0F1419;
    color: var(--white);
    padding: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.08);
}

.btn-block {
    width: 100%;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green) 20%, var(--mild-green) 100%) !important;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(135deg, var(--mild-green) 0%, var(--secondary-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none !important;
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
    }


    .hero h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

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

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

/* Features */
.features {
    padding: 8rem 0;
    position: relative;
    z-index: 20;
}

.feature-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

/* Products */
.products {
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.product-card {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-green);
}

.product-image {
    height: 300px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-info .price {
    font-family: 'Outfit', sans-serif;
    color: var(--mild-green);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Premium Card Enhancements */
.premium-card {
    position: relative;
    border: 1px solid rgba(255, 204, 0, 0.2) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.premium-card:hover {
    box-shadow: 0 20px 40px rgba(123, 179, 27, 0.2);
    border-color: var(--primary-yellow) !important;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Outfit', sans-serif;
}

.premium-card h3 {
    color: var(--primary-yellow);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #15201a 100%);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.check-list li::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: 900;
}

.about-image img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 10%, rgba(250, 188, 42, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(45, 90, 39, 0.03) 0%, transparent 40%);
}

.benefits .container {
    position: relative;
}

.benefits-accent {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary-gold);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.05;
    z-index: 1;
}

.benefits-image-wrapper {
    position: relative;
    z-index: 5;
}

.benefits-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary-gold);
    filter: blur(80px);
    opacity: 0.1;
    z-index: -1;
}

.benefits-image-wrapper img {
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefits-image-wrapper img:hover {
    transform: scale(1.02) rotate(1deg);
    border-color: rgba(250, 188, 42, 0.3);
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.benefit-card {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(250, 188, 42, 0.1), rgba(250, 188, 42, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(250, 188, 42, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1) rotate(5deg);
}

.benefit-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.benefit-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA */
.cta {
    padding: 10rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('assorted_nuts_product_1775707979430.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-green {
    background: linear-gradient(135deg, var(--mild-green) 0%, #2D5A27 100%);
    color: var(--white);
    border: none !important;
    padding: 1.2rem 2.8rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.btn-outline-green {
    border: 1px solid var(--mild-green);
    color: var(--mild-green);
    padding: 1.2rem 2.8rem;
    font-weight: 700;
    background: transparent;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.btn-green:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(123, 179, 27, 0.3);
    color: white;
}

.btn-outline-green:hover {
    background: rgba(123, 179, 27, 0.1);
    transform: translateY(-5px);
    color: var(--mild-green);
}

/* Footer */
footer {
    background: #080b0e;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-minimal-content {
    padding: 6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-simple {
    padding: 6rem 0 4rem;
    background: #080b0e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer-simple {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #0d1216 0%, #080b0e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-boxed {
    display: inline-block;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-img-logo {
    max-width: 140px;
    height: auto;
    display: block;
}

.footer-divider {
    width: 50px;
    height: 1px;
    background: var(--white);
    margin: 0 auto 1.8rem;
    border-radius: 2px;
    opacity: 0.15;
}

.footer-copyright p {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-copyright p {
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

.footer-logo-minimal .logo {
    font-size: 2.2rem;
}

.contact-info-row {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item-simple {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-item-simple i {
    color: var(--primary-gold);
}

.contact-item-simple:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .contact-info-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-minimal-content {
        padding: 4rem 1rem;
    }
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--primary-gold);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

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

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links {
        display: none !important;
        /* Hide for mobile */
    }

    header .container {
        justify-content: space-between;
    }

    .logo {
        font-size: 1.2rem;
    }
}

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

    .btn {
        display: block;
        width: 100%;
        text-align: center;

    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
}

/* Professional & Elegant Section Styles */

/* Product Buttons Layout Side-by-Side */
.product-btns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.6rem;
    margin-top: 1.5rem;
    width: 100%;
}

.product-btns .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 0.2rem;
    font-size: 0.85rem;
    border-radius: 50px;
    width: auto !important;
    white-space: nowrap;
}

/* Location Section */
.location {
    padding: 8rem 0;
    background: #0d1216;
}

.location .section-title {
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(145deg, #121d12 0%, #080b0e 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(123, 179, 27, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(123, 179, 27, 0.2);
    color: var(--mild-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(123, 179, 27, 0.2);
    border: 1px solid rgba(123, 179, 27, 0.3);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.contact-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.map-embed {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
    cursor: pointer;
}

.map-link-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.map-overlay span {
    background: var(--mild-green);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.map-link-wrapper:hover .map-overlay {
    background: rgba(11, 34, 11, 0.2);
}

.map-link-wrapper:hover .map-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* Inquiry Form Section (Footer) */
.inquiry-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0d1216 0%, #080b0e 100%);
}

.form-footer-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #121d12 0%, #080b0e 100%);
    padding: 3.5rem;
    border-radius: 30px;
    border: 1px solid rgba(123, 179, 27, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.form-grid .full-width {
    grid-column: span 2;
}

.footer-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    text-align: left;
}

.footer-form input,
.footer-form select,
.footer-form textarea {
    width: 100%;
    padding: 0.9rem;
    background: rgba(123, 179, 27, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition);
}

.footer-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.footer-form input:focus,
.footer-form select:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.06);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    gap: 1px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 0.3rem;
}

.call-sticky {
    background: var(--primary-green);
    color: var(--white);
}

.whatsapp-sticky {
    background: #25D366;
    color: white;
}

.sticky-btn i {
    font-size: 1.2rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }

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

    .form-grid .full-width {
        grid-column: span 1;
    }

    .form-footer-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .products,
    .about,
    .benefits,
    .location,
    .inquiry-section,
    .cta {
        padding: 4rem 0 !important;
    }

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

    .hero-btns {
        margin-top: 2rem;
    }

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

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

    .cta-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 1rem;
    }

    .cta-btns .btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 1.5rem;
    }

    .footer-simple {
        padding: 3rem 0 6rem;
    }

    .footer-logo-boxed {
        margin-bottom: 1.2rem;
        margin-top: 0;
        padding: 0.8rem;
    }

    .footer-divider {
        margin-bottom: 1.2rem;
    }

    /* Location & Contact Mobile Refinements */
    .contact-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .contact-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    /* Map Mobile Refinements */
    .map-embed {
        height: 300px;
    }

    .map-overlay span {
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Footer Mobile Refinements */
    .footer-img-logo {
        max-width: 110px;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}

/* Logo Enhancement */
.logo .dates {
    background: linear-gradient(135deg, #4CAF50 0%, #2D5A27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}