/* ===================== GLOBAL ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #222;
}
.bubble:nth-child(1) {
    left: 10%;
    width: 30px;
    height: 30px;
    animation-duration: 10s;
}

.bubble:nth-child(2) {
    left: 25%;
    width: 45px;
    height: 45px;
    animation-duration: 14s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    left: 45%;
    width: 20px;
    height: 20px;
    animation-duration: 8s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    left: 65%;
    width: 50px;
    height: 50px;
    animation-duration: 16s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    left: 80%;
    width: 35px;
    height: 35px;
    animation-duration: 11s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    left: 90%;
    width: 25px;
    height: 25px;
    animation-duration: 9s;
}

/* ===================== NAVBAR ===================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #ffffff;          
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.logo img {
    height: 75px;
    width: auto;
    display: block;
}

/* Desktop Nav */
.nav-links {
    display: flex;
}

.nav-links a {
    color: #000;
    margin-left: 22px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.75;
}

/* Hamburger */
.menu-toggle {
    font-size: 28px;
    color: #000;
    cursor: pointer;
    display: none;
}

.nav-links a[href="#inquiry"] {
  color: #e10600;
  font-weight: 600;
}

/* ===================== MOBILE MENU ===================== */

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(180deg, #1c1c5a, #2f2f7f);
    z-index: 9999;
    transition: left 0.35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: 8px 0 30px rgba(0,0,0,0.4);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    background: linear-gradient(135deg, #e10600, #9b0000);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.menu-x {
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 25px 20px;
}

.mobile-menu-links a {
    display: block;
    padding: 14px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.mobile-menu-links a:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

/* ===================== MOBILE VISIBILITY ===================== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* ===================== BACKDROP ===================== */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}



/* ===================== HEADER ===================== */
.mobile-menu-header {
    background: linear-gradient(135deg, #e10600, #9b0000);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

/* Title */
.mobile-menu-header span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Simple X */
.menu-x {
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.menu-x:hover {
    opacity: 0.85;
}

/* ===================== LINKS ===================== */
.mobile-menu-links {
    list-style: none;
    padding: 25px 20px;
}

.mobile-menu-links li {
    margin-bottom: 8px;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: background 0.25s ease, transform 0.2s ease;
}

/* Hover / tap effect */
.mobile-menu-links a:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

/* ===================== ACTIVE LINK ===================== */
.mobile-menu-links a.active {
    background: rgba(255,255,255,0.18);
    font-weight: 600;
}

/* ===================== SAFE SCROLL OFFSET ===================== */
#inquiry {
    scroll-margin-top: 90px;
}

/* ===================== BACKDROP ===================== */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(180deg, #1c1c5a, #2f2f7f);
    z-index: 9999;
    transition: left 0.35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: 8px 0 30px rgba(0,0,0,0.4);
}

/* Active */
.mobile-menu.active {
    left: 0;
}

/* ===================== HEADER ===================== */
.mobile-menu-header {
    background: linear-gradient(135deg, #e10600, #9b0000);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

/* Title */
.mobile-menu-header span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Close button */
.mobile-menu-close {
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.9;
}

.mobile-menu-close:hover {
    opacity: 1;
}

/* ===================== LINKS ===================== */
.mobile-menu-links {
    list-style: none;
    padding: 25px 20px;
}

.mobile-menu-links li {
    margin-bottom: 8px;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: background 0.25s ease, transform 0.2s ease;
}

/* Hover / tap effect */
.mobile-menu-links a:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

/* ===================== ACTIVE LINK ===================== */
.mobile-menu-links a.active {
    background: rgba(255,255,255,0.18);
    font-weight: 600;
}

/* ===================== SAFE SCROLL OFFSET ===================== */
#inquiry {
    scroll-margin-top: 90px;
}


/* ===================== HERO ===================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 40px;
    padding-bottom: 180px; /* space for wave */
    background: linear-gradient(135deg, #e10600, #b80000);
    color: #fff;
    position: relative;   /* required for waves & bubbles */
    overflow: hidden;     /* keeps waves clean */
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 140px;
    }
}


.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
}

.hero-text p {
    margin: 16px 0 22px;
    font-size: 1.05rem;
}

.hero-text button {
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.hero-text button:hover {
    background: #222;
}

.hero-image img {
    width: 300px;
}

/* ===================== HERO BUBBLES ===================== */
.bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
}

/* Different sizes & positions */
.bubble:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-duration: 8s; }
.bubble:nth-child(2) { left: 25%; width: 35px; height: 35px; animation-duration: 12s; }
.bubble:nth-child(3) { left: 40%; width: 15px; height: 15px; animation-duration: 7s; }
.bubble:nth-child(4) { left: 55%; width: 30px; height: 30px; animation-duration: 10s; }
.bubble:nth-child(5) { left: 70%; width: 25px; height: 25px; animation-duration: 9s; }
.bubble:nth-child(6) { left: 85%; width: 18px; height: 18px; animation-duration: 11s; }

@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120vh);
        opacity: 0;
    }
}

