/* KrookedKradle Nursery - Earthy Wilderness Theme */

:root {
    /* Earthy Color Palette */
    --forest-deep: #0d1f0d;
    --forest-dark: #1a3a1a;
    --forest-primary: #2d5a2d;
    --forest-accent: #4a7c4a;
    --moss-light: #7fb07f;
    --bark-dark: #2c2416;
    --bark-medium: #4a3c2a;
    --earth-brown: #6b5344;
    --sand-light: #d4c4a8;
    --cream: #f5f1e8;
    --frost: #e8f0e8;
    
    /* Accent Colors */
    --crystal-ice: #a8d8d8;
    --crystal-glow: rgba(168, 216, 216, 0.3);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--forest-deep);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--moss-light) 0%, var(--crystal-ice) 50%, var(--moss-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--forest-deep);
}

.aurora {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(74, 124, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(42, 90, 42, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(127, 176, 127, 0.05) 0%, transparent 60%);
    animation: aurora-shift 20s ease-in-out infinite;
}

@keyframes aurora-shift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(2%, -2%) rotate(-1deg); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--moss-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite;
}

@keyframes float-particle {
    0%, 100% { 
        transform: translateY(100vh) scale(0); 
        opacity: 0;
    }
    10% { 
        opacity: 0.3;
        transform: translateY(80vh) scale(1);
    }
    90% { 
        opacity: 0.3;
        transform: translateY(20vh) scale(1);
    }
    100% { 
        transform: translateY(0) scale(0); 
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(13, 31, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cream);
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    animation: crystal-glow 3s ease-in-out infinite;
}

@keyframes crystal-glow {
    0%, 100% { box-shadow: 0 0 10px var(--crystal-glow); }
    50% { box-shadow: 0 0 25px var(--crystal-ice), 0 0 40px var(--crystal-glow); }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--moss-light);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--forest-accent);
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--moss-light);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 124, 74, 0.2);
    border: 1px solid rgba(127, 176, 127, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--moss-light);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--crystal-ice);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(168, 216, 216, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(168, 216, 216, 0); }
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(245, 241, 232, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-accent), var(--forest-primary));
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(45, 90, 45, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 74, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(127, 176, 127, 0.5);
}

.btn-secondary:hover {
    background: rgba(127, 176, 127, 0.1);
    border-color: var(--moss-light);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
    opacity: 0.6;
}

.dna-helix {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: helix-rotate 20s linear infinite;
}

@keyframes helix-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.helix-strand {
    position: absolute;
    width: 150px;
    height: 300px;
    border: 2px solid rgba(127, 176, 127, 0.3);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.strand-1 {
    animation: strand-1 4s ease-in-out infinite;
}

.strand-2 {
    animation: strand-2 4s ease-in-out infinite;
    border-color: rgba(168, 216, 216, 0.3);
}

@keyframes strand-1 {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(180deg); }
}

@keyframes strand-2 {
    0%, 100% { transform: translateX(-50%) rotate(180deg); }
    50% { transform: translateX(-50%) rotate(0deg); }
}

.cryo-chamber {
    position: absolute;
    width: 200px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(168, 216, 216, 0.4);
    border-radius: 20px;
    overflow: hidden;
}

.chamber-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--crystal-glow) 0%, transparent 100%);
    animation: chamber-glow 3s ease-in-out infinite;
}

@keyframes chamber-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.chamber-frost {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(0deg, rgba(168, 216, 216, 0.3), transparent);
    border-radius: 0 0 17px 17px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    font-size: 0.8rem;
    color: var(--cream);
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--cream);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--cream);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.5; }
}

/* Stats Bar */
.stats-bar {
    background: rgba(44, 36, 22, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(127, 176, 127, 0.2);
    border-bottom: 1px solid rgba(127, 176, 127, 0.2);
    padding: 40px 0;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--moss-light);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--crystal-ice);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.6);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--moss-light);
    margin-bottom: 15px;
    opacity: 0.8;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(245, 241, 232, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent, rgba(44, 36, 22, 0.3), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-content p {
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--cream);
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.6);
    margin: 0;
}

