/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Custom variables */
:root {
    --primary-green: #34A853;
    --secondary-yellow: #FFB800;
    --accent-blue: #4285F4;
    --dark-navy: #1A365D;
    --light-gray: #F7FAFC;
    --text-dark: #2D3748;
    --text-light: #718096;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

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

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo span {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    color: var(--secondary-yellow);
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.floating-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.floating-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.floating-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.floating-nav a:hover {
    color: var(--primary-green);
}

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

/* Services Section */
.services-asymmetric {
    padding: 6rem 2rem;
    background: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.large {
    grid-column: span 8;
    display: flex;
    min-height: 400px;
}

.service-card.medium {
    grid-column: span 4;
    grid-row: span 2;
}

.service-card.small {
    grid-column: span 4;
}

.service-image {
    background-size: cover;
    background-position: center;
    flex: 1;
    min-height: 200px;
}

.service-card.large .service-image {
    width: 50%;
}

.service-content {
    padding: 2rem;
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Method Section */
.method-interactive {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
}

.method-carousel {
    max-width: 1200px;
    margin: 0 auto 4rem;
    overflow: hidden;
}

.method-track {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.method-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.9);
    flex: 0 0 200px;
}

.method-step.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-detail {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.detail-content {
    display: none;
}

.detail-content.active {
    display: block;
}

.detail-content.active img {
    opacity: 1;
}

.detail-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.detail-content h4 {
    padding: 1.5rem 2rem 0;
    font-size: 1.5rem;
    color: var(--dark-navy);
}

.detail-content p {
    padding: 1rem 2rem 2rem;
    color: var(--text-light);
}

/* Nordic Nature Section */
.nordic-nature {
    padding: 6rem 2rem;
    background: var(--dark-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.nordic-nature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: nordic-glow 15s linear infinite;
}

@keyframes nordic-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nature-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.nature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nature-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.nature-item:hover {
    transform: scale(1.05);
}

.nature-item span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Pricing Section */
.pricing-unique {
    padding: 6rem 2rem;
    background: white;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.price-card {
    flex: 1;
    max-width: 350px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #eee;
}

.price-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.select-plan {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.select-plan:hover {
    background: darken(var(--primary-green), 10%);
    color: #34A853;
    transform: translateY(-2px);
}

/* Team Section */
.team-hexagon {
    padding: 6rem 2rem;
    background: linear-gradient(45deg, var(--light-gray) 0%, white 100%);
}

.hexagon-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hex-item {
    width: 320px;
    height: 350px;
    position: relative;
    transition: transform 0.3s ease;
}

.hex-item:hover {
    transform: translateY(-10px);
}

.hex-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hex-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1rem 1rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hex-item:hover .hex-overlay {
    transform: translateY(0);
    text-align: center;
    padding: 2rem 1rem 3rem;
}

.hex-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.hex-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Calculator Section */
.calculator-section {
    padding: 6rem 2rem;
    background: var(--dark-navy);
    color: white;
    text-align: center;
}

.calculator-container {
    max-width: 800px;
    margin: 2rem auto 0;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    color: var(--dark-navy);
    font-size: 1rem;
}

.calculator-result {
    margin-top: 2rem;
}

.calorie-display {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.unit {
    font-size: 1.5rem;
    opacity: 0.8;
}

.macro-distribution {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.macro-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    min-width: 120px;
}

.macro-item span {
    display: block;
}

.macro-item span:first-child {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.macro-item span:last-child {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact-creative {
    padding: 6rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    color: var(--primary-green);
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
}

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

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .service-card.large {
        flex-direction: column;
    }
    
    .service-card.large .service-image {
        width: 100%;
        height: 300px;
    }
    
    .nature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .hexagon-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}


.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
}

.text-wrapper p{
    margin-bottom: 10px;
}