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

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #d6e258 0%, #c4d647 50%, #d6e258 100%);
    color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .header {
        padding: 0;
        z-index: 1001;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 8rem;
    height: 8rem;
}

/* Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f90200;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #f90200;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    display: block;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('./img/hero-image.jpg');
    background-size: 120%;
    background-position: center top;
    background-attachment: fixed;
    padding: 100px 0 50px;
    animation: backgroundZoom 15s ease-in-out infinite;
    overflow: hidden;
}

@keyframes backgroundZoom {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 130%;
    }
    100% {
        background-size: 100%;
    }
}

.hero-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #222222;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #d6e258, #c4d647);
    color: #000000;
    text-decoration: none;
    border: 2px solid #000000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-btn:hover {
    background: linear-gradient(45deg, #c4d647, #b8cc3a);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #222222;
}

/* Products Section */
.products-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    transition: none;
    position: relative;
    overflow: visible;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 100%;
    box-sizing: border-box;
}

.product-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.caffeine-product {
    background: transparent;
    background-color: transparent;
    color: #000000;
    text-shadow: none;
    min-height: 400px;
    border: none;
    backdrop-filter: none;
    justify-content: flex-end;
    padding-top: 800px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.citrus-product {
    background: transparent;
    background-color: transparent;
    color: #000000;
    text-shadow: none;
    min-height: 400px;
    border: none;
    backdrop-filter: none;
    justify-content: flex-end;
    padding-top: 800px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.lemonade-product {
    background: transparent;
    background-color: transparent;
    color: #000000;
    text-shadow: none;
    min-height: 400px;
    border: none;
    backdrop-filter: none;
    justify-content: flex-end;
    padding-top: 800px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.orange-product {
    background: transparent;
    background-color: transparent;
    color: #000000;
    text-shadow: none;
    min-height: 400px;
    border: none;
    backdrop-filter: none;
    justify-content: flex-end;
    padding-top: 800px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.caffeine-product::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/caffeine.png') center/auto no-repeat;
    animation: caffeineFloat 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.caffeine-product::after {
    display: none;
}

.citrus-product::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/citrus.png') center/60% no-repeat;
    animation: caffeineFloat 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.citrus-product::after {
    display: none;
}

.lemonade-product::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/lemonade.png') center/auto no-repeat;
    animation: caffeineFloat 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lemonade-product::after {
    display: none;
}

.orange-product::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/orange.png') center/contain no-repeat;
    animation: caffeineFloat 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.orange-product::after {
    display: none;
}

@keyframes caffeineFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes caffeineShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes caffeineGlow {
    0% {
        border-color: rgba(249, 2, 0, 0.3);
        box-shadow: 0 0 20px rgba(249, 2, 0, 0.2);
    }
    100% {
        border-color: rgba(249, 2, 0, 0.6);
        box-shadow: 0 0 40px rgba(249, 2, 0, 0.4);
    }
}


@keyframes caffeinePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(249, 2, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(249, 2, 0, 0);
    }
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.flavor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 2, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 2, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.flavor-card:hover::before {
    left: 100%;
}

.flavor-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 2, 0, 0.4);
    box-shadow: 0 20px 40px rgba(249, 2, 0, 0.2);
}

.flavor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f90200, #ff1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(249, 2, 0, 0.3);
}

.flavor-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.flavor-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.flavor-color {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    margin-top: 20px;
}

.flavor-color.caffeine { background: linear-gradient(45deg, #8B4513, #D2691E); }
.flavor-color.citrus { background: linear-gradient(45deg, #FFD700, #FFA500); }
.flavor-color.lemonade { background: linear-gradient(45deg, #FFFF00, #FFD700); }
.flavor-color.orange { background: linear-gradient(45deg, #FF8C00, #FF4500); }

/* About Preview Section */
.about-preview {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #222222;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #f90200;
    text-decoration: none;
    border: 2px solid #f90200;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-secondary:hover {
    background: #f90200;
    color: #ffffff;
    transform: translateY(-2px);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-img:hover {
    transform: none;
}

/* Contact Preview Section */
.contact-preview {
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 2, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(249, 2, 0, 0.05) 100%);
    pointer-events: none;
}

.contact-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    position: relative;
    z-index: 2;
}

.contact-preview p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #222222;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 2, 0, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 2, 0, 0.4);
    box-shadow: 0 8px 30px rgba(249, 2, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item i {
    color: #f90200;
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: #f90200;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, #f90200, #ff1a1a);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(249, 2, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #cc0200, #f90200);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(249, 2, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(0, 0, 0, 0.9) 100%);
    padding: 80px 0 30px;
    border-top: 2px solid rgba(249, 2, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 2, 0, 0.05) 0%, transparent 50%, rgba(249, 2, 0, 0.05) 100%);
    pointer-events: none;
}

.footer-logo-center {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #f90200;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #f90200, #ff1a1a);
    border-radius: 1px;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #f90200;
}

.footer-section ul li a:hover {
    color: #f90200;
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

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

.footer .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(249, 2, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.footer .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f90200, #ff1a1a);
    transition: left 0.3s ease;
    z-index: -1;
}

.footer .social-links a:hover {
    color: #ffffff;
    border-color: #f90200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 2, 0, 0.4);
}

.footer .social-links a:hover::before {
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(249, 2, 0, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
}

/* Page Header (for About and Contact pages) */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.page-header p {
    font-size: 1.3rem;
    color: #f90200;
    font-weight: 300;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #f90200;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 2, 0, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f90200;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Values Section */
.values-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 2, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 2, 0, 0.4);
    box-shadow: 0 20px 40px rgba(249, 2, 0, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #f90200, #ff1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

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

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 2, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 2, 0, 0.4);
    box-shadow: 0 20px 40px rgba(249, 2, 0, 0.2);
}

.team-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(249, 2, 0, 0.1), rgba(249, 2, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: #f90200;
    border: 3px solid rgba(249, 2, 0, 0.3);
}

.team-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.team-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.team-card p:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
        list-style: none;
    }
    
    .nav-menu ul li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .mobile-menu-toggle.active {
        background: rgba(249, 2, 0, 0.2);
        border-color: rgba(249, 2, 0, 0.3);
        transform: scale(1.05);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: #f90200;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        background: #f90200;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero {
        padding: 20px 0 10px;
    }
    
    .hero-content {
        margin-top: -60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .flavors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-img {
        width: 105vw;
        max-width: 105vw;
        height: 250px;
        object-fit: cover;
        margin-left: -30px;
        margin-right: -30px;
        border-radius: 0;
    }
    
    .contact-preview {
        padding: 60px 0;
    }
    
    .contact-preview h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-preview p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .contact-item {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .btn-primary {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-logo-center {
        margin-bottom: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 25px;
    }
    
    .footer-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .footer .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .footer .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-img {
        height: 200px;
        width: 105vw;
        max-width: 105vw;
        object-fit: cover;
        margin-left: -25px;
        margin-right: -25px;
        border-radius: 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .flavor-card,
    .value-card,
    .team-card {
        padding: 30px 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-preview {
        padding: 50px 0;
    }
    
    .contact-preview h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .contact-preview p {
        font-size: 1rem;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .contact-info {
        padding: 0 15px;
        gap: 15px;
    }
    
    .contact-item {
        padding: 12px 20px;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo-center {
        margin-bottom: 20px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .footer-section h3::after {
        width: 20px;
    }
    
    .footer-logo-img {
        width: 90px;
        height: 90px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer .social-links {
        gap: 10px;
    }
    
    .footer .social-links a {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
}

.contact-info-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #222222;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(249, 2, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000000;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #222222;
}

.contact-details p a {
    color: #f90200;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: #cc0200;
}

.contact-details span {
    font-size: 0.9rem;
    color: #444444;
}

.social-contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

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

.social-contact .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(249, 2, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-contact .social-links a:hover {
    background: #f90200;
    border-color: #f90200;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 2, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(249, 2, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f90200;
    box-shadow: 0 0 20px rgba(249, 2, 0, 0.3);
}

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

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 2, 0, 0.02) 0%, rgba(249, 2, 0, 0.05) 100%);
    pointer-events: none;
}

.about-text {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #f90200, #ff1a1a);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: #222222;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.about-image-section {
    margin: 60px 0;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-vision-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-content, .vision-content {
    margin-bottom: 60px;
    text-align: left;
}

.mission-content h3, .vision-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
    position: relative;
}

.mission-content h3::after, .vision-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #f90200, #ff1a1a);
    border-radius: 2px;
}

.mission-content p, .vision-content p {
    font-size: 1.1rem;
    color: #222222;
    line-height: 1.8;
    text-align: left;
}



/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 2, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 2, 0, 0.4);
    box-shadow: 0 10px 30px rgba(249, 2, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f90200;
}

.faq-item p {
    font-size: 1rem;
    color: #222222;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .contact-info-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-methods {
        margin-bottom: 30px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        margin-bottom: 15px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .contact-details span {
        font-size: 0.85rem;
    }
    
    .social-contact {
        text-align: center;
    }
    
    .social-contact h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .social-contact .social-links {
        justify-content: center;
    }
    
    .contact-form-section h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .contact-form .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    /* About Page Tablet Styles */
    .about-content {
        padding: 70px 0;
    }
    
    .about-text {
        margin-bottom: 70px;
        padding: 0 20px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 28px;
    }
    
    .about-text p {
        font-size: 1.05rem;
        margin-bottom: 22px;
    }
    
    /* About Image Tablet Styles */
    .about-image-section {
        margin: 50px 0;
        padding: 0 20px;
    }
    
    .about-image {
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    }
    
    /* Mission & Vision Tablet Styles */
    .mission-vision-section {
        margin-bottom: 70px;
    }
    
    .mission-vision-content {
        max-width: 800px;
        padding: 0 20px;
    }
    
    .mission-content, .vision-content {
        margin-bottom: 50px;
        text-align: left;
    }
    
    .mission-content h3, .vision-content h3 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .mission-content p, .vision-content p {
        font-size: 1.05rem;
        text-align: left;
    }
    
    
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-logo-center {
        margin-bottom: 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .footer-section h3::after {
        width: 28px;
    }
    
    .footer-logo-img {
        width: 90px;
        height: 90px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .footer-section ul li {
        margin-bottom: 12px;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .footer .social-links {
        gap: 14px;
    }
    
    .footer .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 30px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .caffeine-product,
    .citrus-product,
    .lemonade-product,
    .orange-product {
        padding-top: 400px;
        padding-bottom: 20px;
    }
    
    .citrus-product::before {
        background: url('./img/citrus.png') center/80% no-repeat;
    }
    
    .lemonade-product::before {
        top: -60px;
    }
    
    .caffeine-product::before {
        top: -60px;
    }
    
    .citrus-product::before {
        top: -60px;
    }
    
    .orange-product::before {
        top: -60px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .contact-info-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .contact-info-section p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .contact-method {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-details span {
        font-size: 0.8rem;
    }
    
    .social-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .social-contact .social-links {
        gap: 10px;
    }
    
    .social-contact .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .contact-form .btn-primary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    /* About Page Mobile Styles */
    .about-content {
        padding: 60px 0;
    }
    
    .about-text {
        margin-bottom: 60px;
        padding: 0 15px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* About Image Mobile Styles */
    .about-image-section {
        margin: 40px 0;
        padding: 0 15px;
    }
    
    .about-image {
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Mission & Vision Mobile Styles */
    .mission-vision-section {
        margin-bottom: 60px;
    }
    
    .mission-vision-content {
        max-width: 400px;
        padding: 0 15px;
    }
    
    .mission-content, .vision-content {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .mission-content h3, .vision-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .mission-content h3::after, .vision-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-content p, .vision-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo-center {
        margin-bottom: 20px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .footer-section h3::after {
        width: 25px;
    }
    
    .footer-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer .social-links {
        gap: 12px;
    }
    
    .footer .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Ensure text selection works on all text elements */
* {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Override for specific elements that should not be selectable */
.header, .nav-menu, .mobile-menu-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Ensure main content is selectable */
main, section, .container, .hero-content, .product-card, .about-content, .contact-preview {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    pointer-events: auto !important;
}

/* Ensure pseudo-elements don't interfere with text selection */
.caffeine-product::before,
.caffeine-product::after,
.citrus-product::before,
.citrus-product::after,
.lemonade-product::before,
.lemonade-product::after,
.orange-product::before,
.orange-product::after {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Medium Desktop improvements */
@media (min-width: 769px) and (max-width: 1023px) {
    .contact-content {
        padding: 70px 0;
    }
    
    .contact-grid {
        gap: 50px;
    }
    
    .contact-info-section h2 {
        font-size: 2rem;
        margin-bottom: 22px;
    }
    
    .contact-info-section p {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }
    
    .contact-method {
        padding: 25px;
    }
    
    .contact-details h3 {
        font-size: 1.15rem;
        margin-bottom: 9px;
    }
    
    .contact-details p {
        font-size: 1.02rem;
    }
    
    .contact-details span {
        font-size: 0.92rem;
    }
    
    .contact-form-section h2 {
        font-size: 2rem;
        margin-bottom: 28px;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .form-group {
        margin-bottom: 22px;
    }
    
    .form-group label {
        font-size: 1.02rem;
        margin-bottom: 7px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 1.02rem;
    }
    
    .contact-form .btn-primary {
        padding: 16px 35px;
        font-size: 1.05rem;
    }
    
    .faq-section {
        padding: 70px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 45px;
    }
    
    .faq-grid {
        gap: 25px;
    }
    
    .faq-item {
        padding: 28px 25px;
    }
    
    .faq-item h3 {
        font-size: 1.25rem;
        margin-bottom: 13px;
    }
    
    .faq-item p {
        font-size: 1.02rem;
    }
    
    .footer-logo-center {
        margin-bottom: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 45px;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
    }
    
    .footer .social-links {
        justify-content: center;
    }
}

/* Desktop-specific improvements */
@media (min-width: 1024px) {
    /* About Page Large Desktop Styles */
    .about-content {
        padding: 100px 0;
    }
    
    .about-text {
        margin-bottom: 100px;
        padding: 0 30px;
        max-width: 50%;
        margin-left: 0;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        position: relative;
    }
    
    .about-text h2 {
        font-size: 2.8rem;
        margin-bottom: 35px;
        text-align: left;
    }
    
    .about-text h2::after {
        left: 0;
        transform: none;
    }
    
    .about-text p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }
    
    /* About Image Desktop Styles */
    .about-image-section {
        position: absolute;
        top: 20px;
        right: 0;
        width: 45%;
        height: auto;
        margin: 0;
        padding: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .about-image {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: none;
        transition: none;
    }
    
    .about-image:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Mission & Vision Desktop Styles */
    .mission-vision-section {
        margin-bottom: 100px;
    }
    
    .mission-vision-content {
        max-width: 1000px;
        padding: 0 30px;
        margin-left: auto;
        margin-right: 0;
    }
    
    .mission-content, .vision-content {
        margin-bottom: 70px;
        text-align: left;
    }
    
    .mission-content h3, .vision-content h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .mission-content p, .vision-content p {
        font-size: 1.2rem;
        text-align: left;
    }
    
    
    
    .contact-content {
        padding: 90px 0;
    }
}

/* Extra Large Desktop Styles */
@media (min-width: 1440px) {
    .about-text {
        max-width: 900px;
        padding: 0 40px;
        margin-left: auto;
        margin-right: 0;
        align-items: flex-start;
    }
    
    .about-text h2 {
        font-size: 3rem;
        margin-bottom: 40px;
        text-align: left;
    }
    
    .about-text h2::after {
        left: 0;
        transform: none;
    }
    
    .about-text p {
        font-size: 1.3rem;
        margin-bottom: 35px;
        text-align: left;
    }
    
    /* About Image Extra Large Desktop Styles */
    .about-image-section {
        position: absolute;
        top: 25px;
        right: 0;
        width: 45%;
        height: auto;
        margin: 0;
        padding: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .about-image {
        max-width: 100%;
        height: auto;
        border-radius: 25px;
        box-shadow: none;
        transition: none;
    }
    
    .about-image:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Mission & Vision Extra Large Desktop Styles */
    .mission-vision-section {
        margin-bottom: 120px;
    }
    
    .mission-vision-content {
        max-width: 1200px;
        padding: 0 40px;
        margin-left: auto;
        margin-right: 0;
    }
    
    .mission-content, .vision-content {
        margin-bottom: 80px;
        text-align: left;
    }
    
    .mission-content h3, .vision-content h3 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .mission-content p, .vision-content p {
        font-size: 1.3rem;
        text-align: left;
    }
    
    
    .contact-grid {
        gap: 70px;
    }
    
    .contact-info-section h2 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    
    .contact-info-section p {
        font-size: 1.15rem;
        margin-bottom: 45px;
    }
    
    .contact-method {
        padding: 30px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .contact-details h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .contact-details p {
        font-size: 1.05rem;
    }
    
    .contact-details span {
        font-size: 0.95rem;
    }
    
    .social-contact h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .social-contact .social-links {
        gap: 18px;
    }
    
    .social-contact .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-form-section h2 {
        font-size: 2.4rem;
        margin-bottom: 35px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-group {
        margin-bottom: 28px;
    }
    
    .form-group label {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 20px;
        font-size: 1.05rem;
    }
    
    .contact-form .btn-primary {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .faq-section {
        padding: 90px 0;
    }
    
    .faq-section h2 {
        font-size: 2.4rem;
        margin-bottom: 55px;
    }
    
    .faq-grid {
        gap: 35px;
    }
    
    .faq-item {
        padding: 35px 30px;
    }
    
    .faq-item h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .faq-item p {
        font-size: 1.05rem;
    }
    
    .footer {
        padding: 80px 0 30px;
    }
    
    .footer-logo-center {
        margin-bottom: 35px;
    }
    
    .footer-content {
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-section h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .footer-section h3::after {
        width: 30px;
    }
    
    .footer-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .footer-section p {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    
    .footer-section ul li {
        margin-bottom: 12px;
    }
    
    .footer-section ul li a {
        font-size: 1.05rem;
    }
    
    .footer .social-links {
        gap: 15px;
    }
    
    .footer .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding-top: 35px;
    }
    
    .footer-bottom p {
        font-size: 0.95rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        max-width: 1200px;
    }
    
    .product-card {
        min-height: 500px;
        padding: 20px;
        overflow: visible;
    }
    
    .products-section {
        padding: 100px 0;
        overflow: visible;
    }
    
    /* Move images higher to show full can */
    .caffeine-product::before {
        top: -150px;
        height: 120%;
    }
    
    .citrus-product::before {
        top: -150px;
        height: 120%;
    }
    
    .lemonade-product::before {
        top: -150px;
        height: 120%;
    }
    
    .orange-product::before {
        top: -150px;
        height: 120%;
    }
    
    /* Fix text positioning behind images on desktop */
    .product-card h3,
    .product-card p {
        position: relative;
        z-index: 10;
        margin: 10px 0;
    }
    
    .product-card h3 {
        margin-top: 50px;
    }
    
    /* Ensure images don't cover text */
    .caffeine-product::before,
    .citrus-product::before,
    .lemonade-product::before,
    .orange-product::before {
        z-index: 1;
    }
    
    .caffeine-product::after,
    .citrus-product::after,
    .lemonade-product::after,
    .orange-product::after {
        z-index: 2;
    }
}

@media (min-width: 1440px) {
    .contact-content {
        padding: 100px 0;
    }
    
    .contact-grid {
        gap: 80px;
    }
    
    .contact-info-section h2 {
        font-size: 2.6rem;
        margin-bottom: 35px;
    }
    
    .contact-info-section p {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }
    
    .contact-method {
        padding: 35px;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .contact-details h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .contact-details p {
        font-size: 1.1rem;
    }
    
    .contact-details span {
        font-size: 1rem;
    }
    
    .social-contact h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .social-contact .social-links {
        gap: 20px;
    }
    
    .social-contact .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-form-section h2 {
        font-size: 2.6rem;
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 45px 35px;
    }
    
    .form-group {
        margin-bottom: 32px;
    }
    
    .form-group label {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 18px 22px;
        font-size: 1.1rem;
    }
    
    .contact-form .btn-primary {
        padding: 20px 45px;
        font-size: 1.15rem;
    }
    
    .faq-section {
        padding: 100px 0;
    }
    
    .faq-section h2 {
        font-size: 2.6rem;
        margin-bottom: 60px;
    }
    
    .faq-grid {
        gap: 40px;
    }
    
    .faq-item {
        padding: 40px 35px;
    }
    
    .faq-item h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .faq-item p {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 100px 0 40px;
    }
    
    .footer-logo-center {
        margin-bottom: 40px;
    }
    
    .footer-content {
        gap: 60px;
        margin-bottom: 60px;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .footer-section h3::after {
        width: 35px;
    }
    
    .footer-logo-img {
        width: 140px;
        height: 140px;
    }
    
    .footer-section p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .footer-section ul li {
        margin-bottom: 15px;
    }
    
    .footer-section ul li a {
        font-size: 1.1rem;
    }
    
    .footer .social-links {
        gap: 18px;
    }
    
    .footer .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 40px;
    }
    
    .footer-bottom p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        max-width: 1400px;
    }
    
    .product-card {
        min-height: 500px;
        padding: 60px 50px;
    }
    
    /* Enhanced text styling for large desktop */
    .product-card h3,
    .product-card p {
        margin: 15px 0;
    }
    
    /* Enhanced contact section for large desktop */
    .contact-preview {
        padding: 100px 0;
    }
    
    .contact-preview h2 {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .contact-preview p {
        font-size: 1.3rem;
        margin-bottom: 60px;
        max-width: 700px;
    }
    
    .contact-info {
        gap: 80px;
        margin-bottom: 60px;
    }
    
    .contact-item {
        padding: 25px 40px;
        font-size: 1.2rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 20px 50px;
        font-size: 1.2rem;
    }
    
    /* Enhanced footer for large desktop */
    .footer {
        padding: 100px 0 40px;
    }
    
    .footer-logo-center {
        margin-bottom: 40px;
    }
    
    .footer-content {
        gap: 60px;
        margin-bottom: 60px;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .footer-section h3::after {
        width: 35px;
    }
    
    .footer-logo-img {
        width: 140px;
        height: 140px;
    }
    
    .footer-section p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .footer-section ul li {
        margin-bottom: 15px;
    }
    
    .footer-section ul li a {
        font-size: 1.1rem;
    }
    
    .footer .social-links {
        gap: 18px;
    }
    
    .footer .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 40px;
    }
    
    .footer-bottom p {
        font-size: 1rem;
    }
}