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

        :root {
            --primary: var(--rasta-green);

            --rasta-red: #CE1126;
            --rasta-gold: #FED100;
            --rasta-green: #009B3A;
            --rasta-black: #000000;
            --earth: #2c1810;
            --light: #FFF8E7;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: var(--rasta-black);
            line-height: 1.6;
        }

        nav {
            position: fixed;
            top: 8px;
            width: 100%;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(15px);
            padding: 1rem 5%;
            z-index: 1000;
            box-shadow: 0 2px 30px rgba(0,0,0,0.06);
            transition: all 0.3s;
            transform: translateY(0);
            opacity: 1;
        }

        nav.hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

        nav.visible {
            transform: translateY(0);
            opacity: 1;
        }

        nav.scrolled { 
            padding: 0.6rem 5%; 
        }

        nav.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .logo img {
            height: 50px;
            width: auto;
            transition: all 0.3s;
        }

        nav.scrolled .logo img {
            height: 40px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

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

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--rasta-green);
            transition: all 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 25px rgba(0,0,0,0.2);
            transition: right 0.3s;
            z-index: 2000;
            padding: 2rem;
            border-left: 5px solid transparent;
            border-image: linear-gradient(to bottom, var(--rasta-green), var(--rasta-gold), var(--rasta-red)) 1;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid transparent;
            border-image: linear-gradient(to right, var(--rasta-green), var(--rasta-gold), var(--rasta-red)) 1;
        }

        .mobile-menu-header .logo {
            font-size: 1.3rem;
        }

        .close-btn {
            font-size: 2rem;
            cursor: pointer;
            color: var(--rasta-red);
            background: none;
            border: none;
            padding: 0;
            line-height: 1;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mobile-menu ul li {
            border-bottom: 1px solid #eee;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 1.2rem 0;
            color: var(--rasta-black);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .mobile-menu ul li a:hover {
            color: var(--rasta-green);
            padding-left: 10px;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        nav a {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--rasta-red);
            transition: width 0.3s;
        }

        nav a:hover { color: var(--primary); }
        nav a:hover::after { width: 100%; }

        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(34,139,34,0.3) 0%, rgba(0,100,0,0.4) 100%), 
                        url('https://i0.wp.com/rastarootsfarming.com/wp-content/uploads/2024/02/Jamaica_fields_jxrVtSe.2e16d0ba.fill-1200x620-c100.png') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            padding-top: 80px;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.3);
            z-index: 0;
        }

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

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(to right, var(--rasta-green) 0%, var(--rasta-green) 33%, var(--rasta-gold) 33%, var(--rasta-gold) 66%, var(--rasta-red) 66%);
            z-index: 2;
        }

        .rasta-strip {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(to right, var(--rasta-green) 0%, var(--rasta-green) 33%, var(--rasta-gold) 33%, var(--rasta-gold) 66%, var(--rasta-red) 66%);
            z-index: 1001;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .rasta-strip.visible {
            opacity: 1;
        }

        .hero-content {
            padding: 2rem;
            max-width: 900px;
            animation: fadeIn 1.2s ease-out;
            margin-top: 80px;
        }

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

        .badge {
            display: inline-block;
            background: rgba(254,209,0,0.2);
            backdrop-filter: blur(10px);
            border: 2px solid var(--rasta-gold);
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-family: 'Passion One', cursive;
            font-size: 6rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            font-weight: 900;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 300;
            opacity: 0.95;
        }

        .hero-description {
            font-size: 1.1rem;
            max-width: 650px;
            margin: 1.5rem auto 2.5rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.1rem 2.8rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--rasta-gold);
            color: var(--rasta-black);
            border: none;
        }

        .btn-primary:hover {
            background: #FFE033;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(206,17,38,0.3);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
        }

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

        section {
            padding: 5rem 5%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-badge {
            display: inline-block;
            background: var(--rasta-red);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--rasta-black);
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .philosophy .section-subtitle {
            color: rgba(255,255,255,0.95);
        }

        .about {
            background: white;
        }
            

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .about-grid > .whatsapp-section {
            grid-column: 1 / -1;
            max-width: 100%;
        }

        .about-image {
            height: 600px;
            background-color: var(--rasta-green);
            background-image: url('https://afar.brightspotcdn.com/dims4/default/aa9c34d/2147483647/strip/true/crop/1166x800+217+0/resize/1320x906!/format/webp/quality/90/?url=https%3A%2F%2Fk3-prod-afar-media.s3.us-west-2.amazonaws.com%2Fbrightspot%2F28%2Fd9%2F16feab3d72c19201203a532e6d42%2Foriginal-9fa32467aaa41481f4a77624dac82385.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            border-radius: 20px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.12);
            position: relative;
            overflow: hidden;
            border: 5px solid var(--rasta-gold);
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: transparent;
        }

        .about-content h3 {
            font-family: 'Righteous', cursive;
            font-size: 2.4rem;
            color: var(--rasta-green);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.8rem;
            color: #666;
        }

        .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin-top: 2.5rem;
        }

        .feature {
            display: flex;
            gap: 1rem;
            padding: 1.2rem;
            background: var(--light);
            border-radius: 10px;
            transition: all 0.3s;
            border-left: 4px solid var(--rasta-black);
        }

        .feature:hover {
            background: #f0ede8;
            transform: translateX(5px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--rasta-red);
            font-weight: 300;
            line-height: 1;
        }

        .feature h4 {
            color: var(--rasta-green);
            margin-bottom: 0.4rem;
            font-weight: 600;
        }

        .feature p {
            font-size: 0.95rem;
            margin: 0;
        }

        .grow {
            background: var(--light);
            padding-top: 3rem;
        }

        .grow-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .grow-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            border: 3px solid var(--rasta-black);
        }

        .grow-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .grow-image {
            height: 240px;
            background-color: var(--rasta-green);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .grow-content {
            padding: 2rem;
        }

        .grow-item h3 {
            font-family: 'Righteous', cursive;
            color: var(--rasta-green);
            margin-bottom: 1rem;
            font-size: 1.6rem;
            font-weight: 400;
        }

        .grow-item p {
            color: #666;
            line-height: 1.7;
        }

        .philosophy {
            background: var(--rasta-red);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .philosophy::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: var(--rasta-gold);
            opacity: 0.1;
            border-radius: 50%;
        }

        .philosophy .section-title,
        .philosophy .section-badge {
            color: white;
            background: rgba(255,255,255,0.12);
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .philosophy-item {
            padding: 2.5rem;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.15);
            transition: all 0.3s;
            text-align: center;
        }

        .philosophy-item:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-8px);
        }

        .philosophy-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            font-weight: 100;
            line-height: 1;
        }

        .philosophy-item h3 {
            font-family: 'Righteous', cursive;
            color: var(--rasta-gold);
            margin-bottom: 1rem;
            font-size: 1.7rem;
            font-weight: 400;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .philosophy-item p {
            line-height: 1.8;
            opacity: 0.95;
            color: white;
        }

        .gallery {
            background: white;
        }

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

        .gallery-item {
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.4s;
            background-color: var(--rasta-green);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 5px solid var(--rasta-black);
        }

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

        .gallery-item.large {
            grid-column: span 2;
        }

        .contact {
            background: var(--light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-info h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            color: var(--rasta-red);
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .contact-info > p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .contact-item {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .contact-item-icon {
            font-size: 2rem;
            color: var(--rasta-black);
            background: var(--rasta-gold);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
        }

        .contact-item h4 {
            color: var(--rasta-green);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .contact-item p {
            color: #666;
            margin: 0;
        }

        .contact-form {
            background: white;
            padding: 3.5rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 600;
            color: var(--earth);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.1rem 1.3rem;
            border: 2px solid #e5e5e5;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(26,93,26,0.08);
        }

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

        .submit-btn {
            width: 100%;
            background: var(--rasta-green);
            color: white;
            padding: 1.3rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #00B347;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,155,58,0.4);
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            background: white;
            color: #25D366;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            border: 2px solid #25D366;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
        }

        .whatsapp-btn:hover {
            background: #25D366;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-btn:hover .whatsapp-icon {
            fill: white;
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
            fill: #25D366;
            transition: fill 0.3s;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            background: #20BA5A;
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
            }
        }

        .whatsapp-section {
            background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
            padding: 3rem;
            border-radius: 20px;
            margin-top: 4rem;
            color: white;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        .whatsapp-content {
            text-align: left;
        }

        .whatsapp-section h3 {
            font-family: 'Righteous', cursive;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .whatsapp-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .whatsapp-image {
            height: 300px;
            background-image: url('https://i0.wp.com/rastarootsfarming.com/wp-content/uploads/2024/02/rasta-farmer.jpeg');
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            border: 5px solid rgba(255,255,255,0.3);
        }

        footer {
            background: var(--rasta-black);
            color: white;
            padding: 5rem 5%;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-rasta {
            height: 8px;
            background: linear-gradient(to right, var(--rasta-green) 0%, var(--rasta-green) 33%, var(--rasta-gold) 33%, var(--rasta-gold) 66%, var(--rasta-red) 66%);
            margin-bottom: 2.5rem;
            border-radius: 4px;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 120px;
            width: auto;
            margin: 0 auto;
        }

        .footer-tagline {
            font-size: 1.1rem;
            margin: 1.5rem 0;
            opacity: 0.9;
        }

        .footer-bottom {
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }

        @media (max-width: 968px) {
            .hero h1 { font-size: 4rem; }
            .section-title { font-size: 3rem; }
            section { padding: 5rem 5%; }
            .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-item.large { grid-column: span 1; }
            .features { grid-template-columns: 1fr; }
            .about-content h3,
            .contact-info h3 {
                text-align: center;
            }
            .about-content p {
                text-align: center;
            }
            .whatsapp-section {
                grid-template-columns: 1fr;
            }
            .whatsapp-content {
                text-align: center;
            }
            .whatsapp-image {
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            nav ul { 
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .about-content h3,
            .contact-info h3,
            .about-content p,
            .contact-info > p {
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            .hero h1 { font-size: 3rem; }
            .section-title { font-size: 2.5rem; }
            .gallery-grid { grid-template-columns: 1fr; }
            .contact-form { padding: 2rem; }
        }
