/* ================================================
   Gozone Water - Main Stylesheet
   Purity That Flows Beyond
   ================================================ */

/* CSS Variables */
:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #00cc99;
    --accent: #6633cc;
    --white: #ffffff;
    --light-blue: #e6f7ff;
    --dark-blue: #003366;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --gradient-start: #00d4ff;
    --gradient-mid: #0099cc;
    --gradient-end: #006699;
    --shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
}

/* ================================================
   Loading Screen
   ================================================ */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003366 0%, #006699 50%, #00d4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.water-ripple-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ripple-expand 2s ease-out infinite;
}

.ripple-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ripple-2 {
    width: 140px;
    height: 140px;
    animation-delay: 0.4s;
}

.ripple-3 {
    width: 180px;
    height: 180px;
    animation-delay: 0.8s;
}

@keyframes ripple-expand {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.logo-droplet {
    width: 80px;
    height: 80px;
    animation: droplet-float 2s ease-in-out infinite;
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

@keyframes droplet-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.loading-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 2px;
    animation: text-pulse 1.5s ease-in-out infinite;
}

@keyframes text-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ================================================
   Navigation
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: linear-gradient(135deg, #0066cc, var(--primary));
    box-shadow: 0 5px 30px rgba(0, 153, 204, 0.4);
}

.navbar.scrolled .logo {
    color: var(--white);
}

.navbar.scrolled .nav-link {
    color: var(--white);
}

.navbar.scrolled .nav-link:hover {
    color: var(--secondary);
}

.navbar.scrolled .bar {
    background: var(--white);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark-blue);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003366 0%, #006699 40%, #0099cc 70%, #00d4ff 100%);
}

.water-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300d4ff' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: wave-move 15s linear infinite;
}

.wave-1 {
    opacity: 0.3;
    animation-delay: 0s;
    bottom: 10%;
}

.wave-2 {
    opacity: 0.2;
    animation-delay: -5s;
    bottom: 8%;
    animation-duration: 20s;
}

.wave-3 {
    opacity: 0.1;
    animation-delay: -10s;
    bottom: 6%;
    animation-duration: 25s;
}

@keyframes wave-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Water Particles */
.water-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(0, 212, 255, 0.4));
    border-radius: 50%;
    animation: particle-rise linear infinite;
    opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; width: 8px; height: 8px; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; width: 12px; height: 12px; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; width: 6px; height: 6px; animation-duration: 10s; animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; width: 10px; height: 10px; animation-duration: 16s; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; width: 7px; height: 7px; animation-duration: 11s; animation-delay: 0.5s; }
.particle:nth-child(6) { left: 60%; width: 14px; height: 14px; animation-duration: 15s; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; width: 9px; height: 9px; animation-duration: 13s; animation-delay: 1.5s; }
.particle:nth-child(8) { left: 80%; width: 11px; height: 11px; animation-duration: 17s; animation-delay: 4s; }
.particle:nth-child(9) { left: 90%; width: 5px; height: 5px; animation-duration: 9s; animation-delay: 0.8s; }
.particle:nth-child(10) { left: 15%; width: 13px; height: 13px; animation-duration: 18s; animation-delay: 2.2s; }
.particle:nth-child(11) { left: 25%; width: 7px; height: 7px; animation-duration: 11s; animation-delay: 3.5s; }
.particle:nth-child(12) { left: 45%; width: 10px; height: 10px; animation-duration: 14s; animation-delay: 1.8s; }
.particle:nth-child(13) { left: 65%; width: 8px; height: 8px; animation-duration: 12s; animation-delay: 0.3s; }
.particle:nth-child(14) { left: 85%; width: 12px; height: 12px; animation-duration: 16s; animation-delay: 2.8s; }
.particle:nth-child(15) { left: 5%; width: 6px; height: 6px; animation-duration: 10s; animation-delay: 4.2s; }

@keyframes particle-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 51, 102, 0.3) 0%, 
        rgba(0, 102, 153, 0.2) 50%, 
        rgba(0, 212, 255, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    letter-spacing: 3px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-button svg {
    transition: var(--transition);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 13px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ================================================
   Animations - Fade In & Scroll
   ================================================ */
.fade-in {
    opacity: 0;
    animation: fade-in 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fade-in 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fade-in 1s ease 0.6s forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   Section Styles
   ================================================ */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   About Section
   ================================================ */
.about-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-blue) 100%);
}

.infographic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.infographic-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.infographic-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25);
}

