/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Nostalgiacore Theme */
:root {
    /* Temperature-based naming for nostalgiacore */
    --flavor-sepia-cold: #f4f1e8;
    --flavor-sepia-warm: #e6d7b8;
    --flavor-sepia-hot: #d4b896;
    --flavor-sepia-blazing: #b8956d;
    --flavor-sepia-molten: #8b6914;
    
    /* Accent colors */
    --ingredient-gold: #d4af37;
    --ingredient-copper: #b87333;
    --ingredient-bronze: #cd7f32;
    --ingredient-amber: #ffbf00;
    
    /* Typography */
    --recipe-font-display: 'Lobster', cursive;
    --recipe-font-heading: 'Playfair Display', serif;
    --recipe-font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --texture-space-xs: 0.5rem;
    --texture-space-sm: 1rem;
    --texture-space-md: 1.5rem;
    --texture-space-lg: 2rem;
    --texture-space-xl: 3rem;
    
    /* Border radius */
    --blend-radius-sm: 0.25rem;
    --blend-radius-md: 0.5rem;
    --blend-radius-lg: 1rem;
    --blend-radius-xl: 2rem;
    
    /* Shadows with nostalgic feel */
    --flavor-shadow-soft: 0 2px 8px rgba(139, 105, 20, 0.1);
    --flavor-shadow-medium: 0 4px 16px rgba(139, 105, 20, 0.15);
    --flavor-shadow-strong: 0 8px 32px rgba(139, 105, 20, 0.2);
}

/* Base Typography */
body {
    font-family: var(--recipe-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--flavor-sepia-molten);
    background: linear-gradient(135deg, var(--flavor-sepia-cold) 0%, var(--flavor-sepia-warm) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--texture-space-md);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--recipe-font-heading);
    font-weight: 700;
    margin-bottom: var(--texture-space-sm);
    color: var(--flavor-sepia-molten);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: var(--texture-space-sm);
    color: var(--flavor-sepia-blazing);
}

/* Cookie Notice Banner */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--flavor-sepia-molten) 0%, var(--ingredient-bronze) 100%);
    color: var(--flavor-sepia-cold);
    padding: var(--texture-space-lg);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(139, 105, 20, 0.3);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 3px solid var(--ingredient-gold);
}

.cookie-notice.show {
    transform: translateY(0);
    animation: cookieSlideIn 0.6s ease-out;
}

.cookie-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: var(--texture-space-lg);
    position: relative;
}

.cookie-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.cookie-icon i {
    font-size: 2rem;
    color: var(--ingredient-amber);
    animation: cookieBounce 2s infinite;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 var(--texture-space-xs) 0;
    font-size: 1.3rem;
    color: var(--ingredient-amber);
    font-family: var(--recipe-font-heading);
}

.cookie-text p {
    margin: 0 0 var(--texture-space-xs) 0;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-link {
    color: var(--ingredient-amber);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--flavor-sepia-cold);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: var(--texture-space-sm);
    flex-wrap: wrap;
}

.btn-accept, .btn-decline, .btn-customize {
    padding: var(--texture-space-sm) var(--texture-space-md);
    border: none;
    border-radius: var(--blend-radius-lg);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--texture-space-xs);
    font-size: 0.9rem;
    min-width: 100px;
    justify-content: center;
}

.btn-accept {
    background: var(--ingredient-gold);
    color: var(--flavor-sepia-molten);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-accept:hover {
    background: var(--ingredient-amber);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.btn-decline {
    background: transparent;
    color: var(--flavor-sepia-cold);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--flavor-sepia-cold);
    transform: translateY(-2px);
}

.btn-customize {
    background: rgba(255, 255, 255, 0.1);
    color: var(--flavor-sepia-cold);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-customize:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cookie-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ingredient-amber);
    color: var(--flavor-sepia-molten);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.cookie-close:hover {
    transform: scale(1.1);
    background: var(--ingredient-gold);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.cookie-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.cookie-modal-content {
    background: var(--flavor-sepia-cold);
    border-radius: var(--blend-radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: var(--flavor-shadow-strong);
    animation: modalSlideIn 0.4s ease-out;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--texture-space-lg);
    border-bottom: 1px solid var(--flavor-sepia-warm);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--flavor-sepia-molten);
    font-family: var(--recipe-font-heading);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--flavor-sepia-blazing);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--flavor-sepia-molten);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: var(--texture-space-lg);
}

