/* =====================================================
   ARAVALI PURE
   COLOUR PALETTE BASED ON THE ATTACHED BOTTLE
===================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fixed Container */
.whatsapp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  z-index: 9999;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  width: 48px;
  height: 48px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, background-color 0.25s ease;
  animation: pulse-ring 2s infinite;
  position: relative;
  z-index: 2;
}

/* WhatsApp Icon SVG */
.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

/* Text Label (Navy blue speech bubble) */
.whatsapp-text {
  position: relative;
  background-color: #001f3f; /* Navy Blue */
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  margin-right: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* Triangle pointing right towards the WhatsApp button */
.whatsapp-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #001f3f; /* Matches navy blue background */
}

/* Hover States */
.whatsapp-container:hover .whatsapp-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-container:hover .whatsapp-float {
  background-color: #20ba5a;
  transform: scale(1.08);
}

/* Continuous Pulse Effect */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .whatsapp-container {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float {
    width: 42px;
    height: 42px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .whatsapp-text {
    font-size: 12px;
    padding: 6px 10px;
    margin-right: 10px;
  }
}

:root {

    --navy: #122E69;
    --deep-blue: #173F82;
    --blue: #398FCB;
    --sky-blue: #8BCBEA;
    --ice-blue: #DDF3FC;
    --pale-blue: #F2FAFE;
    --text: #536A82;
    --white: #FFFFFF;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;

}

a {

    text-decoration: none;
    color: inherit;

}

img {

    max-width: 100%;
    display: block;

}


/* =====================================================
   NAVIGATION
===================================================== */

header {

    height: 82px;
    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid #E5F2F9;

}

.logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.logo img {
    display: block;

    width: auto;
    height: 58px;

    max-width: 220px;

    object-fit: contain;
}

.logo span {

    font-size: 9px;
    font-weight: 700;

}

.logo strong {

    font-size: 24px;
    letter-spacing: 1px;

}

nav {

    display: flex;
    gap: 34px;

}

nav a {

    color: var(--text);

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;

}

nav a:hover {

    color: var(--blue);

}

.header-button {

    border: 1px solid var(--blue);

    padding: 10px 20px;

    border-radius: 30px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;

}

.header-button:hover {

    background: var(--blue);
    color: white;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 750px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 80px 10%;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 40%,
            rgba(139,203,234,0.35),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F2FAFE 50%,
            #DDF3FC 100%
        );

}


/* Decorative water circles */

.hero::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    border: 1px solid rgba(57,143,203,0.12);

    right: -180px;
    top: -100px;

}

.hero::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(57,143,203,0.12);

    right: -60px;
    top: 10px;

}

.hero-content {

    position: relative;
    z-index: 2;

}

.eyebrow {

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 20px;

}

h1 {

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -4px;

    color: var(--navy);

    margin-bottom: 28px;

}

h1 i {

    font-family: 'Playfair Display', serif;

    color: var(--blue);

}

.hero-description {

    max-width: 550px;

    color: var(--text);

    font-size: 18px;

    line-height: 1.8;

}

.buttons {

    margin-top: 32px;

}

.button {

    display: inline-block;

    padding: 15px 25px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    margin-right: 10px;

    transition: 0.3s;

}

.button-primary {

    background: var(--navy);

    color: white;

}

.button-primary:hover {

    background: var(--blue);

    transform: translateY(-3px);

}

.button-outline {

    border: 1px solid var(--blue);

    color: var(--navy);

}

.button-outline:hover {

    background: var(--blue);

    color: white;

}


/* HERO PRODUCT */

.hero-product {

    position: relative;

    height: 580px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 2;

}

.product-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(255,255,255,0.95) 0%,
            rgba(139,203,234,0.4) 45%,
            rgba(139,203,234,0.05) 70%,
            transparent 75%
        );

}

.hero-product img {

    position: relative;

    height: 570px;

    width: auto;

    object-fit: contain;

    filter:

        drop-shadow(
            25px 35px 25px
            rgba(18,46,105,0.20)
        );

    animation: floatBottle 5s ease-in-out infinite;

}

@keyframes floatBottle {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

}


/* =====================================================
   BRAND STRIP
===================================================== */

.brand-strip {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 30px 9%;

    color: white;

    background:

        linear-gradient(
            110deg,
            var(--navy),
            var(--deep-blue),
            var(--blue)
        );

}

.brand-stat {

    text-align: center;

    border-right: 1px solid rgba(255,255,255,0.25);

}

.brand-stat:last-child {

    border-right: none;

}

.brand-stat strong {

    display: block;

    font-size: 21px;

}

.brand-stat span {

    font-size: 11px;

    opacity: 0.75;

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--pale-blue);

}

.about-visual {

    min-height: 620px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at center,
            white 0%,
            var(--ice-blue) 25%,
            var(--sky-blue) 60%,
            var(--blue) 100%
        );

}

.about-visual::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.5);

}

.about-visual::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.5);

}

.about-visual img {

    position: relative;

    z-index: 2;

    height: 460px;

    width: auto;

    filter:

        drop-shadow(
            20px 25px 20px
            rgba(18,46,105,0.2)
        );

}