/* Visual Card */
.visual-card {
    position: relative;
    background: linear-gradient(135deg, rgba(42, 90, 42, 0.2), rgba(13, 31, 13, 0.5));
    border: 1px solid rgba(127, 176, 127, 0.3);
    border-radius: 20px;
    padding: 60px;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--crystal-glow), transparent 70%);
    top: -100px;
    right: -100px;
    animation: card-glow-pulse 4s ease-in-out infinite;
}

@keyframes card-glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.microscope-view {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.cell {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--moss-light), var(--forest-primary));
    opacity: 0.6;
    animation: cell-division 8s ease-in-out infinite;
}

.cell-1 { width: 60px; height: 60px; top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.cell-2 { width: 80px; height: 80px; top: 40px; left: 20px; animation-delay: 1s; }
.cell-3 { width: 70px; height: 70px; top: 40px; right: 20px; animation-delay: 2s; }
.cell-4 { width: 90px; height: 90px; bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 3s; }

@keyframes cell-division {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    50% { transform: scale(1.1) translate(2px, -2px); opacity: 0.8; }
}

.visual-label {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--moss-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Section */
.services {
    background: var(--forest-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(13, 31, 13, 0.5);
    border: 1px solid rgba(127, 176, 127, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(127, 176, 127, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(45, 90, 45, 0.4), rgba(13, 31, 13, 0.6));
    border-color: var(--forest-accent);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--forest-accent);
    color: var(--cream);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(127, 176, 127, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.card-icon {
    color: var(--moss-light);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--cream);
}

.service-card > p {
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--moss-light);
}

/* Science Section */
.science {
    background: linear-gradient(180deg, var(--forest-dark), var(--forest-deep));
}

.science-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--forest-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--cream);
}

.step-content p {
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Cryo Tank Visual */
.science-visual {
    display: flex;
    justify-content: center;
}

.cryo-tank {
    position: relative;
    width: 250px;
    height: 500px;
}

.tank-body {
    position: absolute;
    width: 100%;
    height: 85%;
    background: linear-gradient(180deg, 
        rgba(168, 216, 216, 0.1) 0%,
        rgba(168, 216, 216, 0.2) 100%);
    border: 3px solid rgba(168, 216, 216, 0.5);
    border-radius: 20px 20px 30px 30px;
    overflow: hidden;
}

.tank-window {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 40px;
    background: linear-gradient(180deg, 
        rgba(13, 31, 13, 0.8) 0%,
        rgba(42, 90, 42, 0.4) 100%);
    border-radius: 10px;
    overflow: hidden;
}

.nitrogen-vapor {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(0deg, rgba(168, 216, 216, 0.3), transparent);
    animation: vapor-rise 3s ease-in-out infinite;
}

@keyframes vapor-rise {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-10px); opacity: 1; }
}

.sample-rack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.sample {
    width: 40px;
    height: 50px;
    background: linear-gradient(180deg, var(--crystal-ice), var(--moss-light));
    border-radius: 5px 5px 10px 10px;
    animation: sample-glow 2s ease-in-out infinite;
}

.sample:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes sample-glow {
    0%, 100% { box-shadow: 0 0 5px var(--crystal-glow); }
    50% { box-shadow: 0 0 20px var(--crystal-ice); }
}

.tank-gauge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bark-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--crystal-ice);
}

.tank-base {
    position: absolute;
    bottom: 0;
    width: 120%;
    left: -10%;
    height: 60px;
    background: var(--bark-medium);
    border-radius: 10px;
}

.frost-particles {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    opacity: 0.5;
}

.frost-particles span {
    width: 8px;
    height: 8px;
    background: var(--crystal-ice);
    border-radius: 50%;
}

