/* Fonts & Variables */

@font-face {
    font-family: 'MicrogrammaD';
    src: url('Fonts/MicrogrammaD-BoldExte.eot');
    src: url('Fonts/MicrogrammaD-BoldExte.eot?#iefix') format('embedded-opentype'),
        url('Fonts/MicrogrammaD-BoldExte.woff2') format('woff2'),
        url('Fonts/MicrogrammaD-BoldExte.woff') format('woff'),
        url('Fonts/MicrogrammaD-BoldExte.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #2B4B3B;
    --primary-hover: #1e362a;
    --black: #000000;
    --dark-bg: #111111;
    --white: #ffffff;
    --light-gray: #F5F8F6;
    --gray-text: #666666;
    --border-color: #e0e0e0;
    
    /* Flavor Colors */
    --color-cool-mint: #4A749B;
    --color-sweet-mint: #498863;
    --color-icy-apple: #7CAE72;
    --color-watermelon: #D35D4C;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img
{
	border:0px;
	display:block;
	outline: none;
	border-style: none;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand, .brand-large, .vertical-text {
    font-family: 'MicrogrammaD', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    /*padding: 0 20px;*/
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-primary {
    background-color: var(--white);
    color: #000;
    border: 1px solid var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
	color: #fff
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline-dark:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar.scrolled .brand,
.navbar.scrolled .nav-links a {
    color: #fff;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 2px;
}
.brand img
{
	height: 50px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-shop-btn {
    background-color: var(--white);
    color: var(--black) !important;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.70rem;
    transition: 0.3s;
}

.nav-shop-btn:hover {
    background-color: var(--light-gray);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
}

.navbar.scrolled .hamburger span {
    background-color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
	font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.down
{
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 8;
}
.down a img
{
	height:40px;
}

/* What is KEES */
.what-is-kees {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.text-content p {
    color: #000;
    margin-bottom: 30px;
    font-size: 1.10rem;
}

.pill-showcase {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

/* BIGGER PILL STYLES & REVERSED GRADIENTS & CENTERED */
.pill {
    width: 130px;
    height: 440px;
    border-radius: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Centered Vertically */
    gap: 20px; /* Brings text and image very close together */
    padding: 35px 15px;
    position: relative;
}

/* Gradients Reversed from original (Top becomes Bottom, Bottom becomes Top) */
.pill-blue { 
    background: linear-gradient(to top, rgba(52, 88, 130, 0.2) 0%, rgba(255, 255, 255, 0) 92%); 
}
.text-blue { color: var(--color-cool-mint); }

.pill-green { 
    background: linear-gradient(to bottom, rgba(46, 113, 84, 0.2) 0%, rgba(255, 255, 255, 0) 92%); 
}
.text-green { color: var(--color-sweet-mint); }

.pill-light-green { 
    background: linear-gradient(to top, rgba(83, 132, 73, 0.2) 0%, rgba(255, 255, 255, 0) 92%); 
}
.text-light-green { color: var(--color-icy-apple); }

.pill-red { 
    background: linear-gradient(to bottom, rgba(210, 90, 81, 0.2) 0%, rgba(255, 255, 255, 0) 92%); 
}
.text-red { color: var(--color-watermelon); }

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.4rem;
    letter-spacing: 2px;
    white-space: nowrap;
    font-weight: bold;
}

.pill img {
    width: 120%;
    filter: drop-shadow(0px 15px 15px rgba(0,0,0,0.15));
    z-index: 2;
}

.stagger-1 { transform: translateY(-40px); }
.stagger-2 { transform: translateY(40px); }
.stagger-3 { transform: translateY(-40px); }
.stagger-4 { transform: translateY(40px); }

/* Features Section */
.features {
    padding: 0 0 80px 0;
    background-color: var(--white); /* White background for icons */
}

.features-title-banner {
    background-color: var(--light-gray); /* Background only on title */
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-bottom: 60px;
}

.features-title-banner h2 {
    font-size: 3.2rem;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: transparent;
    margin-bottom: 20px;
}

.icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-item h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;   
	font-family: 'MicrogrammaD', sans-serif;
}

.feature-item p {
    font-size: 0.85rem;
    color: #000;
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    padding: 70px 0;
    background-color: var(--black);
    color: var(--white);
}

.how-it-works h2 {
    font-size: 3.2rem;
    margin-bottom: 70px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-image {
    position: relative;
    width: 225px;
    height: 225px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.step-badge {
    position: absolute;
    top: -5px;
    left: 5px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'MicrogrammaD', sans-serif;
    font-size: 0.9rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step p {
    color: #fff;
    font-size: 0.85rem;
    max-width: 370px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: var(--white);
}

.video-container {
    background-color: #E6E6E6;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
}

/* Find Your Level */
.find-your-level {
    padding: 100px 0;
    background-color: var(--white);
}

.find-your-level h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
}

.level-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.level-nav a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-text);
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.level-nav a.active {
    color: var(--black);
    border-bottom: 2px solid var(--black);
}

.slider-container {
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 30px;
    cursor: grab;
    /* NEW: Prevents native dragging conflicts */
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.slider-container:active {
    cursor: grabbing;
}

/* NEW: Disables links/buttons from being clicked WHILE swiping */
.slider-container.is-dragging .product-card {
    pointer-events: none; 
}

.slider-container:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

/* ALL Product Cards match the "Active" Green design by default */
.product-card {
    flex: 0 0 calc(25% - 22.5px);
    background: var(--white);
    border: 1px solid #D7D7D7;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
	 border: 1px solid #3A6B4A;
}
.product-card:hover .btn-card
{
	 background-color: var(--primary-hover);
    border-color: var(--primary-hover);
	color: #fff;
}
.btn-card {
    background-color: #fff;
    color: #000;
    border: 1px solid #D7D7D7;
    padding: 10px 24px;
    font-size: 0.8rem;
    border-radius: 50px;
    font-weight: 300;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
	color: #fff;
}

.prod-img {
    width: 160px;
    height: auto;
    margin:0px auto 25px auto;
    transition: transform 0.3s ease;
}

.product-card:hover .prod-img {
    transform: scale(1.05);
}

.strength {
    font-size: 0.7rem;
    color: var(--gray-text);
    margin-bottom: 5px;
}
.strength b
{
	color: #000;
	font-weight: bold;
}
.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-card .desc {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin-bottom: 25px;
}
.circles
{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	margin-bottom: 15px;
}
.fill
{
	width: 7px;
	height: 7px;
	border-radius: 100%;
	border: 1px solid #000;
	display: block;
	margin-right: 2px;
}
.fill:last-child
{
	margin-right: 0px;
}
.fill-black
{
	background-color: #000;
}
/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    min-height: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

/* Lifestyle Section */
.lifestyle {
    position: relative;
    padding: 100px 0;
    background-color: var(--black);
    color: var(--white);
    overflow: hidden;
}

.lifestyle-bg {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.03) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.lifestyle h2 {
    position: relative;
    z-index: 2;
    font-size: 3.2em;
    margin-bottom: 70px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.lifestyle-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.life-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
}

.life-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.life-card:hover img {
    transform: scale(1.05);
}

.life-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,1), transparent);
}

.card-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.card-caption h4 {
    font-family: 'MicrogrammaD', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: inline-block;
    padding-bottom: 5px;
    border: none;
}
.circle1
{
	width: 200px;
	height: 200px;
	border: 1px solid rgba(255,255,255,.1);
	top: 20%;
	left: 15%;
	position: absolute;
	border-radius: 100%;
}
.circle2
{
	width: 200px;
	height: 200px;
	border: 1px solid rgba(255,255,255,.1);
	top: 10%;
	left: 35%;
	position: absolute;
	border-radius: 100%;
}
.circle3
{
	width: 200px;
	height: 200px;
	border: 1px solid rgba(255,255,255,.1);
	top: 20%;
	right: 35%;
	position: absolute;
	border-radius: 100%;
}
.circle4
{
	width: 200px;
	height: 200px;
	border: 1px solid rgba(255,255,255,.1);
	top: 10%;
	right: 15%;
	position: absolute;
	border-radius: 100%;
}
/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid #222;
}
.brand-large img
{
	height: 100px;
	margin: auto
}
.brand-large {
    font-size: 4rem;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    font-size: 0.75rem;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.social-icons a img
{
	height: 40px;
}


.copyright {
    font-size: 0.75rem;
    color: #666;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}
/*.text-red,.text-green
{
	margin-top: 30px;
}
.text-blue,.text-light-green
{
	margin-bottom: 30px;
}*/
/* Responsive Design */
@media (max-width: 1024px) {
	

	.what-is-kees,.how-it-works,.video-section,.find-your-level,.lifestyle
	{
		    padding: 40px 0;
	}
	.text-content h2
	{
		    font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
	}
	.brand img {
    height: 30px;
}
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
    
    .product-card {
        flex: 0 0 calc(50% - 15px);
    }
	.container
	{
		padding: 0px 20px;
	}
	.brand-large img {
    height: 70px;
}
	.find-your-level h2 {
    font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
}
	.how-it-works h2 {
     font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
}
	.features-title-banner h2
	{
		font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
	}
	.level-nav
	{
		gap: 10px;
    margin-bottom: 30px;
	}
}

/* ======== MOBILE NAVIGATION FIX ======== */
@media (max-width: 768px) {

	.what-is-kees,.how-it-works,.video-section,.find-your-level,.lifestyle
	{
		    padding: 40px 0;
	}
	.text-content h2
	{
		    font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
	}
		.how-it-works h2 {
     font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
}
		.find-your-level h2 {
    font-size: 2rem;
    margin-bottom: 30px;
			line-height: 1.2
}
	.brand-large img {
    height: 70px;
}

    /* Ensure Brand Logo stays above full-screen nav */
    .brand {
        position: relative;
        z-index: 1010;
    }
	.brand img {
        height: 30px;
    }
	.container {
		padding: 0px 20px;
	}
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Full Screen Mobile Nav */
    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed; 
        top: 0;
        left: -100%; /* Hide off-screen by default */
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 0;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000;
    }

    /* This class is added by the new JavaScript */
    .nav-links.active {
        left: 0; /* Slide in */
    }

    .nav-links a {
        padding: 10px 0;
        width: 50%;
        text-align: center;
        font-size: 1.5rem;
    }
    
    .nav-shop-btn {
        margin-top: 20px;
        font-size: 1rem;
        padding: 15px 40px;
        width: auto;
    }

    /* Ensure Hamburger stays above full-screen nav */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1010;
    }

    /* Animate hamburger into an X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .split-layout {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    .pill-showcase {
        justify-content: center;
        margin-top: 0px;
    }

    .steps-grid, .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-card {
        flex: 0 0 100%;
    }
    
    .slider-track {
        gap: 0;
    }
    
    .lifestyle h2 {
        font-size: 2rem;
		line-height: 1.2
    }
	.features-title-banner h2
	{
		font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
	}
	.level-nav
	{
		gap: 10px;
    margin-bottom: 30px;
	}
}

@media (max-width: 480px) {
	
	.what-is-kees,.how-it-works,.video-section,.find-your-level,.lifestyle
	{
		    padding: 40px 0;
	}
	.text-content h2
	{
		    font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
	}
	.features-title-banner h2
	{
		font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
	}
		.how-it-works h2 {
     font-size: 2rem;
    margin-bottom: 30px;
		line-height: 1.2
}
		.find-your-level h2 {
    font-size: 2rem;
    margin-bottom: 30px;
			line-height: 1.2
}
	.brand img {
    height: 30px;
}
	.brand-large img {
    height: 70px;
}
	.container
	{
		padding: 0px 20px;
	}
    .pill-showcase {
        flex-wrap: wrap;
        gap: 7px;
    }
    
    .pill {
        height: 390px;
        width: 90px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
 /*   .hero-btns {
        flex-direction: column;
    }*/
		.level-nav
	{
		gap: 10px;
    margin-bottom: 30px;
	}
}
/* =========================================
   SECONDARY PAGES STYLES (FAQ, Contact, Legal)
   ========================================= */

/* Ensure the navbar has a solid background on secondary pages immediately */
body:not(.home) .navbar {
    background: rgba(0, 0, 0, 0.98);
    padding: 15px 0;
}

/* Page Header */
.page-header {
    background-color: #F5F8F6;
    padding: 160px 0 60px 0; /* Extra top padding to clear the fixed navbar */
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--black);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray-text);
}

/* General Page Content Wrapper */
.page-content {
    padding: 80px 0;
    background-color: var(--white);
    min-height: 50vh;
}

.narrow-container {
    max-width: 800px; /* Constrains text width for better readability */
    margin: 0 auto;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Legal Text Styles (Terms & Privacy) */
.legal-text h3 {
    font-size: 1.3rem;
    margin: 40px 0 15px 0;
    color: var(--black);
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text p {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray-text);
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block strong {
    display: block;
    font-family: 'MicrogrammaD', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--gray-text);
}

/* Form Styles */
.contact-form-container {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--black);
    transition: border-color 0.3s ease;
}

.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Responsive Secondary Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 130px 0 50px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}
/* =========================================
   MODERN CONTACT PAGE STYLES
   ========================================= */

.modern-contact-page {
    padding: 120px 0 80px 0; /* Clears navbar */
    background-color: var(--light-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.modern-contact-wrapper {
    display: flex;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

/* Left Panel - Dark Info Section */
.contact-info-panel {
    flex: 1;
    background-color: var(--black);
    color: var(--white);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-info-panel > p {
    color: #aaaaaa;
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 90%;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item h4 {
    font-family: 'MicrogrammaD', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1rem;
}

.contact-social-mini {
    display: flex;
    gap: 20px;
}

.contact-social-mini a {
    font-family: 'MicrogrammaD', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.contact-social-mini a:hover {
    color: var(--primary-color);
}

/* Right Panel - Minimalist Form */
.contact-form-panel {
    flex: 1.2;
    padding: 60px 50px;
    background-color: var(--white);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--black);
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row .input-group {
    flex: 1;
}

/* Floating Label Magic */
.input-group {
    position: relative;
    width: 100%;
}

.minimal-form input,
.minimal-form textarea,
.minimal-form select {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 1rem;
    color: var(--black);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.minimal-form input:focus,
.minimal-form textarea:focus,
.minimal-form select:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

/* Base Label Position */
.minimal-form label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating Action (Triggers on focus or when text is inside) */
.minimal-form input:focus ~ label,
.minimal-form input:not(:placeholder-shown) ~ label,
.minimal-form textarea:focus ~ label,
.minimal-form textarea:not(:placeholder-shown) ~ label {
    top: -16px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Select Box Adjustments */
.select-group select {
    color: #999; /* Matches placeholder color initially */
}
.select-group select:focus,
.select-group select:valid {
    color: var(--black);
}

/* Submit Button */
.form-submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-submit-btn:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive Modern Contact */
@media (max-width: 900px) {
    .modern-contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info-panel {
        padding: 40px 30px;
    }

    .contact-form-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .modern-contact-page {
        padding-top: 100px;
    }
    .contact-info-panel h2 {
        font-size: 2.2rem;
    }
    .input-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* Extra formatting specifically for the lists in the new privacy text */
        .legal-text ul {
            margin-bottom: 20px;
            padding-left: 20px;
            color: #000;
        }
        .legal-text ul li {
            margin-bottom: 8px;
            line-height: 1.6;position: relative;
        }
  .legal-text ul li:before

{
	content: "";
	width: 7px;
	height: 7px;
	background-color: #000;
	border-radius: 100%;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute
}
        .nicotine-warning {
            margin-top: 50px;
            padding: 20px;
            border: 2px solid #930002;
            font-weight: bold;
            text-align: center;
            color:#930002 !important;
            
        }