.infographic-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.infographic-icon svg {
    width: 100%;
    height: 100%;
}

.infographic-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.infographic-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.infographic-arrow {
    flex-shrink: 0;
    animation: arrow-pulse 1.5s infinite;
}

.infographic-arrow svg {
    width: 40px;
    height: 40px;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(10px);
        opacity: 0.5;
    }
}

/* ================================================
   Franchise Section
   ================================================ */
.franchise-section {
    background: var(--white);
}

.franchise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.franchise-card {
    position: relative;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s ease;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.card-front {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.card-back {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #004080 100%);
    color: var(--white);
    transform: rotateY(180deg);
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.3);
}

.franchise-card:hover .card-front {
    transform: rotateY(-180deg);
}

.franchise-card:hover .card-back {
    transform: rotateY(0);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.card-front p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.flip-hint {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-back ul {
    text-align: left;
    margin-bottom: 25px;
}

.card-back ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.card-back ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.card-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.card-cta:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* ================================================
   Products Section
   ================================================ */
.products-section {
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25);
}

.product-card:hover::before {
    transform: scaleX(1);
}


.product-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.product-icon {
    width: 100%;
    height: 100%;
    display: block;
}


.product-image svg {
    width: 100%;
    height: 100%;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.product-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-hover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-hover {
    opacity: 1;
    transform: translateY(0);
}

.price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.product-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.product-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* ================================================
   Contact Section
   ================================================ */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.location-card {
    background: linear-gradient(135deg, var(--dark-blue), #004080);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.location-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.address svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

.contact-item svg {
    color: var(--primary);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444;
}

.error-message {
    display: block;
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.submit-btn svg {
    transition: var(--transition);
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #002244 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h4,
.footer-newsletter h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.powered-by {
    margin-top: 10px;
    font-size: 0.85rem;
}

.powered-by a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.powered-by a:hover {
    text-decoration: underline;
    color: var(--secondary);
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
.nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active li a {
        color: var(--text-dark) !important;
        font-weight: 500;
        font-size: 1.1rem;
        padding: 15px 0;
        display: block;
    }
    
.nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .infographic-container {
        flex-direction: column;
    }
    
    .infographic-arrow {
        transform: rotate(90deg);
    }
    
    .franchise-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .section-title { font-size: 2rem; line-height: 1.2; }
  .hero-title { font-size: 2.5rem; }
  .partner-logo { width: 140px; height: 80px; }
  @keyframes carousel-scroll { animation-duration: 30s; }
  .cta-button, .product-btn, .submit-btn { min-height: 48px; padding: 16px 24px; font-size: 1rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 16px 20px; font-size: 1rem; }
  .nav-container { padding: 12px 16px; }
  .logo-img { width: 60px; height: 60px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .container { padding: 0 16px; }
  .product-image { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .infographic-item {
        min-width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

/* ================================================
   Utility Classes
   ================================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ================================================
   Page Hero Section
   ================================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

/* ================================================
   About Content Section
   ================================================ */
.about-content-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text .section-title {
    margin-bottom: 30px;
}

.text-left {
    text-align: left;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Process Timeline */
.process-section {
    margin-bottom: 80px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ================================================
   CTA Section
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #004080 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ================================================
   Franchise Intro Section
   ================================================ */
.franchise-intro-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ================================================
   Services Section
   ================================================ */
.services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-blue) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ================================================
   FAQ Section
   ================================================ */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    padding: 30px;
    background: var(--light-blue);
    border-radius: 15px;
    transition: var(--transition);
}

.faq-item:hover {
    background: #d4f0f7;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Infrastructure section responsive */
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    
    .infrastructure-image {
        order: -1;
    }
}

/* ================================================
   Partners Section
   ================================================ */
.partners-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-blue) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: carousel-scroll 20s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ================================================
   Product Image Styles
   ================================================ */
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

/* ================================================
   Lightbox Gallery
   ================================================ */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.85), rgba(0, 204, 153, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-overlay::after {
    content: '✨ Click to enlarge';
    color: white;
    font-size: 0.85rem;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.featured-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 320px;
    max-height: 400px;
    margin-bottom: 35px;
    box-shadow: 
        0 25px 70px rgba(0, 212, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    background: linear-gradient(145deg, var(--light-blue), rgba(0, 212, 255, 0.15));
    transition: var(--transition);
}

.contact-info .featured-image {
    height: 380px;
}

@media (max-width: 768px) {
    .featured-image {
        height: 240px;
        max-height: 300px;
        margin-bottom: 25px;
    }
    
    .contact-info .featured-image {
        height: 320px;
    }
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .featured-image {
        max-height: 400px;
        margin-bottom: 20px;
    }
    
    .featured-image:hover img {
        transform: scale(1.02);
    }
}

.featured-image:hover .featured-img {
    transform: scale(1.08) rotate(0.5deg);
}

.whatsapp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    border-radius: 24px;
    position: relative;
    border: 6px solid var(--primary);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.1), rgba(0, 204, 153, 0.1));
}

.whatsapp-img::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-dark), #006699);
    z-index: -1;
    opacity: 0.15;
}

.whatsapp-img::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    z-index: -1;
    opacity: 0.15;
}

.whatsapp-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 212, 255, 0.6),
        0 0 0 1px rgba(255, 255, 255, 1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.full-image-end-section {
    position: relative;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
    overflow: hidden;
}

.full-image-end-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.full-team-img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    border-radius: 0;
    box-shadow: 
        0 50px 120px rgba(0, 212, 255, 0.5),
        0 0 0 2px rgba(255, 255, 255, 1),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1.02);
    transition: var(--transition);
}

.full-team-img:hover {
    transform: scale(1.03);
    box-shadow: 
        0 60px 140px rgba(0, 212, 255, 0.6),
        0 0 0 2px rgba(255, 255, 255, 1),
        inset 0 2px 0 rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .full-image-end-section {
        padding: 60px 0;
    }
    
    .full-image-end-container {
        padding: 0 10px;
    }
    
    .full-team-img {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .whatsapp-img {
        border-width: 2px;
    }
    
    .whatsapp-img:hover {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    }
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.product-card:hover .product-overlay::after {
    opacity: 1;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.purity-badge {
    background: var(--white);
    color: var(--dark-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .purity-badge {
    transform: translateY(0);
    opacity: 1;
}

/* ================================================
   Parallax Hero Styles
   ================================================ */
.parallax-hero {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-hero .hero-background {
    z-index: 1;
}

.parallax-hero .hero-overlay {
    background: linear-gradient(180deg, 
        rgba(0, 51, 102, 0.7) 0%, 
        rgba(0, 102, 153, 0.5) 50%, 
        rgba(0, 212, 255, 0.3) 100%);
}

/* ================================================
   Purification Diagram Styles
   ================================================ */
.purification-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--light-blue);
}

.purification-diagram {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.purification-img:hover .purification-diagram {
    transform: scale(1.05);
}

.purification-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 51, 102, 0.9));
    text-align: center;
}

.purification-caption span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ================================================
   Infrastructure Section
   ================================================ */
.infrastructure-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.infrastructure-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tank-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.infrastructure-image:hover .tank-img {
    transform: scale(1.05);
}

.infrastructure-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.infrastructure-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.infrastructure-content > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.infrastructure-list {
    margin-bottom: 25px;
}

.infrastructure-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.infrastructure-list li:last-child {
    border-bottom: none;
}

.infrastructure-list svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.infrastructure-list span {
    color: var(--text-dark);
    font-weight: 500;
}

.infrastructure-note {
    background: linear-gradient(135deg, var(--light-blue), rgba(0, 204, 153, 0.1));
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    color: var(--dark-blue);
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .infrastructure-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    
    .infrastructure-content h3 {
        font-size: 1.5rem;
    }
}

/* ================================================
   Store Location Section
   ================================================ */
.store-location-section {\n    padding: 80px 0;\n    background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);\n}\n\n/* Featured Image for Contact */\n.contact-info .featured-image {\n    position: relative;\n    height: 250px;\n    border-radius: 20px;\n    overflow: hidden;\n    margin-bottom: 25px;\n    box-shadow: var(--shadow);\n}\n\n.contact-info .featured-image img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    transition: var(--transition);\n}\n\n.contact-info .featured-image:hover img {\n    transform: scale(1.05);\n}\n\n@media (max-width: 768px) {\n    .contact-info .featured-image {\n        height: 200px;\n    }\n}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.store-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.store-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.store-image:hover .store-img {
    transform: scale(1.05);
}

.store-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary), #009973);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 204, 153, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.store-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.location-highlight {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.store-info > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.store-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.detail-item div {
    display: flex;
    flex-direction: column;
}

.detail-item strong {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 3px;
}

.detail-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .location-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .store-info h3 {
        font-size: 1.5rem;
    }
    
    .store-image {
        order: -1;
    }
}