.cookie-category {
    margin-bottom: var(--texture-space-lg);
    padding: var(--texture-space-md);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--blend-radius-md);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: var(--texture-space-sm);
    margin-bottom: var(--texture-space-sm);
}

.cookie-category-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--ingredient-gold);
}

.cookie-category-header label {
    flex: 1;
    color: var(--flavor-sepia-molten);
    cursor: pointer;
}

.required {
    color: var(--flavor-sepia-blazing);
    font-size: 0.8rem;
    font-style: italic;
}

.cookie-category p {
    margin: 0;
    color: var(--flavor-sepia-blazing);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-modal-footer {
    padding: var(--texture-space-lg);
    border-top: 1px solid var(--flavor-sepia-warm);
    text-align: center;
}

.btn-save {
    background: var(--ingredient-gold);
    color: var(--flavor-sepia-molten);
    border: none;
    padding: var(--texture-space-sm) var(--texture-space-xl);
    border-radius: var(--blend-radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--texture-space-xs);
}

.btn-save:hover {
    background: var(--ingredient-amber);
    transform: translateY(-2px);
}

/* Cookie Animations */
@keyframes cookieSlideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cookieBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes cookiePulse {
    0% {
        box-shadow: 0 -4px 20px rgba(139, 105, 20, 0.3);
    }
    50% {
        box-shadow: 0 -4px 30px rgba(212, 175, 55, 0.6);
        transform: translateY(-2px);
    }
    100% {
        box-shadow: 0 -4px 20px rgba(139, 105, 20, 0.3);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Cookie Banner Mobile Styles */
@media screen and (max-width: 768px) {
    .cookie-notice {
        padding: var(--texture-space-md);
    }
    
    .cookie-content {
        grid-template-columns: 1fr;
        gap: var(--texture-space-md);
        text-align: center;
    }
    
    .cookie-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .cookie-icon i {
        font-size: 1.5rem;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .btn-accept, .btn-decline, .btn-customize {
        flex: 1;
        min-width: auto;
        font-size: 0.8rem;
        padding: var(--texture-space-xs) var(--texture-space-sm);
    }
    
    .cookie-close {
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
    }
    
    .cookie-modal-content {
        width: 95%;
        max-height: 80vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: var(--texture-space-md);
    }
    
    .cookie-category {
        padding: var(--texture-space-sm);
    }
}

@media screen and (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-accept, .btn-decline, .btn-customize {
        width: 100%;
        margin-bottom: var(--texture-space-xs);
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-notification {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
    }
}

/* Navigation */
.ingredient-navbar {
    background: rgba(244, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: var(--texture-space-sm) 0;
    box-shadow: var(--flavor-shadow-soft);
    border-bottom: 1px solid var(--flavor-sepia-warm);
}

.ingredient-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--texture-space-sm);
}

.nav-logo {
    width: 40px;
    height: 40px;
    filter: sepia(30%) saturate(150%) hue-rotate(30deg);
}

.brand-text {
    font-family: var(--recipe-font-display);
    font-size: 1.8rem;
    color: var(--flavor-sepia-molten);
    text-shadow: 2px 2px 4px rgba(139, 105, 20, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--texture-space-lg);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--flavor-sepia-blazing);
    font-weight: 600;
    padding: var(--texture-space-xs) var(--texture-space-sm);
    border-radius: var(--blend-radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--flavor-sepia-molten);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ingredient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--texture-space-xs);
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--flavor-sepia-molten);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--flavor-sepia-cold) 0%, var(--flavor-sepia-warm) 50%, var(--flavor-sepia-hot) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--texture-space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: var(--recipe-font-display);
    font-size: 3.5rem;
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-md);
    text-shadow: 3px 3px 6px rgba(139, 105, 20, 0.2);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--flavor-sepia-blazing);
    margin-bottom: var(--texture-space-lg);
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--texture-space-sm);
    margin-bottom: var(--texture-space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--texture-space-sm);
    padding: var(--texture-space-sm);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--blend-radius-md);
    backdrop-filter: blur(5px);
    box-shadow: var(--flavor-shadow-soft);
}

