/* Lux Dog Food - Clean CSS */

/* CSS Variables - LuxLeashes Color Scheme */
:root {
    --primary-black: #000000;
    --royal-purple: #663399;
    --deep-purple: #4a1a5c;
    --gold-accent: #d4af37;
    --white: #ffffff;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --glass-effect: rgba(255, 255, 255, 0.1);
    --shadow-luxury: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, #000000 0%, #2d1b3d 50%, #1a1a1a 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
}

p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-black);
}

/* Cards */
.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .card {
        background-color: transparent;
    }
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #2d1b3d 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.luxury-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--gold-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand h1 {
    color: var(--gold-accent);
    font-size: 1.8rem;
    margin: 0;
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-accent);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(102,51,153,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: flex-start;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-accent);
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.meal-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.meal-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.meal-card.active {
    opacity: 1;
}

.meal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 20px 20px;
    color: white;
}

.meal-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.meal-info p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - Redesigned for Maximum Impact */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.about-hero-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Stats */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-hero .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
}

.stat-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .stat-item {
        background-color: transparent;
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-accent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-accent);
    font-family: var(--font-primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

/* Luxury Story */
.luxury-story {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .luxury-story {
        background-color: transparent;
    }
}

.luxury-story h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.story-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text {
    color: var(--white);
    font-weight: 500;
}

/* Experience Grid */
.luxury-experience {
    margin: 80px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.experience-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .experience-card {
        background-color: transparent;
    }
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), #f4d03f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--gold-accent);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.experience-card h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.experience-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Chef Showcase */
.chef-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .chef-showcase {
        background-color: transparent;
    }
}

.chef-credentials h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.credential {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-accent);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.chef-quote {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 3px solid var(--gold-accent);
    padding-left: 20px;
}

.chef-visual {
    position: relative;
}