/* Make sure hero content stays above bubbles */
.hero {
    position: relative;
}

.hero-text,
.hero-image {
    position: relative;
    z-index: 2;
}
/* ===================== HERO WAVE ===================== */
.hero {
    position: relative;
    overflow: hidden;
}

/* ===================== HERO DOUBLE WAVES ===================== */
.hero {
    position: relative;
    overflow: hidden;
}

/* Container */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

/* Both waves */
.hero-waves svg {
    position: absolute;
    width: 100%;
    height: 180px;
    display: block;
}

/* Back wave */
.wave-back {
    bottom: 28px;
}

/* Front wave */
.wave-front {
    bottom: 0;
}

/* Keep content above waves */
.hero-text,
.hero-image,
.bubbles {
    position: relative;
    z-index: 4;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .hero-waves svg {
        height: 140px;
    }
}


/* ===================== SECTIONS ===================== */
.section {
    padding: 70px 40px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.section p {
    max-width: 720px;
    margin: 0 auto 14px;
    color: #555;
    line-height: 1.6;
}

.gray {
    background: #f6f6f6;
}


/* ===================== TRUST SECTION ===================== */
.trust-section {
    padding: 80px 6%;
    background: #f7f9fc;
    text-align: center;
}

.trust-section h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.trust-subtitle {
    color: #555;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* FRAME */
.trust-item {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 220px; /* 🔒 fixed frame height */
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* IMAGE FRAME */
.trust-item img {
    width: 100%;
    max-width: 110px;
    max-height: 110px;
    object-fit: contain; /* 🔑 IMPORTANT */
    margin-bottom: 14px;
}

/* Label */
.trust-item span {
    font-weight: 600;
    color: #222;
    font-size: 0.95rem;
    text-align: center;
}

/* Mobile */
@media (max-width: 600px) {
    .trust-item {
        height: 200px;
    }

    .trust-item img {
        max-width: 90px;
        max-height: 90px;
    }
}

/* ===================== BUTTON ===================== */
.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 30px;
    background: #e10600;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #b80000;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid #ffffff;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000 !important;
    text-decoration: none;
}

/* ===================== ABOUT ===================== */
.about-section {
    max-width: 900px;
    margin: auto;
}

/* ===================== FLAVORS ===================== */
.flavors-section {
    background: #f7f7f7;
}

.section-title {
    font-size: 2.3rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 2.5rem;
}

.flavors-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 10px 5px 30px;
}

.flavors-slider::-webkit-scrollbar {
    display: none;
}

.flavor-card {
    min-width: 260px;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.flavor-card:hover {
    transform: translateY(-6px);
}

.flavor-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.flavor-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1);
}

.flavor-card:hover .flavor-icon img {
    transform: scale(1.2);
}