.feature-item i {
    color: var(--ingredient-gold);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--flavor-sepia-molten);
}

.cta-button {
    background: linear-gradient(45deg, var(--ingredient-gold), var(--ingredient-amber));
    color: var(--flavor-sepia-molten);
    border: none;
    padding: var(--texture-space-md) var(--texture-space-xl);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--blend-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--flavor-shadow-medium);
    display: flex;
    align-items: center;
    gap: var(--texture-space-sm);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--flavor-shadow-strong);
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--texture-space-md);
    animation: fadeInRight 1s ease-out;
}

.hero-img-main, .hero-img-secondary {
    width: 100%;
    height: auto;
    border-radius: var(--blend-radius-lg);
    box-shadow: var(--flavor-shadow-medium);
    filter: sepia(20%) saturate(120%) hue-rotate(15deg);
    transition: all 0.3s ease;
}

.hero-img-main:hover, .hero-img-secondary:hover {
    transform: scale(1.05);
    filter: sepia(30%) saturate(150%) hue-rotate(20deg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--texture-space-xl);
}

.section-header h2 {
    font-family: var(--recipe-font-display);
    font-size: 2.8rem;
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-sm);
    text-shadow: 2px 2px 4px rgba(139, 105, 20, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--flavor-sepia-blazing);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: var(--texture-space-xl) 0;
    background: rgba(244, 241, 232, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--texture-space-xl);
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--texture-space-xl);
    border-radius: var(--blend-radius-xl);
    box-shadow: var(--flavor-shadow-medium);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--flavor-shadow-strong);
}

.service-icon {
    position: relative;
    margin-bottom: var(--texture-space-md);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    filter: sepia(40%) saturate(150%) hue-rotate(25deg);
    border-radius: var(--blend-radius-md);
}

.service-icon i {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 2rem;
    color: var(--ingredient-gold);
    background: rgba(255, 255, 255, 0.9);
    padding: var(--texture-space-xs);
    border-radius: 50%;
    box-shadow: var(--flavor-shadow-soft);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-md);
}

.service-card p {
    line-height: 1.7;
    margin-bottom: var(--texture-space-sm);
}

/* Analytics Section */
.analytics-section {
    padding: var(--texture-space-xl) 0;
    background: linear-gradient(45deg, var(--flavor-sepia-warm), var(--flavor-sepia-hot));
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--texture-space-xl);
    align-items: center;
}

.analytics-text h2 {
    font-family: var(--recipe-font-display);
    font-size: 2.5rem;
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-md);
}

.methodology-points {
    display: flex;
    flex-direction: column;
    gap: var(--texture-space-lg);
}

.method-point {
    display: flex;
    gap: var(--texture-space-md);
    align-items: flex-start;
}

.method-point i {
    font-size: 2rem;
    color: var(--ingredient-gold);
    margin-top: var(--texture-space-xs);
    flex-shrink: 0;
}

.method-point h4 {
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-xs);
}

.analytics-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--texture-space-md);
}

.analytics-img-1, .analytics-img-2, .analytics-img-3 {
    width: 100%;
    height: auto;
    border-radius: var(--blend-radius-lg);
    box-shadow: var(--flavor-shadow-medium);
    filter: sepia(25%) saturate(130%) hue-rotate(20deg);
    transition: all 0.3s ease;
}

