/* ============================================
   Kiwi Dose - Stylesheet
   Color Palette:
   - Primary Green: #064B31
   - Secondary Green: #2D8A4B
   - Gray: #ADADAD
   - White: #FFFFFF
   - Dark: #14010
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #064B31;
    --secondary-green: #2D8A4B;
    --gray: #ADADAD;
    --white: #FFFFFF;
    --dark: #140101;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #90EE90;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: #90EE90;
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-green) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-green) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary-green);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    line-height: 1.1;
}

.hero-title img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-date {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Brand Story Section */
.brand-story {
    background-color: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    text-align: center;
}

.story-intro,
.story-continued {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.story-intro {
    font-weight: 500;
}

/* Brand Values Section */
.brand-values {
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--white);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.value-card > img {
    width: 100%;
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
}

.value-card .value-icon {
    margin-top: 1.5rem;
}

.value-card .value-title,
.value-card .value-description {
    padding: 0 2.5rem;
}

.value-card .value-title {
    padding-top: 1rem;
}

.value-card .value-description:last-child {
    padding-bottom: 2.5rem;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
}

/* Vision Section */
.vision-section {
    background-color: var(--white);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.vision-text {
    text-align: left;
}

.vision-part {
    margin-bottom: 2rem;
}

.vision-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
}

.vision-part p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark);
}

.vision-divider {
    width: 100px;
    height: 2px;
    background-color: var(--secondary-green);
    margin: 2.5rem auto;
}

/* Signup Section */
.signup-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 3rem 0;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.signup-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.signup-form {
    margin-top: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    color: var(--dark);
}

.form-group input::placeholder {
    color: var(--gray);
}

.submit-button {
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.875rem;
    min-height: 20px;
}

.form-message.success {
    color: #90EE90;
}

.form-message.error {
    color: #FFB6C1;
}

/* Footer */
.footer {
    background-color: #140101;
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gray);
}

.footer-tagline strong {
    color: var(--secondary-green);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-menu,
.social-links {
    list-style: none;
}

.footer-menu li,
.social-links li {
    margin-bottom: 0.75rem;
}

.footer-menu a,
.social-link {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover,
.social-link:hover {
    color: var(--secondary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #082e06;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-title img {
        max-width: 400px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-date {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title,
    .vision-title,
    .signup-title {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input,
    .submit-button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title img {
        max-width: 300px;
    }

    .logo img {
        height: 55px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    section {
        padding: 2rem 0;
    }
}

/* Page Content Styles */
.page-content {
    padding-top: 100px;
    min-height: calc(100vh - 200px);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1551024506-0bccd828d307?w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 3rem 0;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.contact-info {
    background: linear-gradient(135deg, rgba(6, 75, 49, 0.05) 0%, rgba(45, 138, 75, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid rgba(6, 75, 49, 0.1);
}

.contact-info h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.contact-info a {
    color: var(--secondary-green);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info input,
.contact-info textarea {
    border-color: var(--gray) !important;
}

.contact-info input:focus,
.contact-info textarea:focus {
    border-color: var(--secondary-green) !important;
    outline: none;
}

.online-ordering-message {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border-radius: 15px;
    margin: 3rem 0;
}

.online-ordering-message h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.online-ordering-message p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Minimal Coming Soon Page Styles */
.coming-soon-page {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--primary-green) 0%, #053a26 50%, var(--primary-green) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 2rem;
}

.coming-soon-page::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 138, 75, 0.3) 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.coming-soon-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(45, 138, 75, 0.4), rgba(6, 75, 49, 0.2));
    filter: blur(40px);
    opacity: 0.6;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 8%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: 5%;
    animation: float 25s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 10%;
    animation: float 18s ease-in-out infinite reverse;
}

.shape-5 {
    width: 350px;
    height: 350px;
    bottom: 15%;
    left: 10%;
    animation: float 22s ease-in-out infinite;
}

.shape-6 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 15%;
    animation: float 16s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.coming-soon-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.coming-soon-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 8px;
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon-message {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-form {
    max-width: 500px;
    margin: 0 auto 4rem;
}

.coming-soon-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.coming-soon-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.coming-soon-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.coming-soon-form input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.coming-soon-form .submit-button {
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.coming-soon-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.coming-soon-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    letter-spacing: 1px;
    z-index: 1;
}

.coming-soon-scroll::after {
    content: '↓';
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .coming-soon-form .form-group {
        flex-direction: column;
    }
    
    .coming-soon-form input,
    .coming-soon-form .submit-button {
        width: 100%;
    }
    
    .shape {
        filter: blur(30px);
    }
}

/* Image Styles */
.drink-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(6, 75, 49, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drink-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(6, 75, 49, 0.3);
}

.drink-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.drink-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 75, 49, 0.2);
}

.drink-card-content {
    padding: 1.5rem;
}

.drink-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.drink-card p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.drink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(6, 75, 49, 0.3);
    margin: 2rem auto;
    display: block;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-image.reverse .image-side {
    order: -1;
}

.image-side img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(6, 75, 49, 0.2);
}

.text-side h2 {
    margin-top: 0;
}

.feature-box {
    background: linear-gradient(135deg, rgba(6, 75, 49, 0.05) 0%, rgba(45, 138, 75, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid rgba(6, 75, 49, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 75, 49, 0.15);
    border-color: var(--secondary-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(6, 75, 49, 0.2);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-card p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    margin: 3rem auto;
    border-radius: 2px;
}

.quote-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 15px 40px rgba(6, 75, 49, 0.3);
}

.quote-box p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--white);
}

.quote-box cite {
    font-size: 1.125rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
    }
    
    .content-with-image.reverse .image-side {
        order: 0;
    }
    
    .drink-grid,
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .value-card,
    .cta-button,
    .submit-button {
        transition: var(--transition);
    }
}