/* Flavor gradients */
.jeera { background: linear-gradient(135deg, #8B4513, #D2691E); }
.nimbu { background: linear-gradient(135deg, #FFD700, #FFA500); }
.shikanji { background: linear-gradient(135deg, #98FB98, #FFD700); }
.orange { background: linear-gradient(135deg, #FF8C00, #FFA500); }
.cranberry { background: linear-gradient(135deg, #DC143C, #8B0000); }
.kalakhatta { background: linear-gradient(135deg, #4B0082, #8B008B); }
.aam { background: linear-gradient(135deg, #9ACD32, #32CD32); }
.blueberry { background: linear-gradient(135deg, #4169E1, #1E90FF); }
.cola { background: linear-gradient(135deg, #2F1810, #4A2C1F); }
.litchi { background: linear-gradient(135deg, #FFB6C1, #FF69B4); }

/* ===================== WHY US ===================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ===================== FOOTER ===================== */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {

    .navbar {
        padding: 16px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image img {
        margin-top: 30px;
        width: 260px;
    }

    .flavor-card {
        min-width: 220px;
    }
}

/* ===================== FLOATING CONTACT ===================== */
.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.25s ease;
}

.contact-btn:hover {
    transform: scale(1.12);
}

.contact-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

/* Button colors */
.call-btn {
    background: #000;
}

.whatsapp-btn {
    background: #25D366;
}

.instagram-btn {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.facebook-btn {
    background: #1877F2;
}
/* ===================== DISCOVER HERO (FORCE APPLY) ===================== */
.discover-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 70vh;

    padding: 90px 40px;
    padding-bottom: 180px; /* space for double wave */

    background: linear-gradient(135deg, #e10600, #0033cc);
    color: #ffffff;

    position: relative;
    overflow: hidden;
}


/* ===================== CONTACT WATER ===================== */
.contact-water {
    position: relative;
    background: radial-gradient(circle at center, #2da9ff, #032b5c);
    padding: 100px 8%;
    overflow: hidden;
}

/* Layout */
.contact-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* FORM */
.contact-form {
    width: 45%;
    color: #fff;
}

.contact-form h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-form p {
    margin-bottom: 25px;
    color: #cfefff;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-radius: 30px;
    padding: 14px 18px;
    font-size: 1rem;
    outline: none;
}

.contact-form textarea {
    border-radius: 18px;
    resize: none;
    height: 90px;
}

.contact-form button {
    margin-top: 10px;
    align-self: flex-start;
    background: #e10600;
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.contact-form button:hover {
    background: #b80000;
}

/* IMAGE */
.contact-image img {
    width: 320px;
    animation: floatBottle 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
}

/* FLOAT */
@keyframes floatBottle {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ===================== CONTACT WITH IMAGES ===================== */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 6%;
    background: #fff;
    position: relative;
}

/* Center text */
.contact-content {
    text-align: center;
    max-width: 500px;
}

.contact-content h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.contact-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 10px;
}

/* Side images */
.contact-image img {
    width: 220px;
    opacity: 0.95;
}

/* Slight floating effect */
.contact-image img {
    animation: floatBottle 4s ease-in-out infinite;
}

@keyframes floatBottle {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        gap: 40px;
    }

    .contact-image img {
        width: 180px;
    }
}

/* ===================== BUBBLES ===================== */
.bubbles span {
    position: absolute;
    bottom: -80px;
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: rise 8s infinite ease-in;
}

.bubbles span:nth-child(1){ left:10%; animation-duration:6s;}
.bubbles span:nth-child(2){ left:25%; width:20px; height:20px; animation-duration:9s;}
.bubbles span:nth-child(3){ left:40%; animation-duration:7s;}
.bubbles span:nth-child(4){ left:60%; width:18px; height:18px; animation-duration:10s;}
.bubbles span:nth-child(5){ left:80%; animation-duration:8s;}

@keyframes rise {
    0% { transform: translateY(0); opacity:0; }
    20% { opacity:0.6; }
    100% { transform: translateY(-120vh); opacity:0; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        width: 100%;
    }

    .contact-image img {
        margin-top: 40px;
        width: 240px;
    }

    .contact-form button {
        align-self: center;
    }
}










