/* CSS Variables for consistent design tokens */
:root {
    --primary-green: #4CAF50;
    --tropic-green: #2E7D32;
    --text-dark: #2B2B2B;
    --background-light: rgb(211, 221, 212);
    --white: #FFFFFF;
    --gold: #D4A574;
    --gold-light: #E6C09A;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large: 1280px;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tropic-green);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-lg);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    background: rgba(0, 200, 83, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--tropic-green);
    border-radius: 2px;
    transition: 0.3s;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Main container */
.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hero section */
.hero-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-sm) var(--spacing-md);
    min-height: auto;
    background: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--spacing-md);
}

/* Profile photo */
.profile-section {
    display: flex;
    align-items: center;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Name and brand section */
.info-section {
    text-align: left;
}

.name {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.brand-text {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
}

.tropic-logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.ambassador {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Services section */
.services-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.checkmark {
    flex-shrink: 0;
}

.service-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Benefits Section - Horizontal Layout */
.benefits-section {
    background: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.benefits-box {
    background: rgb(211, 221, 212);
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefits-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: 0;
}

.benefits-container .benefit-item:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
}

.benefit-item-horizontal {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-icon-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.benefit-icon-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* Keywords Under Header */
.keywords-under-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
    margin: 0;
    background: var(--background-light);
    text-align: center;
}

/* Cruelty Free in Header */
.cruelty-free-header {
    text-align: center;
    margin-top: var(--spacing-md);
    padding: 0 var(--spacing-md);
}

.cruelty-free-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Wave footer */
.wave-footer {
    height: 200px;
    background: var(--tropic-green);
    position: relative;
    margin-top: auto;
}

.wave-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--background-light);
    border-radius: 0 0 50% 50%;
    transform: translateY(-25px);
}

/* Keywords Section */
.keywords-section {
    background: var(--white);
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
}

.keywords-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.keyword {
    font-family: var(--font-script);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(212, 165, 116, 0.3);
    letter-spacing: 0.02em;
    position: relative;
    transition: all 0.3s ease;
}

.keyword:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.keyword-separator {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
    opacity: 0.7;
}

/* Content Sections */
.content-sections {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.content-section {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: rgb(211, 221, 212);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.section-icon {
    flex-shrink: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.product-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-image-placeholder {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--tropic-green));
    border-radius: 10px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 500;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.product-card p {
    color: #666;
    font-size: 1rem;
}

/* Shop Products List */
.shop-products-list {
    margin-bottom: var(--spacing-lg);
}

.shop-products-list ul {
    list-style: none;
    padding: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: var(--spacing-md);
}

.shop-products-list li {
    padding: var(--spacing-xs) 0;
    color: #666;
    position: relative;
    padding-left: var(--spacing-md);
    font-size: 1.1rem;
}

.shop-products-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Try Products List */
.try-products-list {
    margin-bottom: var(--spacing-lg);
}

.try-products-list ul {
    list-style: none;
    padding: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: var(--spacing-md);
}

.try-products-list li {
    padding: var(--spacing-xs) 0;
    color: #666;
    position: relative;
    padding-left: var(--spacing-md);
    font-size: 1.1rem;
}

.try-products-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F9FF;
    border-radius: 10px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.benefit-item {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    padding: 0.75rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
    border: 2px solid var(--gold-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-emoji {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-guarantee-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
    min-width: 0;
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Party Details */
.party-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.detail-column {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-column h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.detail-column ul {
    list-style: none;
    padding: 0;
}

.detail-column li {
    padding: var(--spacing-xs) 0;
    color: #666;
    position: relative;
    padding-left: var(--spacing-md);
}

.detail-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Primary Button */
.btn-primary {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--tropic-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

/* Contact buttons */
.contact-buttons {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 100;
}

.btn-contact,
.btn-shop {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-contact {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-green);
}

.btn-shop {
    background: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-contact:hover,
.btn-contact:focus {
    background: var(--primary-green);
    color: var(--white);
}

.btn-shop:hover,
.btn-shop:focus {
    background: var(--tropic-green);
    border-color: var(--tropic-green);
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .profile-photo {
        width: 180px;
        height: 180px;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .tropic {
        font-size: 1.5rem;
    }
    
    .ambassador {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-md) 0;
        gap: var(--spacing-sm);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-section {
        padding: var(--spacing-md) var(--spacing-sm);
        min-height: 60vh;
    }
    
    .hero-content {
        gap: var(--spacing-md);
        justify-items: center;
    }
    
    .info-section {
        text-align: center;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .tropic-logo {
        height: 1.5rem;
    }
    
    .ambassador {
        font-size: 1.5rem;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .service-text {
        font-size: 1.3rem;
    }
    
    .contact-buttons {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        flex-direction: row;
    }
    
    .btn-contact,
    .btn-shop {
        flex: 1;
        padding: 14px 20px;
    }
    
    /* Content sections responsive */
    .content-section {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .party-details {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .btn-primary {
        width: 100%;
        padding: 16px 24px;
    }
    
    /* Keywords under header responsive */
    .keyword {
        font-size: 2rem;
    }
    
    .keyword-separator {
        font-size: 1.5rem;
    }
    
    .keywords-under-header {
        gap: var(--spacing-sm);
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    /* Benefits section responsive */
    .benefits-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .benefits-container .benefit-item:last-child {
        max-width: 100%;
    }
    
    .benefit-item-horizontal {
        padding: var(--spacing-sm);
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-text h4 {
        font-size: 1rem;
    }
    
    .benefit-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .tropic {
        font-size: 1.1rem;
    }
    
    .ambassador {
        font-size: 1.3rem;
    }
    
    .service-text {
        font-size: 1.2rem;
    }
    
    .wave-footer {
        height: 150px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .btn-contact,
    .btn-shop {
        transition: none;
    }
}

/* Focus styles for accessibility */
.btn-contact:focus,
.btn-shop:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Articles Page Styles */
.articles-header {
    background: linear-gradient(135deg, var(--primary-green), var(--tropic-green));
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--white);
}

.articles-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.articles-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.articles-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
}

.articles-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.article-card {
    background: var(--background-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
}

.article-content {
    padding: var(--spacing-lg);
}

.article-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.article-date {
    color: #888;
}

.article-category {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--tropic-green);
}

/* Contact Form Styles */
.contact-form-section {
    background: var(--background-light);
    padding: var(--spacing-xl) 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.contact-form-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-form-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot field - hidden from users */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.captcha-group {
    background: rgba(76, 175, 80, 0.05);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.captcha-group label {
    color: var(--tropic-green);
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* Article page */
.article-page {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

.article-header {
  margin-bottom: var(--spacing-lg);
}

.article-header h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.article-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: var(--spacing-sm);
}

.article-meta {
  display: flex;
  gap: var(--spacing-md);
  font-size: 0.95rem;
  color: #777;
}

.article-body {
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.article-body h3 {
  font-size: 1.2rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
}

.article-body p,
.article-body li {
  line-height: 1.8;
  color: #333;
}

.article-body ul {
  padding-left: 1.2rem;
}

.article-body hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: var(--spacing-lg) 0;
}

.article-related {
  margin-top: var(--spacing-xl);
  background: var(--background-light);
  padding: var(--spacing-lg);
  border-radius: 12px;
}

.article-related h3 {
  margin-bottom: var(--spacing-sm);
}

.article-related ul {
  list-style: disc;
  padding-left: 1.2rem;
}

/* Responsive tweaks for article */
@media (max-width: 768px) {
  .article-header h1 { font-size: 2rem; }
  .article-body { padding: var(--spacing-lg); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(197, 154, 75, 0.35);
}
.btn-secondary {
  background: var(--background-light);
  color: var(--text-dark);
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
}

/* Product callouts */
.product-callouts {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: var(--spacing-xl);
  margin: var(--spacing-xl) 0;
}
.product-callouts h3 { margin-top: var(--spacing-lg); }
.product-callouts ul { padding-left: 1.2rem; }

/* Responsive form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    .contact-buttons {
        display: none;
    }
    
    .wave-footer {
        height: 50px;
    }
}