.about-content {

    padding: 90px 13%;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

h2 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    color: var(--navy);

    margin-bottom: 28px;

}

h2 i {

    font-family: 'Playfair Display', serif;

    color: var(--blue);

}

.about-content p {

    max-width: 520px;

    color: var(--text);

    margin-bottom: 18px;

    line-height: 1.8;

}

.text-link {

    color: var(--blue);

    font-weight: 700;

    margin-top: 15px;

}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {

    padding: 120px 9%;

    background: white;

}

.section-heading {

    max-width: 680px;

    margin: 0 auto 65px;

    text-align: center;

}

.section-heading p {

    color: var(--text);

}

.products {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

}

.product-card {

    padding: 20px;

    border-radius: 18px;

    border: 1px solid #DDEFF8;

    background: white;

    transition: 0.35s;

}

.product-card:hover {

    transform: translateY(-8px);

    box-shadow:

        0 20px 45px
        rgba(57,143,203,0.14);

}

.product-card.featured {

    border: 2px solid var(--sky-blue);

}

.product-image {

    height: 270px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:

        linear-gradient(
            145deg,
            #FFFFFF,
            var(--pale-blue)
        );

}

.product-image img {

    height: 240px;

    width: auto;

    object-fit: contain;

    filter:

        drop-shadow(
            10px 15px 12px
            rgba(18,46,105,0.12)
        );

}

.product-card small {

    display: block;

    color: var(--blue);

    letter-spacing: 2px;

    font-weight: 700;

    margin-top: 20px;

}

.product-card h3 {

    font-size: 20px;

    margin: 8px 0;

    color: var(--navy);

}

.product-card p {

    color: var(--text);

    font-size: 14px;

}


/* =====================================================
   WHY ARAVALI
===================================================== */

.why-section {

    padding: 120px 9%;

    background:

        linear-gradient(
            135deg,
            var(--navy),
            var(--deep-blue)
        );

    color: white;

}

.why-section h2 {

    color: white;

}

.why-section h2 i {

    color: var(--sky-blue);

}

.why-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 65px;

}

.why-card {

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 18px;

    background: rgba(255,255,255,0.06);

    transition: 0.3s;

}

.why-card:hover {

    background: rgba(255,255,255,0.12);

    transform: translateY(-5px);

}

.why-number {

    color: var(--sky-blue);

    font-size: 12px;

    font-weight: 700;

}

.why-card h3 {

    font-size: 24px;

    margin: 18px 0 10px;

}

.why-card p {

    color: #D4EBF7;

    font-size: 14px;

}


/* =====================================================
   OCCASIONS
===================================================== */

.occasions {

    padding: 110px 9%;

    background: var(--pale-blue);

}

.occasion-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    margin-top: 55px;

}

.occasion {

    min-height: 230px;

    padding: 28px;

    border-radius: 18px;

    background: white;

    border: 1px solid #DDEFF8;

    transition: 0.3s;

}

.occasion:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(57,143,203,0.12);

}

.occasion-number {

    color: var(--blue);

    font-weight: 700;

    font-size: 12px;

}

.occasion h3 {

    font-size: 23px;

    margin: 25px 0 10px;

}

.occasion p {

    color: var(--text);

    font-size: 14px;

}


/* =====================================================
   BULK ORDER
===================================================== */

.bulk {

    padding: 100px 9%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    background:

        linear-gradient(
            120deg,
            var(--ice-blue),
            white
        );

}

.bulk p {

    max-width: 570px;

    color: var(--text);

}


/* =====================================================
   CONTACT
===================================================== */

.contact {

    padding: 110px 9%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    background: white;

}

.contact p {

    color: var(--text);

    max-width: 520px;

    line-height: 1.8;

}

.contact-details {

    margin-top: 25px;

    color: var(--navy);

    font-weight: 600;

}

form {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

input,
textarea {

    width: 100%;

    padding: 16px;

    border: 1px solid #D5EAF5;

    border-radius: 9px;

    background: var(--pale-blue);

    color: var(--navy);

    font-family: inherit;

    font-size: 14px;

}

input:focus,
textarea:focus {

    outline: none;

    border-color: var(--blue);

    box-shadow: 0 0 0 3px rgba(57,143,203,0.12);

}

form button {

    border: none;

    cursor: pointer;

}


/* =========================
   FOOTER
========================= */

.site-footer {
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--deep-blue)
        );

    color: var(--white);

    margin-top: 70px;
}


/* =========================
   FOOTER CONTAINER
========================= */

.footer-container {

    max-width: 1150px;

    margin: auto;

    padding: 55px 20px;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    gap: 50px;

}


/* =========================
   FOOTER BRAND
========================= */

.footer-logo {
    display: inline-flex;
    align-items: center;

    max-width: 220px;
    height: 80px;

    text-decoration: none;
}

.footer-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    content-visibility: auto;
}


.footer-brand p {

    color: var(--sky-blue);

    font-size: 14px;

    max-width: 280px;

}