.analytics-img-1 {
    grid-column: 1 / -1;
}

.analytics-img-1:hover, .analytics-img-2:hover, .analytics-img-3:hover {
    transform: scale(1.03);
    filter: sepia(35%) saturate(160%) hue-rotate(25deg);
}

/* Benefits Section */
.benefits-section {
    padding: var(--texture-space-xl) 0;
    background: rgba(255, 255, 255, 0.3);
}

.benefits-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--texture-space-xl);
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: var(--texture-space-md);
    margin-bottom: var(--texture-space-xl);
    padding: var(--texture-space-lg);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--blend-radius-lg);
    box-shadow: var(--flavor-shadow-soft);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--flavor-shadow-medium);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--ingredient-gold);
    margin-top: var(--texture-space-xs);
    flex-shrink: 0;
}

.benefit-item h3 {
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-sm);
}

.benefits-image {
    text-align: center;
}

.benefit-main-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--blend-radius-xl);
    box-shadow: var(--flavor-shadow-strong);
    filter: sepia(30%) saturate(140%) hue-rotate(20deg);
    transition: all 0.3s ease;
}

.benefit-main-img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: sepia(40%) saturate(170%) hue-rotate(25deg);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--texture-space-xl) 0;
    background: linear-gradient(135deg, var(--flavor-sepia-hot), var(--flavor-sepia-blazing));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--texture-space-xl);
    margin-bottom: var(--texture-space-xl);
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--blend-radius-xl);
    overflow: hidden;
    box-shadow: var(--flavor-shadow-strong);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(139, 105, 20, 0.3);
}

.testimonial-content {
    padding: var(--texture-space-xl);
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 3rem;
    color: var(--ingredient-gold);
    margin-bottom: var(--texture-space-md);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--flavor-sepia-blazing);
    margin-bottom: var(--texture-space-lg);
    font-style: italic;
}

.author-info h4 {
    color: var(--flavor-sepia-molten);
    font-size: 1.2rem;
    margin-bottom: var(--texture-space-xs);
}

.author-info span {
    color: var(--flavor-sepia-blazing);
    font-size: 0.9rem;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    filter: sepia(50%) saturate(200%) hue-rotate(30deg);
    z-index: 1;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--texture-space-lg);
    margin-top: var(--texture-space-xl);
    padding: var(--texture-space-xl);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--blend-radius-xl);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: var(--texture-space-md);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--ingredient-gold);
    margin-bottom: var(--texture-space-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-xs);
    font-family: var(--recipe-font-display);
}

.stat-label {
    color: var(--flavor-sepia-blazing);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: var(--texture-space-xl) 0;
    background: rgba(244, 241, 232, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--texture-space-xl);
    align-items: start;
}

.contact-info h2 {
    font-family: var(--recipe-font-display);
    font-size: 2.5rem;
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-md);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: var(--texture-space-sm);
    margin-top: var(--texture-space-lg);
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: var(--texture-space-sm);
    padding: var(--texture-space-sm);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--blend-radius-md);
}

.contact-feature i {
    color: var(--ingredient-gold);
    font-size: 1.2rem;
}

.contact-feature span {
    font-weight: 600;
    color: var(--flavor-sepia-molten);
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--texture-space-xl);
    border-radius: var(--blend-radius-xl);
    box-shadow: var(--flavor-shadow-strong);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--texture-space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--texture-space-sm);
    border: 2px solid var(--flavor-sepia-warm);
    border-radius: var(--blend-radius-md);
    font-family: var(--recipe-font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ingredient-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-button {
    background: linear-gradient(45deg, var(--ingredient-gold), var(--ingredient-amber));
    color: var(--flavor-sepia-molten);
    border: none;
    padding: var(--texture-space-md) var(--texture-space-lg);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--blend-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--flavor-shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--texture-space-sm);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--flavor-shadow-strong);
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--flavor-sepia-molten), var(--flavor-sepia-blazing));
    color: var(--flavor-sepia-cold);
    padding: var(--texture-space-xl) 0 var(--texture-space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--texture-space-xl);
    margin-bottom: var(--texture-space-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--ingredient-amber);
    margin-bottom: var(--texture-space-md);
    font-family: var(--recipe-font-display);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--texture-space-sm);
}

