/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --purple: #9333ea;
    --lime-green: #84cc16;
    --white: #ffffff;
    --grey: #6b7280;
    --light-grey: #9ca3af;
    --dark-purple: #7c3aed;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--darker-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    overflow-x: hidden;
    width: 100%;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--lime-green);
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none !important;
    transition: opacity 0.3s;
    border: none;
    outline: none;
}

.logo:hover {
    opacity: 0.8;
    text-decoration: none !important;
}

.logo:focus {
    outline: none;
    text-decoration: none !important;
}

.logo:visited {
    text-decoration: none !important;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

.logo span {
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--lime-green);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: var(--white);
    display: flex;
    align-items: center;
}

.header-right-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: none;
    display: block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--lime-green);
    color: var(--dark-bg);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.header-info {
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-info .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-left {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: 'Arial', sans-serif;
}

.info-right {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at bottom left, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                #000000;
    padding: 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-right {
    display: none;
}

.hero-title {
    font-size: 96px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.0;
    margin-bottom: 30px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-transform: uppercase;
}

.hero-title-gradient {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 15%,
        rgba(229, 231, 235, 0.9) 35%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(209, 213, 219, 0.85) 70%,
        rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.15)) 
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title-green {
    color: var(--lime-green);
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 0.2px;
    line-height: 1.6;
    text-align: left;
}

.hero-delivery {
    font-size: 20px;
    color: #6a8eff;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
    margin-bottom: 0;
    align-self: flex-end;
    margin-left: auto;
    margin-top: -10px;
}

.hero-delivery:hover {
    color: #5a7eff;
}

.hero-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    max-width: 900px;
}

.hero-text-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.cta-button {
    margin-top: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--dark-bg);
    padding: 20px 45px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #000000;
    border-radius: 0;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: #f9fafb;
}

/* Marquee Announcement Bar */
.marquee-section {
    background-color: #A7DB45;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: scroll 15s linear infinite;
    white-space: nowrap;
    gap: 0;
    width: fit-content;
}

.marquee-text {
    display: inline-block;
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 0 20px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

/* Hydration Section */
.hydration-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.hydration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hydration-left {
    position: relative;
}

.hydration-right {
    position: relative;
}

.why-button {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.why-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--lime-green);
    color: var(--lime-green);
}

.hydration-content {
    max-width: 900px;
}

.section-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.title-white {
    color: var(--white);
    display: inline;
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 2.5px var(--white);
    text-stroke: 2.5px var(--white);
    display: block;
    -webkit-text-fill-color: transparent;
}

.title-purple {
    color: #A7DB45;
    display: inline;
    margin-left: 10px;
}

.section-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 800px;
    font-family: 'Libre Baskerville', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 60px;
}

.feature-column {
    display: flex;
    flex-direction: column;
}

.feature-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    height: 100%;
    min-height: 150px;
}

.feature-icon-lightning {
    font-size: 48px;
    color: #bef264;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(190, 242, 100, 0.5));
    line-height: 1;
}

.feature-icon-leaf {
    font-size: 48px;
    color: #a78bfa;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
    line-height: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: none;
    font-family: 'Arial', sans-serif;
}

.feature-description {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* Bottle Image Container */
.bottle-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #a7d2ff 0%, #e0aaff 100%);
}

.bottle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stat-box-top {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--white);
    padding: 20px 30px;
    border-radius: 5px;
}

.stat-box-bottom {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--white);
    padding: 20px 30px;
    border-radius: 5px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.process-section .section-title {
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: var(--light-grey);
    max-width: 700px;
    margin: 30px auto 40px;
    line-height: 1.8;
}

.process-cta {
    color: var(--lime-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: left;
}

.process-step {
    position: relative;
}

.step-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.step-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: var(--light-grey);
    line-height: 1.7;
}

/* Recent Drops Section */
.recent-drops-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.gallery-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.drops-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.drop-item {
    background-color: #d4a574;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.drop-item:hover {
    transform: translateY(-5px);
}