/* =========================
   FOOTER HEADINGS
========================= */

.site-footer h3 {

    color: var(--white);

    font-size: 16px;

    margin-bottom: 18px;

}


/* =========================
   FOOTER LINKS
========================= */

.footer-links {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-links a {

    color: var(--sky-blue);

    text-decoration: none;

    font-size: 14px;

    margin-bottom: 9px;

    transition: 0.3s ease;

}


.footer-links a:hover {

    color: var(--white);

    transform: translateX(3px);

}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {

    display: flex;

    gap: 12px;

}


.social-icons a {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background: rgba(139, 203, 234, 0.18);

    border: 1px solid rgba(139, 203, 234, 0.45);

    text-decoration: none;

    font-size: 17px;

    transition: all 0.3s ease;

}


.social-icons a:hover {

    background: var(--sky-blue);

    color: var(--navy);

    transform: translateY(-4px);

    box-shadow:
        0 8px 20px rgba(139, 203, 234, 0.25);

}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {

    border-top: 1px solid rgba(139, 203, 234, 0.25);

    max-width: 1150px;

    margin: auto;

    padding: 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}


.footer-bottom p {

    color: var(--sky-blue);

    font-size: 13px;

    margin: 0;

}


.footer-bottom a {

    color: var(--sky-blue);

    text-decoration: none;

}


.footer-bottom a:hover {

    color: var(--white);

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 950px) {

    nav,
    .header-button {

        display: none;

    }

    .hero {

        grid-template-columns: 1fr;

        text-align: center;

        padding: 70px 7%;

    }

    .hero-description {

        margin: auto;

    }

    .hero-product {

        margin-top: 30px;

    }

    .about,
    .contact {

        grid-template-columns: 1fr;

    }

    .products {

        grid-template-columns: repeat(2, 1fr);

    }

    .occasion-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

    .bulk {

        display: block;

    }

}

@media (max-width: 700px) {

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 20px;

    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }


    .footer-logo img {

        height: 48px;

        max-width: 180px;

    }

}

@media (max-width: 600px) {

    .logo img {
        height: 45px;
        max-width: 170px;
    }

    h1,
    h2 {

        font-size: 48px;

    }

    .brand-strip {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }

    .brand-stat:nth-child(2) {

        border: none;

    }

    .products,
    .occasion-grid {

        grid-template-columns: 1fr;

    }

    .hero-product img {

        height: 460px;

    }

    .about-visual {

        min-height: 500px;

    }

    footer {

        grid-template-columns: 1fr;

    }

}

/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border: none;

    background: transparent;

    cursor: pointer;

    padding: 8px;

    z-index: 1100;

}

.menu-toggle span {

    display: block;

    width: 26px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);

    transition: 0.3s;

}


/* Hidden on desktop */

.mobile-contact {

    display: none;

}


/* ==========================================
   TABLET AND MOBILE NAVIGATION
========================================== */

@media (max-width: 950px) {

    header {

        height: 72px;

        padding: 0 6%;

    }


    .menu-toggle {

        display: block;

    }


    .header-button {

        display: none;

    }


    nav {

        position: fixed;

        top: 72px;

        left: 0;

        width: 100%;

        height: calc(100vh - 72px);

        padding: 35px 8%;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        background: rgba(255,255,255,0.98);

        backdrop-filter: blur(20px);

        transform: translateX(100%);

        transition: transform 0.35s ease;

        box-shadow:

            0 15px 30px rgba(18,46,105,0.12);

        z-index: 1000;

    }


    nav.active {

        transform: translateX(0);

    }


    nav a {

        width: 100%;

        padding: 18px 0;

        border-bottom: 1px solid #E5F2F9;

        font-size: 20px;

        color: var(--navy);

    }


    nav a:hover {

        color: var(--blue);

    }


    .mobile-contact {

        display: block;

        margin-top: 20px;

        padding: 14px 22px !important;

        width: auto !important;

        border: none !important;

        border-radius: 30px;

        background: var(--navy);

        color: white !important;

        font-size: 15px !important;

    }


    /* Hamburger animation */

    .menu-toggle.active span:nth-child(1) {

        transform: translateY(7px) rotate(45deg);

    }


    .menu-toggle.active span:nth-child(2) {

        opacity: 0;

    }


    .menu-toggle.active span:nth-child(3) {

        transform: translateY(-7px) rotate(-45deg);

    }

}

/* =================================
   COOKIE BANNER STYLES
================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 480px;
    background-color: #ffffff;
    color: #1f2937;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 999999; /* Ensures banner stays above header/modals */
    border: 1px solid #e5e7eb;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: #4b5563;
}

.cookie-banner a {
    color: #0077ff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-align: center;
}

.cookie-btn-accept {
    background-color: #0077ff;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: #005bb5;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #4b5563;
    border-color: #d1d5db;
}

.cookie-btn-decline:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 600px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 16px;
    }

    .cookie-buttons {
        flex-direction: column; /* Stacks buttons on mobile */
    }

    .cookie-btn {
        width: 100%;
    }
}