/* Genetics Section */
.genetics {
    background: linear-gradient(180deg, var(--forest-deep), var(--bark-dark));
}

.genetics-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.genetic-card {
    background: rgba(13, 31, 13, 0.6);
    border: 1px solid rgba(127, 176, 127, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.genetic-card:hover {
    transform: translateY(-10px);
    border-color: rgba(127, 176, 127, 0.4);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.strain-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.strain-visual.indica {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
}

.strain-visual.sativa {
    background: linear-gradient(135deg, #4a7c4a 0%, #7fb07f 100%);
}

.strain-visual.hybrid {
    background: linear-gradient(135deg, #2c2416 0%, #6b5344 100%);
}

.card-content {
    padding: 30px;
}

.strain-type {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--crystal-ice);
    margin-bottom: 10px;
}

.genetic-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--cream);
}

.genetic-card p {
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.strain-stats {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--moss-light);
}

/* Payment Portal Section */
.payment-portal {
    background: linear-gradient(180deg, var(--forest-deep), var(--bark-dark));
    padding: 100px 0;
}

/* Packages Grid - Main Focus */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: rgba(13, 31, 13, 0.5);
    border: 1px solid rgba(127, 176, 127, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(127, 176, 127, 0.4);
}

.package-card.featured {
    background: linear-gradient(135deg, rgba(45, 90, 45, 0.4), rgba(13, 31, 13, 0.6));
    border-color: var(--forest-accent);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--forest-accent), var(--moss-light));
    color: var(--forest-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    margin-bottom: 25px;
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.package-tagline {
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.9rem;
}

.package-price {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(127, 176, 127, 0.1);
    border-bottom: 1px solid rgba(127, 176, 127, 0.1);
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--moss-light);
    vertical-align: top;
}

.package-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}

.package-price .period {
    font-size: 1rem;
    color: rgba(245, 241, 232, 0.5);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    color: rgba(245, 241, 232, 0.8);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(127, 176, 127, 0.1);
}

.package-features li:last-child {
    border-bottom: none;
}

/* Additional Custom Options */
.packages-additional {
    margin-bottom: 60px;
}

.packages-additional h3 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 30px;
}

.custom-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-card {
    background: rgba(44, 36, 22, 0.3);
    border: 1px solid rgba(127, 176, 127, 0.15);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-card:hover {
    background: rgba(74, 124, 74, 0.2);
    border-color: var(--moss-light);
}

.custom-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 10px;
}

.custom-card p {
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.custom-cta {
    color: var(--moss-light);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.85rem;
}

.badge-icon {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 60px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .custom-options {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bark-dark), var(--forest-deep));
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 40px;
}

/* Contact Section */
.contact {
    background: var(--forest-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-tag {
    display: block;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(245, 241, 232, 0.6);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--moss-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--crystal-ice);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(13, 31, 13, 0.5);
    border: 1px solid rgba(127, 176, 127, 0.2);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(44, 36, 22, 0.5);
    border: 1px solid rgba(127, 176, 127, 0.3);
    border-radius: 12px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--moss-light);
    box-shadow: 0 0 20px rgba(127, 176, 127, 0.2);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(245, 241, 232, 0.5);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea + label {
    top: 20px;
    transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--forest-deep);
    color: var(--moss-light);
    border-radius: 5px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237fb07f' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background: var(--forest-deep);
    color: var(--cream);
}

/* Footer */
.footer {
    background: var(--bark-dark);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(127, 176, 127, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(245, 241, 232, 0.6);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(245, 241, 232, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--moss-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(127, 176, 127, 0.1);
}

.footer-bottom p {
    color: rgba(245, 241, 232, 0.5);
    font-size: 0.85rem;
}

.alaska-note {
    color: var(--moss-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .science-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid,
    .genetics-showcase {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 31, 13, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-bar .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Animations on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 100px;
}

/* Brand Slogan */
.brand-slogan {
    color: var(--moss-light);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}