:root {
    --bee-yellow: #f5bc00;
    --honey-gold: #ff9d00;
    --dark-hive: #0f0d0b;
    --wood-brown: #3d2b1f;
    --cream: #fffaf0;
    --glass: rgba(255, 255, 255, 0.7);
    --mesh-color: rgba(245, 188, 0, 0.06);
}

.mesh-background {
    position: fixed;
    /* Fixes it so it stays behind content */
    inset: 0;
    --s: 24px;
    --c1: #0d0c08;
    /* Subtle dark green-gold */
    --c2: #050505;
    /* Deep black */
    --c: #0000, var(--c1) .5deg 119.5deg, #0000 120deg;
    --g1: conic-gradient(from 60deg at 56.25% calc(425%/6), var(--c));
    --g2: conic-gradient(from 180deg at 43.75% calc(425%/6), var(--c));
    --g3: conic-gradient(from -60deg at 50% calc(175%/12), var(--c));
    background:
        var(--g1), var(--g1) var(--s) calc(1.73*var(--s)),
        var(--g2), var(--g2) var(--s) calc(1.73*var(--s)),
        var(--g3) var(--s) 0, var(--g3) 0 calc(1.73*var(--s)) var(--c2);
    background-size: calc(2*var(--s)) calc(3.46*var(--s));
    z-index: -2;
    /* Furthest back */
}

/* Add glowing effect around hexagons */
.hex-glow {
    position: absolute;
    width: 150px;
    height: 173px;
    background: rgba(245, 188, 0, 0.03);
    border: 1px solid rgba(245, 188, 0, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 
        inset 0 0 20px rgba(245, 188, 0, 0.1),
        0 0 30px rgba(245, 188, 0, 0.05);
    filter: blur(0.5px);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark-hive);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Use the final mesh background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    /* Using the enhanced mesh background */
    background-image: 
        linear-gradient(90deg, 
            transparent 29px,
            rgba(245, 188, 0, 0.1) 29px,
            rgba(245, 188, 0, 0.1) 31px,
            transparent 31px
        ),
        linear-gradient(0deg, 
            transparent 29px,
            rgba(245, 188, 0, 0.1) 29px,
            rgba(245, 188, 0, 0.1) 31px,
            transparent 31px
        ),
        linear-gradient(60deg, 
            transparent 29px,
            rgba(245, 188, 0, 0.08) 29px,
            rgba(245, 188, 0, 0.08) 31px,
            transparent 31px
        ),
        linear-gradient(-60deg, 
            transparent 29px,
            rgba(245, 188, 0, 0.08) 29px,
            rgba(245, 188, 0, 0.08) 31px,
            transparent 31px
        );
    
    background-size: 
        60px 60px,
        60px 60px,
        60px 60px,
        60px 60px;
    
    opacity: 0.6;
    animation: meshFloat 40s infinite linear;
}

/* Background Glows */
body::after {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 188, 0, 0.15) 0%, transparent 70%);
    z-index: -2;
    filter: blur(20px);
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hexagon Background Layer */
.bg-visuals {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Rest of your existing CSS remains the same... */

/* Proper Hexagon Using CSS Clip-Path */
.hex {
    position: absolute;
    width: 150px;
    height: 173px;
    background: linear-gradient(135deg, rgba(245, 188, 0, 0.08), rgba(245, 188, 0, 0.03));
    border: 1px solid rgba(245, 188, 0, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float-hex 12s infinite ease-in-out;
}

/* Make the hexagons glow for better visibility */
.hex::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 188, 0, 0.05), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    filter: blur(5px);
}

/* Individual Hex Positions & Variations */
.hex-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 230px;
    animation-delay: 0s;
}

.hex-2 {
    top: 60%;
    left: 85%;
    width: 120px;
    height: 138px;
    animation-delay: -3s;
    transform: rotate(15deg);
}

.hex-3 {
    top: 80%;
    left: 15%;
    width: 180px;
    height: 207px;
    animation-delay: -6s;
}

.hex-4 {
    top: 20%;
    left: 75%;
    width: 100px;
    height: 115px;
    animation-delay: -9s;
    opacity: 0.5;
}