.drop-item:hover {
    transform: translateY(-5px);
}

.drop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.drop-item:hover img {
    transform: scale(1.05);
}

.drop-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.drop-item:hover .drop-overlay {
    opacity: 1;
}

.overlay-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--lime-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.overlay-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Client Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.review-card {
    background-color: var(--darker-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.review-stars {
    color: #A7DB45;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: 'Libre Baskerville', serif;
}

.review-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.review-author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.review-author-company {
    font-size: 14px;
    color: var(--light-grey);
    font-family: 'Arial', sans-serif;
}

/* Splash Section */
.splash-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(147, 51, 234, 0.3) 100%);
    padding: 100px 0;
    text-align: center;
}

.splash-title {
    font-size: 80px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 30px;
}

.splash-subtitle {
    font-size: 18px;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.splash-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--lime-green);
    color: var(--dark-bg);
    padding: 18px 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 18px 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    border: 2px solid var(--white);
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: opacity 0.3s;
    border: none;
    outline: none;
}

.footer-logo:hover {
    opacity: 0.8;
    text-decoration: none !important;
}

.footer-logo:focus {
    outline: none;
    text-decoration: none !important;
}

.footer-logo:visited {
    text-decoration: none !important;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    display: block;
}

.footer-description {
    color: var(--light-grey);
    line-height: 1.7;
    font-size: 14px;
}

.footer-heading {
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: var(--light-grey);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--lime-green);
}

.footer-address,
.footer-phone {
    color: var(--light-grey);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.7;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;
    user-select: text;
}

.footer-phone a,
.footer-phone a:link,
.footer-phone a:visited,
.footer-phone a:hover,
.footer-phone a:active {
    color: var(--light-grey) !important;
    text-decoration: none !important;
    pointer-events: none !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--grey);
    font-size: 14px;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background-color: #A7DB45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(167, 219, 69, 0.3);
}

.back-to-top-icon {
    width: 20px;
    height: 20px;
    color: var(--white);
    transition: transform 0.3s;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 219, 69, 0.4);
}

.back-to-top:hover .back-to-top-icon {
    transform: translateY(-2px);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--dark-bg);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 24px;
    font-weight: bold;
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--white);
}

.cart-item-price {
    color: var(--lime-green);
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.quantity-btn {
    background-color: var(--purple);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.quantity-btn:hover {
    background-color: var(--dark-purple);
}

.remove-item {
    background: none;
    border: none;
    color: var(--grey);
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.remove-item:hover {
    color: var(--white);
}

.empty-cart {
    text-align: center;
    color: var(--grey);
    padding: 40px 20px;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.checkout-btn {
    width: 100%;
    background-color: var(--lime-green);
    color: var(--dark-bg);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.product-card {
    background-color: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #d4a574;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white);
}

.product-price {
    font-size: 24px;
    color: var(--lime-green);
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    width: 100%;
    background-color: var(--purple);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: var(--dark-purple);
}

/* Checkout Page Styles */
.checkout-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--dark-bg);
    border-radius: 10px;
}

.checkout-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--white);
}

.checkout-section {
    margin-bottom: 30px;
}

.checkout-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

/* Checkout form improvements */
.checkout-page .container {
    padding: 0 15px;
}

@media (min-width: 768px) {
    .checkout-page .container {
        padding: 0 20px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-grey);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white);
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
}