.chef-spotlight {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.chef-spotlight img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.chef-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        margin: 0 5px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .chef-showcase {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Process Section - Updated for 6 steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

@media (min-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.step {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .step {
        background-color: transparent;
    }
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    font-family: var(--font-primary);
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-visual {
    margin-top: 20px;
}

.step-visual i {
    font-size: 2rem;
    color: var(--gold-accent);
    opacity: 0.8;
}

/* Meals Section */
.meal-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.plan-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .plan-card {
        background-color: transparent;
    }
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.plan-card.featured {
    border: 2px solid var(--gold-accent);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.plan-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-content {
    padding: 30px;
}

.plan-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.plan-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.plan-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-accent);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.plan-pricing {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
}

.price {
    color: var(--gold-accent);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.btn-plan {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Ingredients Section */
.ingredients-showcase {
    display: grid;
    gap: 60px;
}

.ingredient-category h3 {
    color: var(--gold-accent);
    text-align: center;
    margin-bottom: 30px;
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.ingredient-card {
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .ingredient-card {
        background-color: transparent;
    }
}

.ingredient-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.ingredient-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.ingredient-card h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.ingredient-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Plan Builder Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .modal-content {
        background-color: transparent;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    color: var(--white);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-steps {
    position: relative;
}

.builder-step {
    display: none;
}

.builder-step.active {
    display: block;
}

.builder-step h3 {
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.protein-grid,
.allergy-grid,
.veggie-allergy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.protein-option,
.allergy-grid label,
.veggie-allergy-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.protein-option:hover,
.allergy-grid label:hover,
.veggie-allergy-grid label:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold-accent);
}

.protein-option input,
.allergy-grid input,
.veggie-allergy-grid input {
    width: auto;
    margin: 0;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.step-navigation button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
}

.btn-prev {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Activity Toggle Button */
.activity-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.activity-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 25px;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-weight: 500;
    min-width: 250px;
    justify-content: center;
}

.activity-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.activity-toggle-btn.active {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    border-color: var(--gold-accent);
    color: var(--primary-black);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.activity-toggle-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

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

.toggle-text {
    font-weight: 600;
}

.toggle-bonus {
    font-size: 0.9rem;
    opacity: 0.8;
}

.activity-toggle-btn.active .toggle-bonus {
    opacity: 0.7;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--gold-accent);
    font-size: 1.5rem;
    width: 30px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.luxury-guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .luxury-guarantee {
        background-color: transparent;
    }
}

.luxury-guarantee i {
    color: var(--gold-accent);
    font-size: 2rem;
}

.luxury-guarantee h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .contact-form {
        background-color: transparent;
    }
}

.contact-form h3 {
    color: var(--gold-accent);
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

/* Luxury Footer - Completely Redesigned */
.luxury-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.footer-main {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 600px;
    text-align: center;
}

.brand-logo h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.brand-tagline {
    color: var(--gold-accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-style: italic;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    color: var(--gold-accent);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link span {
    font-weight: 500;
}

/* Footer Services */
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-highlight {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .service-highlight {
        background-color: transparent;
    }
}

.service-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-accent);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-highlight h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.service-highlight p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--gold-accent);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .luxury-footer {
        padding: 60px 0 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .brand-logo h2 {
        font-size: 2rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-link {
        padding: 10px 15px;
    }
    
    .footer-services {
        gap: 20px;
    }
    
    .service-highlight {
        padding: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-links {
        gap: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 90vh;
        padding-top: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .meals-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .ingredient-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    
    .protein-grid,
    .allergy-grid,
    .veggie-allergy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .ingredient-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
}

/* Vegetables Section */
.vegetables-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0f2e 100%);
}

.vegetables-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vegetable-category {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .vegetable-category {
        background-color: transparent;
    }
}

.vegetable-category:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.vegetable-category h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-family: var(--font-primary);
}

.veggie-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.veggie-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.veggie-tag:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.vegetables-note {
    margin-top: 50px;
    text-align: center;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.vegetables-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}

.vegetables-note strong {
    color: var(--gold-accent);
}

@media (max-width: 768px) {
    .vegetables-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .veggie-grid {
        gap: 8px;
    }
    
    .veggie-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Calculator Wizard - Inspired by feedreal.com */
.calculator-wizard {
    max-width: 600px;
    margin: 0 auto;
}

.wizard-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.step-indicator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Option Grid */
.option-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.option-btn {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 30px 20px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-family: var(--font-secondary);
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Safari fallback */
    background-color: rgba(255, 255, 255, 0.1);
}

@supports (backdrop-filter: blur(15px)) {
    .option-btn {
        background-color: transparent;
    }
}

.option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.option-btn:hover::before {
    left: 100%;
}

.option-btn:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.12));
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.option-btn.selected {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(244, 208, 63, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.8);
    color: var(--primary-black);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.option-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.option-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.8;
}

.option-detail {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.4;
}

.option-btn.selected .option-detail,
.option-btn.selected .option-subtitle {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .option-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .option-btn {
        width: 100%;
        max-width: 300px;
        flex: none;
    }
}

/* Weight Input */
.weight-input-container {
    text-align: center;
    margin-bottom: 40px;
}

.weight-input-group {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 30px;
    min-width: 200px;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .weight-input-group {
        background-color: transparent;
    }
}

.weight-input-group input {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    width: 100px;
    font-family: var(--font-primary);
}

.weight-input-group input:focus {
    outline: none;
}

.weight-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.weight-unit {
    color: var(--gold-accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 10px;
}

.weight-examples {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.weight-example {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.weight-example:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Wizard Navigation */
.wizard-next {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
    border: none;
    padding: 15px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    font-family: var(--font-secondary);
}

.wizard-next:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.wizard-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-nav {
    text-align: center;
    margin-top: 30px;
}

.wizard-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-back:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Results Summary */
.results-summary {
    margin-bottom: 40px;
}

.dog-summary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

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

.summary-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.summary-value {
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Result Actions */
.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.wizard-restart {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 25px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.wizard-restart:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.wizard-cta {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: var(--primary-black);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .weight-examples {
        gap: 8px;
    }
    
    .weight-example {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .wizard-restart,
    .wizard-cta {
        width: 100%;
        max-width: 250px;
    }
}

/* Calculator Container */
.calculator-container {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.calculator-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Result Grid for Wizard */
.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.result-value {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.result-value.highlight {
    color: var(--gold-accent);
    font-size: 1.6rem;
}

/* Feeding Result Banner (like feedreal.com) */
.feeding-result {
    margin-bottom: 40px;
}

.result-banner {
    background: linear-gradient(135deg, #f4d03f, var(--gold-accent));
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.banner-text {
    color: var(--primary-black);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.banner-amount {
    color: var(--primary-black);
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-primary);
}

.result-note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.result-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.result-note strong {
    color: var(--gold-accent);
}

/* Luxury Story Box - Same styling as Chef Showcase */
.luxury-story-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(20px)) {
    .luxury-story-box {
        background-color: transparent;
    }
}

/* Calculator Box - Enhanced luxury styling */
.calculator-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 60px;
    margin: 80px auto;
    max-width: 1000px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    /* Safari fallback */
    background-color: rgba(0, 0, 0, 0.4);
}

@supports (backdrop-filter: blur(20px)) {
    .calculator-box {
        background-color: transparent;
    }
}

.calculator-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.calculator-container {
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h3 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.calculator-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
}

/* Remove old about-hero-centered styles */
.about-hero-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