@keyframes float-hex {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes meshFloat {
    0%, 100% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    50% {
        background-position: 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    }
}

/* The rest of your existing CSS remains unchanged... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark-hive);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Glows */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 188, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hexagon Background Layer */
.bg-visuals {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Proper Hexagon Using CSS Clip-Path */
.hex {
    position: absolute;
    width: 150px;
    height: 173px;
    background: linear-gradient(135deg, rgba(245, 188, 0, 0.08), rgba(245, 188, 0, 0.03));
    border: 1px solid rgba(245, 188, 0, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float-hex 12s infinite ease-in-out;
}

/* Individual Hex Positions & Variations */
.hex-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 230px;
    animation-delay: 0s;
}

.hex-2 {
    top: 60%;
    left: 85%;
    width: 120px;
    height: 138px;
    animation-delay: -3s;
    transform: rotate(15deg);
}

.hex-3 {
    top: 80%;
    left: 15%;
    width: 180px;
    height: 207px;
    animation-delay: -6s;
}

.hex-4 {
    top: 20%;
    left: 75%;
    width: 100px;
    height: 115px;
    animation-delay: -9s;
    opacity: 0.5;
}

@keyframes float-hex {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(245, 188, 0, 0.3));
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 60%, var(--bee-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #a09990;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Hero Image Container */
.hero-visual {
    margin: 40px auto;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.hero-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
}

.slide {
    display: none;
    position: relative;
    animation: fadeEffect 1s;
}

.slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

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

.slide-caption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 13, 11, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--bee-yellow);
    font-weight: 600;
}

/* Slider Dots */
.slider-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    cursor: pointer;
    height: 6px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--bee-yellow);
    width: 50px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--bee-yellow);
}

.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    background: #1a1612;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--bee-yellow);
}

.card p {
    font-size: 0.95rem;
    color: #b0aaa3;
}

/* Premium Button */
.cta-btn {
    display: inline-block;
    border: none;
    padding: 18px 40px;
    border-radius: 100px;
    background: var(--bee-yellow);
    color: var(--dark-hive);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(245, 188, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 188, 0, 0.4);
    background: #fff;
}

/* Drawer Styles */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    z-index: 1000;
}

.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--cream);
    color: var(--dark-hive);
    padding: 40px;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.drawer.open {
    right: 0;
}

.drawer-overlay.show {
    display: block;
}

.drawer h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

input,
textarea {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e0ddd5;
    background: white;
    font-size: 1rem;
    font-family: inherit;
}

select {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e0ddd5;
    font-size: 1rem;
    background: white;
    font-family: inherit;
}

.form-trust {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #6f6a64;
    text-align: center;
}

.submit-btn {
    background: var(--dark-hive);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    background: #eee;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
}

.field {
    display: flex;
    flex-direction: column;
}

.error {
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 6px;
    display: none;
}

input:invalid,
select:invalid {
    border-color: #e74c3c;
}

input.valid,
select.valid {
    border-color: #2ecc71;
}

@media(min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .page {
        padding: 80px;
    }

    .hero {
        padding: 60px 0;
    }
}

/* Header – Logo on Top, Nav Below */

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.nav-below {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Reuse your existing nav-link styles */
.nav-link {
    color: #c7c1bb;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bee-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--bee-yellow);
    transition: width 0.3s ease;
}

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

/* Nav CTA (smaller than hero CTA) */
.nav-cta {
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    background: var(--bee-yellow);
    color: var(--dark-hive);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.nav-cta:hover {
    background: white;
    transform: scale(1.05);
}

/* Mobile tweak */
@media (max-width: 600px) {
    .nav-below {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Footer */
.site-footer {
    margin-top: 80px;
    padding: 60px 24px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #b0aaa3;
    font-size: 0.95rem;
    max-width: 380px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--bee-yellow);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: #c7c1bb;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: #b0aaa3;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--bee-yellow);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: #8f8a84;
}

.trust{
    font-size: 1.1rem;
    max-width: 600px;
    margin: 30px auto 0;
    text-align: center;
}

.custom-checkbox{
    display: none;
}