/* Checkbox styling for checkout form */
.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Label containing checkbox should be inline */
.form-group label:not([for]) {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.order-summary {
    background-color: var(--darker-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--light-grey);
}

.summary-item.total {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.place-order-btn {
    width: 100%;
    background-color: var(--lime-green);
    color: var(--dark-bg);
    padding: 18px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    margin-top: 30px;
    transition: transform 0.3s;
}

.place-order-btn:hover {
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        padding: 80px 0;
        min-height: auto;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 56px;
        text-align: center;
        align-items: center;
        margin-bottom: 25px;
        letter-spacing: -1px;
        line-height: 1.0;
    }
    
    .hero-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 30px;
    }
    
    .hero-text-group {
        align-items: center;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-delivery {
        text-align: center;
        align-self: center;
        margin-left: 0;
    }
    
    .hero-divider {
        display: none;
    }
    
    .cta-button {
        align-self: center;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .hero-delivery {
        text-align: center;
        align-self: center;
        margin-left: 0;
        font-size: 17px;
    }
    
    .info-right {
        flex-direction: column;
        gap: 5px;
        text-align: right;
    }
    
    .hydration-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .bottle-image-container {
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
    }
    
    .section-title {
        font-size: 60px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        font-size: 120px;
        top: 10px;
        left: 10px;
    }
    
    .drops-carousel {
        grid-template-columns: 1fr;
    }
    
    .drop-overlay {
        opacity: 1;
        padding: 15px;
    }
    
    .overlay-label {
        font-size: 10px;
    }
    
    .overlay-title {
        font-size: 18px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-card {
        padding: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-title {
        font-size: 50px;
    }
    
    .gallery-title-blue {
        margin-left: 5px;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .project-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-title {
        font-size: 36px;
    }
    
    .project-details-grid {
        grid-template-columns: 1fr;
    }
    
    .project-detail-box.highlight {
        grid-column: span 1;
    }
    
    .project-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .project-cta-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        padding: 12px 0;
    }
    
    .header-info {
        padding: 6px 0;
    }
    
    .header-top .container {
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: hidden;
        min-width: 0;
    }
    
    /* Gallery Grid - Single Column on Tablet/Mobile */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .gallery-hero {
        padding: 80px 0 60px;
    }
    
    .gallery-title {
        font-size: 45px !important;
    }
    
    .gallery-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .products-hero {
        padding: 80px 0 60px;
    }
    
    .products-title {
        font-size: 45px !important;
    }
    
    .products-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* Quote Form - Stack on Tablet/Mobile */
    .quote-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .quote-form-column {
        padding: 30px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .quote-form .form-group.full-width {
        grid-column: span 1 !important;
    }
    
    .quote-info-column {
        position: static !important;
    }
    
    .quote-main-title {
        font-size: 45px !important;
    }
    
    .quote-hero {
        padding: 80px 0 50px;
    }
    
    .quote-hero-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .expect-title {
        font-size: 28px !important;
    }
    
    .expect-step {
        padding: 20px;
    }
    
    .logo {
        font-size: 16px;
        flex-shrink: 0;
        gap: 5px;
        min-width: 0;
        max-width: calc(100% - 100px);
    }
    
    .logo-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        min-width: 18px;
    }
    
    .logo span {
        font-size: 16px;
        white-space: nowrap;
        overflow: visible;
    }
    
    .header-right-mobile {
        flex-shrink: 0;
        gap: 10px;
    }
    
    .footer-logo {
        gap: 6px;
        flex-wrap: nowrap;
    }
    
    .footer-logo .logo-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .footer-logo span {
        white-space: nowrap;
        font-size: 22px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 25px;
    }
    
    .copyright {
        text-align: center;
        font-size: 12px;
    }
    
    .back-to-top {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .back-to-top-icon {
        width: 18px;
        height: 18px;
    }
    
    .nav {
        display: flex;
        align-items: center;
        gap: 0;
        margin-left: auto;
    }
    
    .nav-link {
        display: none;
    }
    
    .header-right-mobile {
        display: flex !important;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .cart-icon {
        display: flex !important;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-left {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 48px;
        text-align: center;
        margin-bottom: 20px;
        letter-spacing: -1px;
        line-height: 1.0;
        width: 100%;
    }
    
    .hero-title-gradient,
    .hero-title-green {
        display: block;
        width: 100%;
    }
    
    .hero-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 25px;
        width: 100%;
    }
    
    .hero-text-group {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 18px;
        text-align: center;
        margin-bottom: 8px;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .hero-delivery {
        font-size: 15px;
        text-align: center;
        align-self: center;
        margin-left: 0;
        padding: 0 10px;
        margin-bottom: 0;
    }
    
    .hero-divider {
        display: none;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        align-self: center;
    }
    
    .info-left,
    .info-right {
        font-size: 11px;
    }
    
    .header-info .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .info-right {
        flex-direction: row;
        gap: 15px;
    }
    
    .marquee-section {
        padding: 30px 0;
    }
    
    .marquee-text {
        font-size: 18px;
        letter-spacing: 2px;
        padding: 0 20px;
    }
    
    .marquee-content {
        animation: scroll 15s linear infinite;
    }
    
    .hydration-layout {
        gap: 40px;
    }
    
    .bottle-image-container {
        height: 400px;
    }
    
    .stat-box-top {
        top: 15px;
        left: 15px;
        padding: 12px 18px;
    }
    
    .stat-box-bottom {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .section-title {
        font-size: 45px;
    }
    
    .products-hero {
        padding: 80px 0 60px;
    }
    
    .products-title {
        font-size: 45px !important;
    }
    
    .products-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
    }
    
    .why-button {
        padding: 10px 25px;
        font-size: 12px;
        margin-bottom: 30px;
    }
    
    .feature-icon-lightning,
    .feature-icon-leaf {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .review-author-name {
        font-size: 16px;
    }
    
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-info-column {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form .form-group.full-width {
        grid-column: span 1;
    }
    
    .quote-main-title {
        font-size: 40px;
    }
    
    .quote-form-column {
        padding: 25px;
    }
    
    .expect-title {
        font-size: 26px;
    }
    
    .quote-hero {
        padding: 60px 0 40px;
    }
    
    .quote-form-section {
        padding: 50px 0;
    }
    
    .step-number {
        font-size: 100px;
        top: 10px;
        left: 10px;
    }
    
    .splash-title {
        font-size: 50px;
    }
    
    .splash-buttons {
        flex-direction: column;
    }
    
    .checkout-container > div {
        grid-template-columns: 1fr !important;
    }
    
    .checkout-container {
        padding: 20px;
        margin: 0;
    }
    
    .checkout-page {
        padding: 40px 0 !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .header-top .container {
        padding: 0 10px;
        overflow-x: hidden;
    }
    
    .nav {
        display: flex !important;
        align-items: center;
        gap: 0;
        margin-left: auto;
    }
    
    .nav-link {
        display: none !important;
    }
    
    .header-right-mobile {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .cart-icon {
        display: flex !important;
    }
    
    /* Gallery Grid - Single Column on Mobile */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .gallery-card-image {
        height: 250px;
    }
    
    .gallery-card-content {
        padding: 20px;
    }
    
    .gallery-card-title {
        font-size: 18px;
    }
    
    .gallery-card-description {
        font-size: 13px;
    }
    
    /* Quote Form - Stack on Mobile */
    .quote-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .quote-form-column {
        padding: 20px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .quote-form .form-group.full-width {
        grid-column: span 1 !important;
    }
    
    .quote-info-column {
        position: static !important;
    }
    
    .quote-main-title {
        font-size: 32px !important;
    }
    
    .quote-hero-description {
        font-size: 16px;
    }
    
    .expect-title {
        font-size: 24px !important;
    }
    
    .expect-step {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .expect-number {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .logo {
        font-size: 14px;
        gap: 4px;
        max-width: calc(100% - 90px);
    }
    
    .logo-icon {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }
    
    .logo span {
        font-size: 14px;
    }
    
    .header-right-mobile {
        gap: 8px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
        margin-bottom: 18px;
        line-height: 1.0;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 5px;
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .hero-delivery {
        font-size: 14px;
        padding: 0 5px;
        margin-bottom: 18px;
        text-align: center;
        align-self: center;
        margin-left: 0;
    }
    
    .hero-bottom-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-divider {
        display: none;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 13px;
        max-width: 100%;
    }
    
    .footer-bottom {
        padding-top: 20px;
        gap: 15px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    .back-to-top {
        width: 34px;
        height: 34px;
    }
    
    .back-to-top-icon {
        width: 16px;
        height: 16px;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 375px) {
    .header-top .container {
        padding: 0 8px;
        overflow-x: hidden;
    }
    
    .nav {
        display: flex !important;
        align-items: center;
        gap: 0;
        margin-left: auto;
    }
    
    .nav-link {
        display: none !important;
    }
    
    .header-right-mobile {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .cart-icon {
        display: flex !important;
    }
    
    .logo {
        font-size: 13px;
        gap: 3px;
        max-width: calc(100% - 85px);
    }
    
    .logo-icon {
        width: 14px;
        height: 14px;
        min-width: 14px;
    }
    
    .logo span {
        font-size: 13px;
    }
    
    .header-right-mobile {
        gap: 6px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
        margin-bottom: 15px;
        line-height: 1.0;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-delivery {
        font-size: 13px;
        margin-bottom: 15px;
        text-align: center;
        align-self: center;
        margin-left: 0;
    }
    
    .hero-bottom-row {
        gap: 12px;
    }
    
    .hero-divider {
        display: none;
    }
    
    /* Gallery Grid - Single Column on Very Small Mobile */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .gallery-card-image {
        height: 220px;
    }
    
    .gallery-card-content {
        padding: 15px;
    }
    
    .gallery-card-title {
        font-size: 16px;
    }
    
    .gallery-card-description {
        font-size: 12px;
    }
    
    .gallery-title {
        font-size: 35px !important;
    }
    
    .gallery-description {
        font-size: 14px;
    }
    
    .products-title {
        font-size: 35px !important;
    }
    
    .products-description {
        font-size: 14px;
    }
    
    /* Quote Form - Stack on Very Small Mobile */
    .quote-layout {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .quote-form-column {
        padding: 15px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .quote-main-title {
        font-size: 28px !important;
    }
    
    .quote-hero-description {
        font-size: 14px;
    }
    
    .expect-title {
        font-size: 22px !important;
    }
    
    .expect-step {
        padding: 15px;
    }
    
    .expect-number {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        gap: 12px;
    }
    
    .copyright {
        font-size: 10px;
    }
    
    .back-to-top {
        width: 32px;
        height: 32px;
    }
    
    .back-to-top-icon {
        width: 15px;
        height: 15px;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at bottom left, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-label {
    display: inline-block;
    background-color: var(--darker-bg);
    color: var(--white);
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid var(--lime-green);
    position: relative;
    z-index: 1;
    font-family: 'Arial', sans-serif;
}

.gallery-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.gallery-title-white {
    color: var(--white);
}

.gallery-title-blue {
    color: #A7DB45;
    margin-left: 10px;
}

.gallery-description {
    font-size: 18px;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.gallery-grid-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    overflow-x: hidden;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 100%;
}

.gallery-card {
    background-color: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #a7d2ff 0%, #e0aaff 100%);
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.1);
}

.gallery-card-content {
    padding: 25px;
}

.gallery-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.gallery-card-description {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.6;
    margin: 0;
}

.gallery-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(147, 51, 234, 0.3) 100%);
    text-align: center;
}

.cta-title {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 25px;
}

.cta-title-white {
    color: var(--white);
}

.cta-title-blue {
    color: #A7DB45;
    margin-left: 10px;
}

.cta-description {
    font-size: 18px;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-button-yellow {
    display: inline-block;
    background-color: var(--lime-green);
    color: var(--dark-bg);
    padding: 18px 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.cta-button-yellow:hover {
    transform: translateY(-2px);
}

/* Project Detail Page Styles */
.back-link-container {
    padding: 20px 0;
    background-color: var(--darker-bg);
}

.back-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--lime-green);
}

.project-detail-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.project-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.project-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #a7d2ff 0%, #e0aaff 100%);
}

.project-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.project-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
}

.project-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.project-underline {
    width: 100px;
    height: 4px;
    background-color: var(--lime-green);
    margin-bottom: 40px;
}

.project-section {
    margin-bottom: 40px;
}

.project-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #A7DB45;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-description {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin: 0;
}

.project-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.project-detail-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-detail-box.highlight {
    background-color: rgba(132, 204, 22, 0.2);
    border-color: var(--lime-green);
    grid-column: span 2;
}

.detail-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.detail-label {
    font-size: 12px;
    font-weight: 700;
    color: #A7DB45;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.request-project-btn {
    display: inline-block;
    background-color: var(--lime-green);
    color: var(--dark-bg);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    text-align: center;
    width: 100%;
}

.request-project-btn:hover {
    transform: translateY(-2px);
}

.project-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3) 0%, var(--darker-bg) 100%);
    text-align: center;
}

.project-cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
}

.project-cta-description {
    font-size: 18px;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.project-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.project-cta-btn {
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.project-cta-btn.primary {
    background-color: var(--white);
    color: var(--purple);
}

.project-cta-btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.project-cta-btn:hover {
    transform: translateY(-2px);
}

/* Quote Page Styles */
.quote-hero {
    padding: 100px 0 60px;
    background: radial-gradient(ellipse at bottom left, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quote-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.custom-solutions-btn {
    background-color: transparent;
    border: 1px solid var(--lime-green);
    color: var(--white);
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-solutions-btn:hover {
    background-color: rgba(132, 204, 22, 0.1);
}

.quote-main-title {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.quote-title-white {
    color: var(--white);
}

.quote-title-gradient {
    color: #A7DB45;
    margin-left: 10px;
}

.quote-hero-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-main-title {
    position: relative;
    z-index: 1;
}

.custom-solutions-btn {
    position: relative;
    z-index: 1;
}

/* Products Hero Section */
.products-hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at bottom left, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.products-label {
    display: inline-block;
    background-color: var(--darker-bg);
    color: var(--white);
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid var(--lime-green);
    position: relative;
    z-index: 1;
    font-family: 'Arial', sans-serif;
}

.products-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.products-title-white {
    color: var(--white);
}

.products-title-green {
    color: #A7DB45;
    margin-left: 10px;
}

.products-description {
    font-size: 18px;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Products Grid Section */
.products-grid-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    overflow-x: hidden;
    width: 100%;
}

.quote-form-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    overflow-x: hidden;
    width: 100%;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.quote-form-column {
    background-color: var(--dark-bg);
    padding: 40px;
    border-radius: 10px;
}

.quote-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form .form-group {
    margin-bottom: 0;
}

.quote-form .form-group.full-width {
    grid-column: span 2;
}

.quote-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 14px;
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--lime-green);
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-submit-btn {
    width: 100%;
    background-color: var(--lime-green);
    color: var(--dark-bg);
    padding: 18px 40px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.4);
}

.quote-info-column {
    position: sticky;
    top: 120px;
}

.expect-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.expect-underline {
    width: 80px;
    height: 3px;
    background-color: var(--lime-green);
    margin-bottom: 40px;
}

.expect-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.expect-step {
    display: flex;
    gap: 20px;
    background-color: var(--dark-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expect-number {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}

.expect-number.green {
    background-color: var(--lime-green);
}

.expect-number.blue {
    background-color: #3b82f6;
}

.expect-number.purple {
    background-color: var(--purple);
}

.expect-step-content {
    flex: 1;
}

.expect-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.expect-step-text {
    font-size: 15px;
    color: var(--light-grey);
    line-height: 1.6;
    margin: 0;
}

.help-section {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.help-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-text {
    font-size: 15px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 12px;
}

.help-text:last-child {
    margin-bottom: 0;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--dark-bg);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 2001;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.open {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header .logo {
    font-size: 22px;
    gap: 8px;
}

.sidebar-header .logo-icon {
    width: 28px;
    height: 28px;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.close-sidebar:hover {
    color: var(--lime-green);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.sidebar-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 20px 30px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--lime-green);
    background-color: rgba(132, 204, 22, 0.1);
    border-left-color: var(--lime-green);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

/* Overlay for cart */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.show {
    display: block;
    opacity: 1;
}