.footer-logo {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(45deg);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--texture-space-xs);
}

.footer-section a {
    color: var(--flavor-sepia-warm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--ingredient-amber);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--texture-space-sm);
    margin-bottom: var(--texture-space-sm);
}

.contact-item i {
    color: var(--ingredient-amber);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--texture-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--flavor-sepia-warm);
}

/* Keyframe Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .analytics-content,
    .benefits-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--texture-space-lg);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(244, 241, 232, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: var(--texture-space-xl);
        transition: left 0.3s ease;
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: var(--texture-space-sm) 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: var(--texture-space-sm) var(--texture-space-lg);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--texture-space-lg);
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item i {
        margin-top: 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        margin: 0 var(--texture-space-sm);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--texture-space-lg);
    }
    
    .cookie-content {
        flex-direction: column;
        gap: var(--texture-space-sm);
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--texture-space-sm);
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: var(--texture-space-md);
    }
    
    .contact-form-container {
        padding: var(--texture-space-lg);
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: var(--texture-space-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Nostalgic Memory Glitch Animation */
@keyframes memoryGlitch {
    0% { transform: translate(0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(-4px, 0px); }
    30% { transform: translate(4px, 2px); }
    40% { transform: translate(0px, -2px); }
    50% { transform: translate(-2px, 0px); }
    60% { transform: translate(-4px, 2px); }
    70% { transform: translate(2px, 0px); }
    80% { transform: translate(-2px, -2px); }
    90% { transform: translate(2px, 2px); }
    100% { transform: translate(0); }
}

.hero-img-main:hover {
    animation: memoryGlitch 0.3s ease-in-out;
}

.service-icon:hover {
    animation: memoryGlitch 0.2s ease-in-out;
}

/* Sepia overlay effect for nostalgic feel */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 191, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--flavor-sepia-cold) 0%, var(--flavor-sepia-warm) 50%, var(--flavor-sepia-hot) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--texture-space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: var(--recipe-font-display);
    font-size: 3.5rem;
    color: var(--flavor-sepia-molten);
    margin-bottom: var(--texture-space-md);
    text-shadow: 3px 3px 6px rgba(139, 105, 20, 0.2);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--flavor-sepia-blazing);
    margin-bottom: var(--texture-space-lg);
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--texture-space-sm);
    margin-bottom: var(--texture-space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--texture-space-sm);
    padding: var(--texture-space-sm);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--blend-radius-md);
    backdrop-filter: blur(5px);
    box-shadow: var(--flavor-shadow-soft);
}

.feature-item i {
    color: var(--ingredient-gold);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--flavor-sepia-molten);
}

.cta-button {
    background: linear-gradient(45deg, var(--ingredient-gold), var(--ingredient-amber));
    color: var(--flavor-sepia-molten);
    border: none;
    padding: var(--texture-space-md) var(--texture-space-xl);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--blend-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--flavor-shadow-medium);
    display: flex;
    align-items: center;
    gap: var(--texture-space-sm);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--flavor-shadow-strong);
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--texture-space-md);
    animation: fadeInRight 1s ease-out;
}

.hero-img-main, .hero-img-secondary {
    width: 100%;
    height: auto;
    border-radius: var(--blend-radius-lg);
    box-shadow: var(--flavor-shadow-medium);
    filter: sepia(20%) saturate(120%) hue-rotate(15deg);
    transition: all 0.3s ease;
}

.hero-img-main:hover, .hero-img-secondary:hover {
    transform: scale(1.05);
    filter: sepia(30%) saturate(150%) hue-rotate(20deg);
}

/* Keyframe Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 